Jump to content

_KyleL

Members
  • Posts

    1
  • Joined

  • Last visited

Everything posted by _KyleL

  1. Hi, Can someone help me thin this JSON out? I feel like it's way too robust, but at the same time, I'm struggling to find how to do it. I saw that Forge had it's own blockstates in 1.14, but they have since been removed apparently. Also, side problem - when the block is placed facing up or down, it is always in the same orientations regarding NSEW. Is it possible to have it rotate depending on facing up and north vs up and east etc. without stretching this JSON even further? Full github at: https://github.com/KLitjens/IndicatorBlock { "variants": { "power=0,facing=north":{ "model": "test:block/indicator_block"}, "power=0,facing=east":{ "model": "test:block/indicator_block", "y": 90}, "power=0,facing=south":{ "model": "test:block/indicator_block", "y": 180}, "power=0,facing=west":{ "model": "test:block/indicator_block", "y": 270}, "power=0,facing=up":{ "model": "test:block/indicator_block", "x": 90}, "power=0,facing=down":{ "model": "test:block/indicator_block", "x": 270}, "power=1,facing=north":{ "model": "test:block/indicator_block_power1"}, "power=1,facing=east":{ "model": "test:block/indicator_block_power1", "y": 90}, "power=1,facing=south":{ "model": "test:block/indicator_block_power1", "y": 180}, "power=1,facing=west":{ "model": "test:block/indicator_block_power1", "y": 270}, "power=1,facing=up":{ "model": "test:block/indicator_block_power1", "x": 90}, "power=1,facing=down":{ "model": "test:block/indicator_block_power1", "x": 270}, "power=2,facing=north":{ "model": "test:block/indicator_block_power2"}, "power=2,facing=east":{ "model": "test:block/indicator_block_power2", "y": 90}, "power=2,facing=south":{ "model": "test:block/indicator_block_power2", "y": 180}, "power=2,facing=west":{ "model": "test:block/indicator_block_power2", "y": 270}, "power=2,facing=up":{ "model": "test:block/indicator_block_power2", "x": 90}, "power=2,facing=down":{ "model": "test:block/indicator_block_power2", "x": 270}, "power=3,facing=north":{ "model": "test:block/indicator_block_power3"}, "power=3,facing=east":{ "model": "test:block/indicator_block_power3", "y": 90}, "power=3,facing=south":{ "model": "test:block/indicator_block_power3", "y": 180}, "power=3,facing=west":{ "model": "test:block/indicator_block_power3", "y": 270}, "power=3,facing=up":{ "model": "test:block/indicator_block_power3", "x": 90}, "power=3,facing=down":{ "model": "test:block/indicator_block_power3", "x": 270}, "power=4,facing=north":{ "model": "test:block/indicator_block_power4"}, "power=4,facing=east":{ "model": "test:block/indicator_block_power4", "y": 90}, "power=4,facing=south":{ "model": "test:block/indicator_block_power4", "y": 180}, "power=4,facing=west":{ "model": "test:block/indicator_block_power4", "y": 270}, "power=4,facing=up":{ "model": "test:block/indicator_block_power4", "x": 90}, "power=4,facing=down":{ "model": "test:block/indicator_block_power4", "x": 270}, "power=5,facing=north":{ "model": "test:block/indicator_block_power5"}, "power=5,facing=east":{ "model": "test:block/indicator_block_power5", "y": 90}, "power=5,facing=south":{ "model": "test:block/indicator_block_power5", "y": 180}, "power=5,facing=west":{ "model": "test:block/indicator_block_power5", "y": 270}, "power=5,facing=up":{ "model": "test:block/indicator_block_power5", "x": 90}, "power=5,facing=down":{ "model": "test:block/indicator_block_power5", "x": 270}, "power=6,facing=north":{ "model": "test:block/indicator_block_power6"}, "power=6,facing=east":{ "model": "test:block/indicator_block_power6", "y": 90}, "power=6,facing=south":{ "model": "test:block/indicator_block_power6", "y": 180}, "power=6,facing=west":{ "model": "test:block/indicator_block_power6", "y": 270}, "power=6,facing=up":{ "model": "test:block/indicator_block_power6", "x": 90}, "power=6,facing=down":{ "model": "test:block/indicator_block_power6", "x": 270}, "power=7,facing=north":{ "model": "test:block/indicator_block_power7"}, "power=7,facing=east":{ "model": "test:block/indicator_block_power7", "y": 90}, "power=7,facing=south":{ "model": "test:block/indicator_block_power7", "y": 180}, "power=7,facing=west":{ "model": "test:block/indicator_block_power7", "y": 270}, "power=7,facing=up":{ "model": "test:block/indicator_block_power7", "x": 90}, "power=7,facing=down":{ "model": "test:block/indicator_block_power7", "x": 270}, "power=8,facing=north":{ "model": "test:block/indicator_block_power8"}, "power=8,facing=east":{ "model": "test:block/indicator_block_power8", "y": 90}, "power=8,facing=south":{ "model": "test:block/indicator_block_power8", "y": 180}, "power=8,facing=west":{ "model": "test:block/indicator_block_power8", "y": 270}, "power=8,facing=up":{ "model": "test:block/indicator_block_power8", "x": 90}, "power=8,facing=down":{ "model": "test:block/indicator_block_power8", "x": 270}, "power=9,facing=north":{ "model": "test:block/indicator_block_power9"}, "power=9,facing=east":{ "model": "test:block/indicator_block_power9", "y": 90}, "power=9,facing=south":{ "model": "test:block/indicator_block_power9", "y": 180}, "power=9,facing=west":{ "model": "test:block/indicator_block_power9", "y": 270}, "power=9,facing=up":{ "model": "test:block/indicator_block_power9", "x": 90}, "power=9,facing=down":{ "model": "test:block/indicator_block_power9", "x": 270}, "power=10,facing=north":{ "model": "test:block/indicator_block_power10"}, "power=10,facing=east":{ "model": "test:block/indicator_block_power10", "y": 90}, "power=10,facing=south":{ "model": "test:block/indicator_block_power10", "y": 180}, "power=10,facing=west":{ "model": "test:block/indicator_block_power10", "y": 270}, "power=10,facing=up":{ "model": "test:block/indicator_block_power10", "x": 90}, "power=10,facing=down":{ "model": "test:block/indicator_block_power10", "x": 270}, "power=11,facing=north":{ "model": "test:block/indicator_block_power11"}, "power=11,facing=east":{ "model": "test:block/indicator_block_power11", "y": 90}, "power=11,facing=south":{ "model": "test:block/indicator_block_power11", "y": 180}, "power=11,facing=west":{ "model": "test:block/indicator_block_power11", "y": 270}, "power=11,facing=up":{ "model": "test:block/indicator_block_power11", "x": 90}, "power=11,facing=down":{ "model": "test:block/indicator_block_power11", "x": 270}, "power=12,facing=north":{ "model": "test:block/indicator_block_power12"}, "power=12,facing=east":{ "model": "test:block/indicator_block_power12", "y": 90}, "power=12,facing=south":{ "model": "test:block/indicator_block_power12", "y": 180}, "power=12,facing=west":{ "model": "test:block/indicator_block_power12", "y": 270}, "power=12,facing=up":{ "model": "test:block/indicator_block_power12", "x": 90}, "power=12,facing=down":{ "model": "test:block/indicator_block_power12", "x": 270}, "power=13,facing=north":{ "model": "test:block/indicator_block_power13"}, "power=13,facing=east":{ "model": "test:block/indicator_block_power13", "y": 90}, "power=13,facing=south":{ "model": "test:block/indicator_block_power13", "y": 180}, "power=13,facing=west":{ "model": "test:block/indicator_block_power13", "y": 270}, "power=13,facing=up":{ "model": "test:block/indicator_block_power13", "x": 90}, "power=13,facing=down":{ "model": "test:block/indicator_block_power13", "x": 270}, "power=14,facing=north":{ "model": "test:block/indicator_block_power14"}, "power=14,facing=east":{ "model": "test:block/indicator_block_power14", "y": 90}, "power=14,facing=south":{ "model": "test:block/indicator_block_power14", "y": 180}, "power=14,facing=west":{ "model": "test:block/indicator_block_power14", "y": 270}, "power=14,facing=up":{ "model": "test:block/indicator_block_power14", "x": 90}, "power=14,facing=down":{ "model": "test:block/indicator_block_power14", "x": 270}, "power=15,facing=north":{ "model": "test:block/indicator_block_power15"}, "power=15,facing=east":{ "model": "test:block/indicator_block_power15", "y": 90}, "power=15,facing=south":{ "model": "test:block/indicator_block_power15", "y": 180}, "power=15,facing=west":{ "model": "test:block/indicator_block_power15", "y": 270}, "power=15,facing=up":{ "model": "test:block/indicator_block_power15", "x": 90}, "power=15,facing=down":{ "model": "test:block/indicator_block_power15", "x": 270} } }
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.