Example #1
0
 public static void UnActionMgr()
 {
     foreach (CCAction action in Instance.actionList)
     {
         action.Stop();
     }
     instance = null;
 }
Example #2
0
 public static void UnsharedActionMgr()
 {
     foreach (CCAction action in sharedActionMgr.actionList)
     {
         action.stop();
     }
     sharedActionMgr = null;
 }
Example #3
0
 public static void UnActionMgr()
 {
     
     foreach (CCAction action in Instance.actionList)
     {
         action.Stop();
     }
     instance = null;
 }
Example #4
0
 public CCActionMgr()
 {
     sharedActionMgr = this;
     Actions         = new Dictionary <Transform, List <CCAction> >();
     actionList      = new List <CCAction>();
 }
Example #5
0
 private void OnDisable()
 {
     CCTouchMgr.UnsharedTouchManager();
     CCActionMgr.UnsharedActionMgr();
     CCGUIActionMgr.UnsharedActionMgr();
 }
Example #6
0
 void OnDisable()
 {
     CCActionMgr.UnActionMgr();
 }