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