Posted December 26, 20177 yr Hi, I have a rather simple block at the moment that I assemble out of submodels based on blockstates. Spoiler { "multipart": [ { "when": { "first_end": "north" }, "apply": { "model": "techmod:cablecar_track_normal" }}, { "when": { "first_end": "south" }, "apply": { "model": "techmod:cablecar_track_normal", "y": 180, "uvlock": true }}, { "when": { "first_end": "west" }, "apply": { "model": "techmod:cablecar_track_normal", "y": 270 }}, { "when": { "first_end": "east" }, "apply": { "model": "techmod:cablecar_track_normal", "y": 90 }}, { "when": { "second_end": "north" }, "apply": { "model": "techmod:cablecar_track_normal" }}, { "when": { "second_end": "south" }, "apply": { "model": "techmod:cablecar_track_normal", "y": 180, "uvlock": true }}, { "when": { "second_end": "west" }, "apply": { "model": "techmod:cablecar_track_normal", "y": 270 }}, { "when": { "second_end": "east" }, "apply": { "model": "techmod:cablecar_track_normal", "y": 90 }}, { "when": { "first_end": "north|south", "second_end": "north|south" }, "apply": { "model": "techmod:cablecar_track_middle" }}, { "when": { "first_end": "east|west", "second_end": "east|west" }, "apply": { "model": "techmod:cablecar_track_middle", "y": 90 }} ] } But the rendered Block looks like this (this block is `[first_end=north,second_end=south]`) Spoiler Am I misinterpreting uvlock? Or how should I solve this? Edited December 26, 20177 yr by SuperManitu missing image
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.