From 9f82422759086e7a1471168bef4ad60fe272570c Mon Sep 17 00:00:00 2001 From: Xterionix <72647213+Xterionix@users.noreply.github.com> Date: Wed, 27 Mar 2024 12:34:57 +0500 Subject: [PATCH] - Anim time update for bpa (#252) --- source/behavior/animations/animations.json | 5 +++++ source/resource/animations/actor_animation.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/source/behavior/animations/animations.json b/source/behavior/animations/animations.json index 9d13d358..1f71336d 100644 --- a/source/behavior/animations/animations.json +++ b/source/behavior/animations/animations.json @@ -84,6 +84,11 @@ { "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" } } } diff --git a/source/resource/animations/actor_animation.json b/source/resource/animations/actor_animation.json index 5a6c14b7..8131dcb6 100644 --- a/source/resource/animations/actor_animation.json +++ b/source/resource/animations/actor_animation.json @@ -96,7 +96,7 @@ "description": "The animation specification.", "properties": { "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.", "$ref": "../../molang/number.json" },