-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExampleJsonWithDescriptor.json
More file actions
60 lines (60 loc) · 2.02 KB
/
Copy pathExampleJsonWithDescriptor.json
File metadata and controls
60 lines (60 loc) · 2.02 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
52
53
54
55
56
57
58
59
60
{
"functionName": "RollDice",
"variables": [
{ "pinCategory": "Int" }
],
"nodes": [
{
"nodeId": "11111111-1111-1111-1111-111111111111",
"nodeClassPath": "/Script/BlueprintGraph.K2Node_CallFunction",
"nodePosition": [ -400, -50 ],
"metadata": { "functionName": "GetActorForwardVector" },
"pinHints": {
"ReturnValue": { "pinCategory": "Vector" },
"Target": { "pinCategory": "Object", "pinSubCategoryObjectPath": "/Script/Engine.Actor" }
}
},
{
"nodeId": "22222222-2222-2222-2222-222222222222",
"nodeClassPath": "/Script/BlueprintGraph.K2Node_CallFunction",
"nodePosition": [ -50, -50 ],
"metadata": { "functionName": "VectorLength" },
"pinHints": {
"A": { "pinCategory": "Vector" },
"ReturnValue": { "pinCategory": "Float" }
}
},
{
"nodeId": "33333333-3333-3333-3333-333333333333",
"nodeClassPath": "/Script/BlueprintGraph.K2Node_CallFunction",
"nodePosition": [ -400, 150 ],
"metadata": { "functionName": "RandomFloat" },
"pinHints": {
"ReturnValue": { "pinCategory": "Float" }
}
},
{
"nodeId": "44444444-4444-4444-4444-444444444444",
"nodeClassPath": "/Script/BlueprintGraph.K2Node_CallFunction",
"nodePosition": [ 300, 50 ],
"metadata": { "functionName": "RollDice" },
"pinHints": {
"Seed": { "pinCategory": "Float" }
}
}
],
"connections": [
{
"from": { "nodeId": "11111111-1111-1111-1111-111111111111", "pinName": "ReturnValue" },
"to": { "nodeId": "22222222-2222-2222-2222-222222222222", "pinName": "A" }
},
{
"from": { "nodeId": "33333333-3333-3333-3333-333333333333", "pinName": "ReturnValue" },
"to": { "nodeId": "44444444-4444-4444-4444-444444444444", "pinName": "Seed" }
},
{
"from": { "nodeId": "22222222-2222-2222-2222-222222222222", "pinName": "ReturnValue" },
"to": { "nodeId": "44444444-4444-4444-4444-444444444444", "pinName": "Seed" }
}
]
}