I ran into an odd effect in my mod development: items stack in the Y direction to integer world units (grid spacing). What I expected: define item 1’s region, allow vertical adjacent, stack item 2 onto item 1, item 2 sits with the bottom of its region flush with the top of item 1’s region. What actually happens: OK if item 1 is integer units high (like small crate dY = 1, large crate dY = 2, etc.), all other cases result in item 2 floating at next integer Y above item 1.
Just as a sanity check, here’s a screen shot from a very simple test: I took the large crate and squashed it so the qb file and region were both 1.5 high instead of 2, then added to my mod with no other changes (to verify it had nothing to do with my custom items):
Just wondering if this is something that could be corrected or if item placement is tied to integer Y layers. Perhaps it may just be coincidence of object design that most items one would want to stack in the game are not fractional unit heights. At least searching the discourse didn’t seem like anyone else was bothered by this.