mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-08-09 02:07:04 +08:00
Move block data from TOML to JSON under assets/cubed/blocks, add registry.json for block and item IDs, and relocate textures and sounds to the cubed namespace.
24 lines
628 B
JSON
24 lines
628 B
JSON
{
|
|
"name": "grass_block",
|
|
"properties": {
|
|
"is_liquid": false,
|
|
"is_cross_plane": false,
|
|
"is_transparent": false,
|
|
"is_passable": false,
|
|
"is_discard": false,
|
|
"is_blend": false,
|
|
"is_transitional": true,
|
|
"is_gas": false,
|
|
"roughness": 0.9
|
|
},
|
|
"texture": {
|
|
"type": "cuboid",
|
|
"path": "cubed:textures/blocks/grass_block"
|
|
},
|
|
"sounds": {
|
|
"break": "cubed:sounds/blocks/grass_block/break.ogg",
|
|
"place": "cubed:sounds/blocks/grass_block/place.ogg",
|
|
"walk": "cubed:sounds/blocks/grass_block/walk.ogg"
|
|
}
|
|
}
|