Example #1
0
 public RemoveItemAtCommand(ActorSuffixList asl, int index)
 {
     this.mSuffList = asl;
     this.mSuff     = asl[index];
     this.mIndex    = index;
     this.mLabel    = "Remove Actor Suffix from Slot Builder";
 }
Example #2
0
 public InsertNewItemCommand(ActorSuffixList asl, int index)
 {
     this.mSuffList = asl;
     this.mSuff     = new ActorSuffix(asl.mSlotBuilder);
     this.mIndex    = index;
     this.mLabel    = "Insert New Actor Suffix into Slot Builder";
 }
Example #3
0
 public ParamCommand(ActorSuffix suffix,
                     ParamDefinition newValue)
 {
     this.mSuffix = suffix;
     this.mOldVal = suffix.mParam.GetValue();
     this.mNewVal = newValue;
     this.mLabel  = "Set Param of Actor Suffix";
 }
Example #4
0
 public ActorCommand(ActorSuffix suffix,
                     ActorDefinition newValue)
 {
     this.mSuffix = suffix;
     this.mOldVal = suffix.mActor.GetValue();
     this.mNewVal = newValue;
     this.mLabel  = "Set Actor of Actor Suffix";
 }
Example #5
0
 public AddNewItemCommand(ActorSuffixList asl)
 {
     this.mSuffList = asl;
     this.mSuff     = new ActorSuffix(asl.mSlotBuilder);
     this.mLabel    = "Add New Actor Suffix to Slot Builder";
 }