1
NGUI 3 Support / Re: Clear BetterList from UIWrapContent
« on: June 05, 2014, 06:07:32 AM »
I've found out that this issue is only happening with UIWrapContent, not with UIGrid. So meanwhile I'll use a grid instead.
Adding this to UIWrapContent line 154 fixes the errors, but there is a gap between the elements that currently are and the ones I destroyed before. Thanks.
Adding this to UIWrapContent line 154 fixes the errors, but there is a gap between the elements that currently are and the ones I destroyed before. Thanks.
- for (int i = 0; i < mChildren.size; ++i)
- {
- Transform t = mChildren[i];
- if(t == null)
- {
- continue;
- }
