Beispiel #1
0
 private void onTrackAdded(ShowPropSubActionPrototype prototype)
 {
     if (editInterface != null)
     {
         editInterface.addSubInterface(prototype, prototype.EditInterface);
     }
 }
Beispiel #2
0
 private void onTrackRemoved(ShowPropSubActionPrototype prototype)
 {
     if (editInterface != null)
     {
         editInterface.removeSubInterface(prototype);
     }
 }
Beispiel #3
0
 public void removeTrack(ShowPropSubActionPrototype prototype)
 {
     trackData.Remove(prototype);
     onTrackRemoved(prototype);
 }
Beispiel #4
0
 public void addTrack(ShowPropSubActionPrototype prototype)
 {
     trackData.Add(prototype);
     onTrackAdded(prototype);
 }