From 4067bae98a4d750947fed82a02bdd2b203fa5626 Mon Sep 17 00:00:00 2001 From: Xterionix <72647213+Xterionix@users.noreply.github.com> Date: Sun, 14 Jul 2024 17:01:24 +0500 Subject: [PATCH] Allow 1.8.0 as a format version for bp/rp animations and render controllers (#299) * - change rp animation format_version * - change bp animation format_version * Update render controller format_version --- source/behavior/animations/animations.json | 2 +- source/resource/animations/actor_animation.json | 2 +- source/resource/render_controllers/render_controllers.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/behavior/animations/animations.json b/source/behavior/animations/animations.json index 9b47c9e9..c3ced046 100644 --- a/source/behavior/animations/animations.json +++ b/source/behavior/animations/animations.json @@ -65,7 +65,7 @@ "required": ["format_version", "animations"], "additionalProperties": false, "properties": { - "format_version": { "type": "string", "const": "1.10.0" }, + "format_version": { "type": "string", "enum": ["1.8.0", "1.10.0"] }, "animations": { "title": "Animations Schema", "description": "The animation specification.", diff --git a/source/resource/animations/actor_animation.json b/source/resource/animations/actor_animation.json index e2d28ccd..c5b727c8 100644 --- a/source/resource/animations/actor_animation.json +++ b/source/resource/animations/actor_animation.json @@ -94,7 +94,7 @@ }, "required": ["format_version", "animations"], "properties": { - "format_version": { "type": "string", "const": "1.10.0" }, + "format_version": { "type": "string", "enum": ["1.8.0", "1.10.0"] }, "animations": { "title": "Animations Schema", "description": "The animation specification.", diff --git a/source/resource/render_controllers/render_controllers.json b/source/resource/render_controllers/render_controllers.json index a61758c5..9e8c6822 100644 --- a/source/resource/render_controllers/render_controllers.json +++ b/source/resource/render_controllers/render_controllers.json @@ -37,7 +37,7 @@ } }, "properties": { - "format_version": { "type": "string", "const": "1.10.0" }, + "format_version": { "type": "string", "enum": ["1.8.0", "1.10.0"] }, "render_controllers": { "title": "Render Controllers", "description": "The collection of render controllers, each property is the identifier of a render controller.",