Exemplo n.º 1
0
 public void removeSubAction(ShowPropSubAction subAction)
 {
     sequencer.removeAction(subAction);
     subAction._setShowProp(null);
     if (ActionRemoved != null)
     {
         ActionRemoved.Invoke(this, subAction);
     }
 }
Exemplo n.º 2
0
 public void addSubAction(ShowPropSubAction subAction)
 {
     subAction._setShowProp(this);
     sequencer.addAction(subAction);
     if (ActionAdded != null)
     {
         ActionAdded.Invoke(this, subAction);
     }
 }
Exemplo n.º 3
0
 internal void _actionStartChanged(ShowPropSubAction showPropSubAction)
 {
     sequencer.sort();
 }