public void removeSubAction(ShowPropSubAction subAction)
 {
     sequencer.removeAction(subAction);
     subAction._setShowProp(null);
     if (ActionRemoved != null)
     {
         ActionRemoved.Invoke(this, subAction);
     }
 }
 public void addSubAction(ShowPropSubAction subAction)
 {
     subAction._setShowProp(this);
     sequencer.addAction(subAction);
     if (ActionAdded != null)
     {
         ActionAdded.Invoke(this, subAction);
     }
 }