Skip to content

Commit

Permalink
Allow 1.8.0 as a format version for bp/rp animations and render contr…
Browse files Browse the repository at this point in the history
…ollers (#299)

* - change rp animation format_version

* - change bp animation format_version

* Update render controller format_version
  • Loading branch information
Xterionix authored Jul 14, 2024
1 parent 0969e5e commit 4067bae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/behavior/animations/animations.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down
2 changes: 1 addition & 1 deletion source/resource/animations/actor_animation.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down
2 changes: 1 addition & 1 deletion source/resource/render_controllers/render_controllers.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down

0 comments on commit 4067bae

Please sign in to comment.