-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlgui2AnimationType.json
More file actions
63 lines (63 loc) · 1.87 KB
/
lgui2AnimationType.json
File metadata and controls
63 lines (63 loc) · 1.87 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
61
62
63
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://www.lavishsoft.com/schema/lgui2AnimationType.json",
"description": "A LavishGUI2 Animation Type",
"definitions": {
"lgui2":{
"code":{
"$ref":"http://www.lavishsoft.com/schema/lgui2LS1Code.json"
}
}
},
"type": "object",
"properties": {
"name": {
"type": "string"
},
"schema": {
"description": "Define any parameters for an Animation of this Type. GUI can be provided based on the schema.",
"$ref": "http://json-schema.org/draft-07/schema#"
}
},
"oneOf": [
{
"properties": {
"code": {
"allOf": [
{
"$ref":"#/definitions/lgui2/code"
}
]
}
},
"required": [
"code"
]
},
{
"properties": {
"object": {
"type": "string",
"description": "LavishScript Object with a Method to handle this Animation"
},
"method": {
"type": "string",
"description": "LavishScript Method to perform on the object, for this Animation",
"examples": [
"Animation_MyAnimation",
"Animation_Fade",
"Animation_Blink"
]
},
"methodArgs": {
"type": "array",
"description": "Any arguments to be passed directly to the Method"
}
},
"required": [
"object",
"method"
]
}
]
}