-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathaces.json
More file actions
51 lines (51 loc) · 1.32 KB
/
aces.json
File metadata and controls
51 lines (51 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"id": "nodevertexlength",
"scriptName": "NodeVertexLength",
"name": "Node vertex length",
"params": [
{
"id": "nodename",
"name": "Node name",
"type": "string",
"desc": "The name of the node to get vertex length from."
}
],
"returnType": "number",
"isAsync": false,
"category": "nodes",
"description": "Get the number of vertices in a node."
},
{
"id": "nodeworldposition",
"scriptName": "NodeWorldPosition",
"name": "Node world position",
"params": [
{
"id": "nodename",
"name": "Node name",
"type": "string",
"desc": "The name of the node (or bone) to get the world position for."
}
],
"returnType": "string",
"isAsync": false,
"category": "nodes",
"description": "Get the world position {\\"x\\": x, \\"y\\": y, \\"z\\": z} of a specific node (or bone), accounting for object position, rotation, scale, and animation."
},
{
"id": "animationblendtime",
"scriptName": "AnimationBlendTime",
"name": "Animation blend time",
"params": [
{
"id": "animationname",
"name": "Animation name",
"type": "string",
"desc": "The name of the animation to get blend time from."
}
],
"returnType": "number",
"isAsync": false,
"category": "animation",
"description": "Get the blend time of a specific animation."
}