From 17e1628e8c3d26360aad9bb78ccc82a3afbfc211 Mon Sep 17 00:00:00 2001 From: ChibiMango <32205345+ChibiMango@users.noreply.github.com> Date: Wed, 13 Jul 2022 22:10:30 +0100 Subject: [PATCH] Update movement.glide.json Added property --- .../entities/format/components/movement.glide.json | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/source/behavior/entities/format/components/movement.glide.json b/source/behavior/entities/format/components/movement.glide.json index 36ba96a2..77f9e1dd 100644 --- a/source/behavior/entities/format/components/movement.glide.json +++ b/source/behavior/entities/format/components/movement.glide.json @@ -2,11 +2,16 @@ "$id": "blockception.minecraft.behavior.entities.minecraft.movement.glide", "type": "object", "title": "Movement.glide", - "description": "UNDOCUMENTED", - "$comment": "UNDOCUMENTED", + "description": "This is the move control for a flying mob that has a gliding movement.", "additionalProperties": false, "required": [], "properties": { + "max_turn": { + "type": "number", + "default": 30, + "description": "The maximum number in degrees the mob can turn per tick.", + "title": "Maximum Turn" + }, "start_speed": { "type": "number", "title": "Start Speed", @@ -22,8 +27,8 @@ }, "examples": [ { - "start_speed": 0.0, - "speed_when_turning": 0.0 + "start_speed": 1.0, + "speed_when_turning": 2.0 } ] }