Gets / sets the boolean flag determining if this object should have it's bounds drawn when the bounds for all objects are being drawn. In order for bounds to be drawn the viewport the object is being drawn to must also have draw bounds enabled.
drawBounds (Booleanval)
Booleanval
Returns *
Enable draw bounds
var entity = new IgeEntity();
entity.drawBounds(true);
Disable draw bounds
var entity = new IgeEntity();
entity.drawBounds(false);