You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title says it all...if you destroy a container it is not removed from the manager, and if you recreate it you get errors...simple fix
UIAbstractContainer.cs line 148 added:
ITouchable touchable = this as ITouchable;
if( touchable != null )
{
this.__manager.removeFromTouchables(touchable);
}
The text was updated successfully, but these errors were encountered:
title says it all...if you destroy a container it is not removed from the manager, and if you recreate it you get errors...simple fix
UIAbstractContainer.cs line 148 added:
The text was updated successfully, but these errors were encountered: