Tasharen Entertainment Forum
Support => NGUI 3 Support => Topic started by: dominus85 on December 12, 2013, 04:51:42 PM
-
I have an empty game object that has a UIWidget component and a Box Collider..
If I select auto-resize the box collider won't resize because of line 224 from UIWidget:
public bool isVisible { get { return mIsVisible && mGeom != null && mGeom.hasVertices; } }
If I change to
public bool isVisible { get { return mIsVisible; } }
It will work ok
-
You're right. I'll get that fixed, thanks!