I am having problems with set bounds. I've modeled a block, about 2x2 in size, and set it's bounds to this:
// x axis bounds
// -1.0f - 0.0f Left
// 0.0f - 1.0f Right
// y axis bounds
// 0.0f - 1.0f Bottom
// 1.0f - 2.0f Top
// z axis bounds
// 0.5f Front
// 0.6f Back
this.setBlockBounds(-1.0f, 0.0f, 0.5f, 1.0f, 2.0f, 0.6f);
when I look at the bottom left part (-1.0f) on the bounds, it shows the bounds and encompasses the whole block, however, if I look at any other position on the other 3 sections of the model, then the bounds disappear/don't show up, as well as the right 2 blocks have no collision but the left 2 blocks do have collision. But the top left one like all the right blocks don't render the bounds when looked at.
How do I get the bounds to display on all portions, and make all portions solid?
*Working on uploading screenshots*