Ejemplo n.º 1
0
 public VMModifyDataCommand(VMExtDataType type, int id, int value, VMEntity obj)
 {
     Type   = type;
     ID     = id;
     Value  = value;
     Object = obj;
 }
Ejemplo n.º 2
0
 public VMModifyDataCommand(VMExtDataType type, int id, int value, VMEntity obj)
 {
     Type = type;
     ID = id;
     Value = value;
     Object = obj;
 }
Ejemplo n.º 3
0
        private int UseLastValue; //times to use last believed value before we poll the real entity.

        #endregion Fields

        #region Constructors

        public VMDataPropertyDescriptor(string name, string description, Attribute[] attrs, VMExtDataType type, int id, 
            VMEntity obj, VMStackFrame frame, UIBHAVEditor editor)
            : base(name, attrs)
        {
            Type = type;
            ID = id;
            Object = obj;
            Frame = frame;
            Editor = editor;
            _Description = description;
        }
Ejemplo n.º 4
0
        private int LastValue;    //used to circumvent the fact that we don't change the value till a while later.

        public VMDataPropertyDescriptor(string name, string description, Attribute[] attrs, VMExtDataType type, int id,
                                        VMEntity obj, VMStackFrame frame, UIBHAVEditor editor)
            : base(name, attrs)
        {
            Type         = type;
            ID           = id;
            Object       = obj;
            Frame        = frame;
            Editor       = editor;
            _Description = description;
        }
Ejemplo n.º 5
0
 public VMModifyDataCommand(VMExtDataType type, int id, int value, VMEntity obj, VMStackFrame stack)
     : this(type, id, value, obj)
 {
     Frame = stack;
 }
Ejemplo n.º 6
0
 public VMModifyDataCommand(VMExtDataType type, int id, int value, VMEntity obj, VMStackFrame stack)
     : this(type, id, value, obj)
 {
     Frame = stack;
 }