Everything posted by Clem105
-
[1.8.9] Troubles with texture handling in Blockstate
Hi ! (not native english, so sorry for my syntax) I'm currently modding some kind of addon to computercraft and as so a Multiblock with some advancedNoteBlock peripheral, a friend of mine handling the multiblock part and I m trying to code the texture part so I setup a propertie called Index that reffers to wich block is it. This is actually supposed to look like that : (that's with textures directly into the model) And ... BlockState json : { "variants": { "direction=south,index=0": { "model": "lifeisperipheral:AdvancedNoteBlock1111", "textures": { "0": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockBack", "2": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockTop", "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock0" } }, "direction=north,index=0": { "model": "lifeisperipheral:AdvancedNoteBlock1111", "textures": { "0": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockBack", "2": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockTop", "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock0" }, "y": 180 }, "direction=east,index=0": { "model": "lifeisperipheral:AdvancedNoteBlock1111", "textures": { "0": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockBack", "2": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockTop", "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock0" }, "y": 270 }, "direction=west,index=0": { "model": "lifeisperipheral:AdvancedNoteBlock1111", "textures": { "0": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockBack", "2": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockTop", "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock0" }, "y": 90 }, "direction=south,index=1": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock1" }, "model": "lifeisperipheral:AdvancedNoteBlock1101" }, "direction=north,index=1": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock1" }, "model": "lifeisperipheral:AdvancedNoteBlock1101", "y": 180 }, "direction=east,index=1": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock1" }, "model": "lifeisperipheral:AdvancedNoteBlock1101", "y": 270 }, "direction=west,index=1": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock1" }, "model": "lifeisperipheral:AdvancedNoteBlock1101", "y": 90 }, "direction=south,index=2": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock2" }, "model": "lifeisperipheral:AdvancedNoteBlock0111" }, "direction=north,index=2": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock2" }, "model": "lifeisperipheral:AdvancedNoteBlock0111", "y": 180 }, "direction=east,index=2": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock2" }, "model": "lifeisperipheral:AdvancedNoteBlock0111", "y": 270 }, "direction=west,index=2": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock2" }, "model": "lifeisperipheral:AdvancedNoteBlock0111", "y": 90 }, "direction=south,index=3": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock3" }, "model": "lifeisperipheral:AdvancedNoteBlock1110" }, "direction=north,index=3": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock3" }, "model": "lifeisperipheral:AdvancedNoteBlock1110", "y": 180 }, "direction=east,index=3": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock3" }, "model": "lifeisperipheral:AdvancedNoteBlock1110", "y": 270 }, "direction=west,index=3": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock3" }, "model": "lifeisperipheral:AdvancedNoteBlock1110", "y": 90 }, "direction=south,index=4": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock4" }, "model": "lifeisperipheral:AdvancedNoteBlock1011" }, "direction=north,index=4": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock4" }, "model": "lifeisperipheral:AdvancedNoteBlock1011", "y": 180 }, "direction=east,index=4": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock4" }, "model": "lifeisperipheral:AdvancedNoteBlock1011", "y": 270 }, "direction=west,index=4": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock4" }, "model": "lifeisperipheral:AdvancedNoteBlock1011", "y": 90 }, "direction=south,index=5": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock5" }, "model": "lifeisperipheral:AdvancedNoteBlock1100" }, "direction=north,index=5": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock5" }, "model": "lifeisperipheral:AdvancedNoteBlock1100", "y": 180 }, "direction=east,index=5": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock5" }, "model": "lifeisperipheral:AdvancedNoteBlock1100", "y": 270 }, "direction=west,index=5": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock5" }, "model": "lifeisperipheral:AdvancedNoteBlock1100", "y": 90 }, "direction=south,index=6": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock6" }, "model": "lifeisperipheral:AdvancedNoteBlock0110" }, "direction=north,index=6": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock6" }, "model": "lifeisperipheral:AdvancedNoteBlock0110", "y": 180 }, "direction=east,index=6": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock6" }, "model": "lifeisperipheral:AdvancedNoteBlock0110", "y": 270 }, "direction=west,index=6": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock6" }, "model": "lifeisperipheral:AdvancedNoteBlock0110", "y": 90 }, "direction=south,index=7": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock7" }, "model": "lifeisperipheral:AdvancedNoteBlock1001" }, "direction=north,index=7": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock7" }, "model": "lifeisperipheral:AdvancedNoteBlock1001", "y": 180 }, "direction=east,index=7": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock7" }, "model": "lifeisperipheral:AdvancedNoteBlock1001", "y": 270 }, "direction=west,index=7": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock7" }, "model": "lifeisperipheral:AdvancedNoteBlock1001", "y": 90 }, "direction=south,index=8": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock8" }, "model": "lifeisperipheral:AdvancedNoteBlock0011" }, "direction=north,index=8": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock8" }, "model": "lifeisperipheral:AdvancedNoteBlock0011", "y": 180 }, "direction=east,index=8": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock8" }, "model": "lifeisperipheral:AdvancedNoteBlock0011", "y": 270 }, "direction=west,index=8": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlock8" }, "model": "lifeisperipheral:AdvancedNoteBlock0011", "y": 90 }, "direction=south,index=9": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1101" }, "direction=north,index=9": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1101", "y": 180 }, "direction=east,index=9": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1101", "y": 270 }, "direction=west,index=9": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1101", "y": 90 }, "direction=south,index=10": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0101" }, "direction=north,index=10": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0101", "y": 180 }, "direction=east,index=10": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0101", "y": 270 }, "direction=west,index=10": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0101", "y": 90 }, "direction=south,index=11": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0111" }, "direction=north,index=11": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0111", "y": 180 }, "direction=east,index=11": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0111", "y": 270 }, "direction=west,index=11": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0111", "y": 90 }, "direction=south,index=12": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1100" }, "direction=north,index=12": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1100", "y": 180 }, "direction=east,index=12": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1100", "y": 270 }, "direction=west,index=12": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1100", "y": 90 }, "direction=south,index=13": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0100" }, "direction=north,index=13": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0100", "y": 180 }, "direction=east,index=13": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0100", "y": 270 }, "direction=west,index=13": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0100", "y": 90 }, "direction=south,index=14": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0110" }, "direction=north,index=14": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0110", "y": 180 }, "direction=east,index=14": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0110", "y": 270 }, "direction=west,index=14": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0110", "y": 90 }, "direction=south,index=15": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1001" }, "direction=north,index=15": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1001", "y": 180 }, "direction=east,index=15": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1001", "y": 270 }, "direction=west,index=15": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1001", "y": 90 }, "direction=south,index=16": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0001" }, "direction=north,index=16": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0001", "y": 180 }, "direction=east,index=16": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0001", "y": 270 }, "direction=west,index=16": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0001", "y": 90 }, "direction=south,index=17": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0011" }, "direction=north,index=17": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0011", "y": 180 }, "direction=east,index=17": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0011", "y": 270 }, "direction=west,index=17": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0011", "y": 90 }, "direction=south,index=18": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1100" }, "direction=north,index=18": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1100", "y": 180 }, "direction=east,index=18": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1100", "y": 270 }, "direction=west,index=18": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1100", "y": 90 }, "direction=south,index=19": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0110" }, "direction=north,index=19": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0110", "y": 180 }, "direction=east,index=19": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0110", "y": 270 }, "direction=west,index=19": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0110", "y": 90 }, "direction=south,index=20": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1000" }, "direction=north,index=20": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1000", "y": 180 }, "direction=east,index=20": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1000", "y": 270 }, "direction=west,index=20": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1000", "y": 90 }, "direction=south,index=21": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0010" }, "direction=north,index=21": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0010", "y": 180 }, "direction=east,index=21": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0010", "y": 270 }, "direction=west,index=21": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0010", "y": 90 }, "direction=south,index=22": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1001" }, "direction=north,index=22": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1001", "y": 180 }, "direction=east,index=22": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1001", "y": 270 }, "direction=west,index=22": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1001", "y": 90 }, "direction=south,index=23": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0011" }, "direction=north,index=23": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0011", "y": 180 }, "direction=east,index=23": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0011", "y": 270 }, "direction=west,index=23": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock0011", "y": 90 }, "direction=south,index=24": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1100" }, "direction=north,index=24": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1100", "y": 180 }, "direction=east,index=24": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1100", "y": 270 }, "direction=west,index=24": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1100", "y": 90 }, "direction=south,index=25": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1000" }, "direction=north,index=25": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1000", "y": 180 }, "direction=east,index=25": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1000", "y": 270 }, "direction=west,index=25": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1000", "y": 90 }, "direction=south,index=26": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1111" }, "direction=north,index=26": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1111", "y": 180 }, "direction=east,index=26": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1111", "y": 270 }, "direction=west,index=26": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1111", "y": 90 }, "direction=south,index=27": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1101" }, "direction=north,index=27": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1101", "y": 180 }, "direction=east,index=27": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1101", "y": 270 }, "direction=west,index=27": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1101", "y": 90 }, "direction=south,index=28": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1111" }, "direction=north,index=28": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1111", "y": 180 }, "direction=east,index=28": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1111", "y": 270 }, "direction=west,index=28": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1111", "y": 90 }, "direction=south,index=29": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1101" }, "direction=north,index=29": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1101", "y": 180 }, "direction=east,index=29": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1101", "y": 270 }, "direction=west,index=29": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1101", "y": 90 }, "direction=south,index=30": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1111" }, "direction=north,index=30": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1111", "y": 180 }, "direction=east,index=30": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1111", "y": 270 }, "direction=west,index=30": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1111", "y": 90 }, "direction=south,index=31": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1101" }, "direction=north,index=31": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1101", "y": 180 }, "direction=east,index=31": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1101", "y": 270 }, "direction=west,index=31": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1101", "y": 90 }, "direction=south,index=32": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1101" }, "direction=north,index=32": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1101", "y": 180 }, "direction=east,index=32": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1101", "y": 270 }, "direction=west,index=32": { "textures": { "texture": "lifeisperipheral:blocks/AdvancedNoteBlock/AdvancedNoteBlockInside" }, "model": "lifeisperipheral:AdvancedNoteBlock1101", "y": 90 } } } And the AdvancedNoteBlock1111.json : { "elements": [ { "name": "Cube majeur", "from": [ 0.0, 0.0, 0.0 ], "to": [ 16.0, 16.0, 13.0 ], "faces": { "north": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 16.0 ] }, "east": { "texture": "#0", "uv": [ 1.0, 0.0, 16.0, 16.0 ] }, "south": { "texture": "#texture", "uv": [ 0.0, 0.0, 16.0, 16.0 ] }, "west": { "texture": "#0", "uv": [ 0.0, 0.0, 13.0, 16.0 ] }, "up": { "texture": "#2", "uv": [ 0.0, 0.0, 16.0, 13.0 ] }, "down": { "texture": "#2", "uv": [ 0.0, 1.0, 16.0, 16.0 ] } } }, { "name": "Barre 2 horizontale bas", "from": [ 0.0, 0.0, 13.0 ], "to": [ 16.0, 2.0, 14.0 ], "faces": { "north": { "texture": "#-1", "uv": [ 0.0, 0.0, 16.0, 2.0 ] }, "east": { "texture": "#0", "uv": [ 2.0, 14.0, 1.0, 16.0 ] }, "south": { "texture": "#0", "uv": [ 0.0, 10.0, 16.0, 11.0 ] }, "west": { "texture": "#0", "uv": [ 1.0, 14.0, 2.0, 16.0 ] }, "up": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, "down": { "texture": "#2", "uv": [ 0.0, 1.0, 16.0, 2.0 ] } } }, { "name": "Barre 2 horizontale haut", "from": [ 0.0, 14.0, 13.0 ], "to": [ 16.0, 16.0, 14.0 ], "faces": { "north": { "texture": "#-1", "uv": [ 0.0, 0.0, 16.0, 2.0 ] }, "east": { "texture": "#0", "uv": [ 1.0, 0.0, 2.0, 2.0 ] }, "south": { "texture": "#2", "uv": [ 0.0, 0.0, 16.0, 2.0 ] }, "west": { "texture": "#0", "uv": [ 1.0, 0.0, 2.0, 2.0 ] }, "up": { "texture": "#2", "uv": [ 0.0, 1.0, 16.0, 2.0 ] }, "down": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] } } }, { "name": "Barre 1 horizontale bas", "from": [ 0.0, 0.0, 14.0 ], "to": [ 16.0, 1.0, 15.0 ], "faces": { "north": { "texture": "#-1", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, "south": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, "up": { "texture": "#0", "uv": [ 0.0, 11.0, 16.0, 14.0 ] }, "down": { "texture": "#2", "uv": [ 0.0, 0.0, 16.0, 1.0 ] } } }, { "name": "Barre 1 horizontale haut", "from": [ 0.0, 15.0, 14.0 ], "to": [ 16.0, 16.0, 15.0 ], "faces": { "north": { "texture": "#-1", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, "south": { "texture": "#0", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, "up": { "texture": "#2", "uv": [ 0.0, 0.0, 16.0, 1.0 ] }, "down": { "texture": "#2", "uv": [ 0.0, 1.0, 16.0, 2.0 ] } } }, { "name": "Barre 2 verticale gauche", "from": [ 0.0, 2.0, 13.0 ], "to": [ 2.0, 14.0, 14.0 ], "faces": { "north": { "texture": "#-1", "uv": [ 0.0, 0.0, 2.0, 12.0 ] }, "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 12.0 ] }, "south": { "texture": "#0", "uv": [ 1.0, 2.0, 2.0, 14.0 ] }, "west": { "texture": "#0", "uv": [ 3.0, 2.0, 10.0, 14.0 ] }, "up": { "texture": "#-1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] }, "down": { "texture": "#-1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] } } }, { "name": "Barre 2 verticale droite", "from": [ 14.0, 2.0, 13.0 ], "to": [ 16.0, 14.0, 14.0 ], "faces": { "north": { "texture": "#-1", "uv": [ 0.0, 0.0, 2.0, 12.0 ] }, "east": { "texture": "#0", "uv": [ 3.0, 2.0, 6.0, 14.0 ] }, "south": { "texture": "#0", "uv": [ 1.0, 2.0, 2.0, 14.0 ] }, "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 12.0 ] }, "up": { "texture": "#-1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] }, "down": { "texture": "#-1", "uv": [ 0.0, 0.0, 2.0, 1.0 ] } } }, { "name": "Barre 1 verticale gauche", "from": [ 0.0, 1.0, 14.0 ], "to": [ 1.0, 15.0, 15.0 ], "faces": { "north": { "texture": "#-1", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, "east": { "texture": "#0", "uv": [ 1.0, 1.0, 2.0, 15.0 ] }, "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, "west": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, "up": { "texture": "#-1", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, "down": { "texture": "#-1", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } } }, { "name": "Barre 1 verticale droite", "from": [ 15.0, 1.0, 14.0 ], "to": [ 16.0, 15.0, 15.0 ], "faces": { "north": { "texture": "#-1", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, "east": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, "south": { "texture": "#0", "uv": [ 0.0, 0.0, 1.0, 14.0 ] }, "west": { "texture": "#0", "uv": [ 1.0, 1.0, 2.0, 15.0 ] }, "up": { "texture": "#-1", "uv": [ 0.0, 0.0, 1.0, 1.0 ] }, "down": { "texture": "#-1", "uv": [ 0.0, 0.0, 1.0, 1.0 ] } } } ] } If any of you know what I did wrong that would be really appreciated
IPS spam blocked by CleanTalk.