Kategorien können in andere Kategorien verschachtelt werden. Hier sehen Sie zwei Kategorien der obersten Ebene („Core“ und „Custom“), wobei die zweite zwei Unterkategorien enthält, die jeweils Blöcke enthalten:
Eine Kategorie kann sowohl Unterkategorien als auch Blöcke enthalten. Im folgenden Beispiel hat Custom
zwei Unterkategorien (Move
und Turn
) sowie einen eigenen Block (start
).
JSON
{
"kind": "categoryToolbox",
"contents": [
{
"kind": "category",
"name": "Core",
"contents": [
{
"kind": "block",
"type": "controls_if"
},
{
"kind": "block",
"type": "logic_compare"
},
]
},
{
"kind": "category",
"name": "Custom",
"contents": [
{
"kind": "block",
"type": "start"
},
{
"kind": "category",
"name": "Move",
"contents": [
{
"kind": "block",
"type": "move_forward"
}
]
},
{
"kind": "category",
"name": "Turn",
"contents": [
{
"kind": "block",
"type": "turn_left"
}
]
}
]
}
]
}
XML
<xml id="toolbox" style="display: none">
<category name="Core">
<block type="controls_if"></block>
<block type="logic_compare"></block>
</category>
<category name="Custom">
<block type="start"></block>
<category name="Move">
<block type="move_forward"></block>
</category>
<category name="Turn">
<block type="turn_left"></block>
</category>
</category>
</xml>