FairyGUI.Transition.ClearHooks C# (CSharp) Method

ClearHooks() public method

public ClearHooks ( ) : void
return void
        public void ClearHooks()
        {
            int cnt = _items.Count;
            for (int i = 0; i < cnt; i++)
            {
                TransitionItem item = _items[i];
                item.hook = null;
                item.hook2 = null;
            }
        }

Usage Example

 static public int ClearHooks(IntPtr l)
 {
     try {
         FairyGUI.Transition self = (FairyGUI.Transition)checkSelf(l);
         self.ClearHooks();
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of FairyGUI.Transition::ClearHooks