Posted September 12, 201510 yr so whenever i try to aim for east or west bounds for a block it doesnt show bounding box and is unbreakable, it works fine with north and south... any ideas? Float f = 0.0625F; setBlockBounds(4 * f, 4 * f, 12 * f, 12 * f, 1.0F, 4 * f); ~thanks "The cycle of life and death continues. We will live, they will die."
September 12, 201510 yr Block bounds go from minimum to maximum, i.e. minX, minY, minZ, maxX, maxY, maxZ. You have 12 * f as the minimum z, which is greater than the maximum z of 4 * f. Switch them. http://i.imgur.com/NdrFdld.png[/img]
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.