- Anim time update for bpa (#252)

This commit is contained in:
Xterionix
2024-03-27 12:34:57 +05:00
committed by GitHub
parent 2a3b1ea0ae
commit 9f82422759
2 changed files with 6 additions and 1 deletions

View File

@@ -84,6 +84,11 @@
{ "type": "array", "title": "Collection Timelime Items", "items": { "$ref": "#/definitions/commands" } } { "type": "array", "title": "Collection Timelime Items", "items": { "$ref": "#/definitions/commands" } }
] ]
} }
},
"anim_time_update": {
"title": "Animation Time Update",
"description": "How does time pass when playing the animation. Defaults to `query.anim_time + query.delta_time` which means advance in seconds.",
"$ref": "../../molang/number.json"
} }
} }
} }

View File

@@ -96,7 +96,7 @@
"description": "The animation specification.", "description": "The animation specification.",
"properties": { "properties": {
"anim_time_update": { "anim_time_update": {
"title": "Start Delay", "title": "Animation Time Update",
"description": "How does time pass when playing the animation. Defaults to `query.anim_time + query.delta_time` which means advance in seconds.", "description": "How does time pass when playing the animation. Defaults to `query.anim_time + query.delta_time` which means advance in seconds.",
"$ref": "../../molang/number.json" "$ref": "../../molang/number.json"
}, },