1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-01-27 09:24:47 +00:00
CC-Tweaked/src/main/resources/assets/computercraft/blockstates/turtle_expanded.json
SquidDev add046cbda Remap all blocks and items to underscore_case
This makes block/model names a little mode consistent and should help
with porting to 1.11.2.

 - Prefix all tile entities with "computercraft:".
 - Change all "pascalCase" and "CC-*" items to use underscore_case
 - Listen to the missing mappings event and gracefully convert
   blocks/items.
2017-05-12 13:29:56 +01:00

9 lines
298 B
JSON

{
"variants": {
"facing=north": { "model": "computercraft:turtle" },
"facing=south": { "model": "computercraft:turtle", "y": 180 },
"facing=west": { "model": "computercraft:turtle", "y": 270 },
"facing=east": { "model": "computercraft:turtle", "y": 90 }
}
}