FRicsi / No-more-Mine-in-Hell

Minecraft mod
0 stars 0 forks source link

Block rotation problems #22

Open FRicsi opened 6 years ago

FRicsi commented 6 years ago

Painted bricks and painted walls rotating Error on angle.

Not rotating: wooden barricade - facing error

Wrong facing: military radio

code missing problems - nomoremineinhell:shelves#normal error - wooden shelf, nomoremineinhell:shopshelves#normal error - shop shelf, nomoremineinhell:freezer#normal error - freezer nomoremineinhell:dead#normal error - dead

bloackstate problems: paintedplanks

texture skip error iron pillar

freezer is 2 tall block somehow

FRicsi commented 6 years ago

Rotating must be reversed or adjusted

Toilet/tap/etc must be placed facing towards player. problem could be the south/north orientation { "variants": { "facing=south": { "model": "nomoremineinhell:toilet" }, "facing=west": { "model": "nomoremineinhell:toilet", "y": 90 }, "facing=north": { "model": "nomoremineinhell:toilet", "y": 180 }, "facing=east": { "model": "nomoremineinhell:toilet", "y": 270 } } }

must be adjusted as well, so:

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