Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/heartbeat.json

22 lines
659 B
JSON
Raw Normal View History

2022-06-07 20:10:44 +02:00
{
"$id": "blockception.minecraft.behavior.entities.minecraft.heartbeat",
"description": "defines the entity's heartbeat..",
2022-06-07 20:10:44 +02:00
"type": "object",
2022-07-26 15:02:09 +01:00
"title": "Heartbeat",
2022-06-07 20:10:44 +02:00
"additionalProperties": false,
"required": [],
2022-06-08 21:18:47 +02:00
"properties": {
"interval": {
"title": "Interval",
"description": "A Molang expression defining the inter-beat interval in seconds. A value of zero or less means no heartbeat..",
2022-06-08 21:18:47 +02:00
"$ref": "../../../../molang/number.json"
},
"sound_event": {
"title": "Sound Event",
"description": "Level sound event to be played as the heartbeat sound.",
"type": "string"
2022-06-08 21:18:47 +02:00
}
},
2022-06-07 20:10:44 +02:00
"examples": [{}]
}