This commit is contained in:
DaanV2
2021-05-26 01:23:51 +02:00
parent 7ea35ef9dd
commit a98fbfbaa8
1023 changed files with 95 additions and 1050 deletions

View File

@@ -1,5 +1,4 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.animation_controller.1.10.0",
"type": "object",
"definitions": {
@@ -52,6 +51,7 @@
},
"commands": {
"type": "string",
"title": "Commands",
"description": "The event or commands to execute",
"examples": ["@s example:event"],
"oneOf": [

View File

@@ -1,5 +1,4 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.animation_controller.1.8.0",
"definitions": {
"animationspec": {
@@ -52,6 +51,7 @@
"commands": {
"type": "string",
"description": "The event or commands to execute",
"title": "Commands",
"oneOf": [
{ "pattern": "^@s .+$", "title": "Event" },
{ "pattern": "^/.+$", "title": "Command" },
@@ -111,6 +111,7 @@
"on_entry": {
"type": "array",
"description": "Events, commands or transitions to preform",
"title": "On entry",
"items": {
"$ref": "#/definitions/commands"
}
@@ -118,6 +119,7 @@
"on_exit": {
"type": "array",
"description": "Events, commands or transitions to preform",
"title": "On exit",
"items": {
"$ref": "#/definitions/commands"
}

View File

@@ -1,5 +1,4 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.animation_controller",
"examples": [
{
@@ -13,7 +12,10 @@
}
],
"allOf": [
{ "if": { "properties": { "format_version": { "type": "string", "const": "1.8.0" } } }, "then": { "$ref": "./1.8.0/animation_controller.json" } },
{
"if": { "properties": { "format_version": { "type": "string", "const": "1.8.0" } } },
"then": { "$ref": "./1.8.0/animation_controller.json" }
},
{
"if": { "properties": { "format_version": { "type": "string", "const": "1.10.0" } } },
"then": { "$ref": "./1.10.0/animation_controller.json" }