Example #1
0
        public void Add(ITimeScalablable child)
        {
            child.TimeScale = TimeScale;
            if (isPause)
            {
                child.Pause();
            }

            if (Children == null)
            {
                Children = new List <ITimeScalablable>();
            }
            Children.Add(child);
        }
Example #2
0
 public void Remove(ITimeScalablable c)
 {
     Container.Remove(c);
 }
Example #3
0
 public void Add(ITimeScalablable c)
 {
     Container.Add(c);
 }
Example #4
0
 private static bool checkRemove(ITimeScalablable child)
 {
     return(child.IsRelease);
 }
Example #5
0
 public void Remove(ITimeScalablable c)
 {
     Children.Remove(c);
 }