2024-05-25 14:28:48 +05:00
|
|
|
{
|
|
|
|
|
"$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",
|
2025-08-01 16:02:58 -04:00
|
|
|
"items": [
|
|
|
|
|
{
|
|
|
|
|
"title": "Min",
|
|
|
|
|
"type": "number",
|
|
|
|
|
"default": 0
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"title": "Max",
|
|
|
|
|
"type": "number",
|
|
|
|
|
"default": 0
|
|
|
|
|
}
|
|
|
|
|
],
|
2024-05-25 14:28:48 +05:00
|
|
|
"description": "The Range between which the component will trigger his event.",
|
|
|
|
|
"title": "Interval Range"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|