Added vibration_damper

This commit is contained in:
DaanV2
2022-06-07 20:19:06 +02:00
parent f6ee7bd25f
commit bead9a5e99
2 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{
"$id": "blockception.minecraft.behavior.entities.minecraft.movement_sound_distance_offset",
"type": "object",
"title": "Movement Sound Distance Offset",
"description": "Sets the offset used to determine the next step distance for playing a movement sound.",
"required": ["value"],
"properties": {
"value": {
"type": "integer",
"default": 1.0,
"description": "The higher the number, the less often the movement sound will be played.",
"title": "Value"
}
},
"additionalProperties": false,
"examples": [{ "value": 1.0 }, { "value": 0.5 }, { "value": 1.5 }]
}

View File

@@ -0,0 +1,9 @@
{
"$id": "blockception.minecraft.behavior.entities.minecraft.vibration_damper",
"type": "object",
"title": "Vibration Damper",
"additionalProperties": false,
"required": [],
"properties": {},
"description": "Vibrations emitted by this entity will be ignored."
}