Files
minecraft-bedrock-json-schemas/source/behavior/blocks/format/components/tick.json
Smell of curry cd9e499382 Update tick.json to have actual items typed (#360)
* Update tick.json to have actual items typed

* Update source/behavior/blocks/format/components/tick.json

---------

Co-authored-by: Daan Verstraten <daanverstraten@hotmail.com>
2025-08-01 22:02:58 +02:00

28 lines
782 B
JSON

{
"$id": "blockception.minecraft.behavior.blocks.minecraft.tick",
"title": "Tick",
"description": "Describes the component that will trigger an even at a regular interval between two values.",
"type": "object",
"additionalProperties": false,
"properties": {
"looping": { "type": "boolean", "default": true, "description": "Does the event loop.", "title": "Looping" },
"interval_range": {
"type": "array",
"items": [
{
"title": "Min",
"type": "number",
"default": 0
},
{
"title": "Max",
"type": "number",
"default": 0
}
],
"description": "The Range between which the component will trigger his event.",
"title": "Interval Range"
}
}
}