Tasharen Entertainment Forum

Support => NGUI 3 Support => Topic started by: dominus85 on December 12, 2013, 04:51:42 PM

Title: Box collider not resizing
Post 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
Title: Re: Box collider not resizing
Post by: ArenMook on December 13, 2013, 05:17:41 AM
You're right. I'll get that fixed, thanks!