Exemple #1
0
 public ActorOperationNode(
     JazzActorOperationNode.ActorOperation operation)
     : base(ResourceType, ResourceTag)
 {
     this.mActor     = null;
     this.mOperation = operation;
     this.mOperand   = 0;
 }
 public ActorOperationNode(
     JazzActorOperationNode.ActorOperation operation)
     : base(ResourceType, ResourceTag)
 {
     this.mActor = null;
     this.mOperation = operation;
     this.mOperand = 0;
 }
Exemple #3
0
 private void CreateOperationCommand(object value)
 {
     JazzActorOperationNode.ActorOperation ao = (JazzActorOperationNode.ActorOperation)value;
     this.mScene.Container.UndoRedo.Submit(new OperationCommand(this, ao, false));
 }