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.
23 lines
598 B
JSON
23 lines
598 B
JSON
{
|
|
"name": "stone",
|
|
"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.75
|
|
},
|
|
"texture": {
|
|
"type": "cuboid",
|
|
"path": "cubed:textures/blocks/stone"
|
|
},
|
|
"sounds": {
|
|
"break": "cubed:sounds/blocks/stone/break.ogg",
|
|
"place": "cubed:sounds/blocks/stone/place.ogg",
|
|
"walk": "cubed:sounds/blocks/stone/walk.ogg"
|
|
}
|
|
} |