-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlgui2Animation.json
More file actions
32 lines (32 loc) · 1.18 KB
/
lgui2Animation.json
File metadata and controls
32 lines (32 loc) · 1.18 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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://www.lavishsoft.com/schema/lgui2Animation.json",
"description": "A LavishGUI2 Animation",
"type": "object",
"definitions": {
"numberOrInteger": {
"type":["integer","number"]
}
},
"properties": {
"type": {
"type": "string",
"examples": ["chain","fade","slide","value"]
},
"name": {
"type": "string",
"description": "name of the Animation. Must be unique within its parent, or the previous Animation with the same name will be replaced"
},
"duration": {
"allOf":[{"$ref":"#/definitions/numberOrInteger"}],
"description":"A number specifying the duration, if any, for the Animation. If specified as an integer (whole number), the duration is interpreted as milliseconds. If specified as a floating point, the duration is interpreted as seconds."
},
"instant":{
"type":"boolean",
"description":"whether a 0-duration Animation is instant. If not, it may run indefinitely."
}
},
"required": [
"type"
]
}