Esempio n. 1
0
 public VMModifyDataCommand(VMExtDataType type, int id, int value, VMEntity obj)
 {
     Type   = type;
     ID     = id;
     Value  = value;
     Object = obj;
 }
Esempio n. 2
0
 public VMModifyDataCommand(VMExtDataType type, int id, int value, VMEntity obj)
 {
     Type = type;
     ID = id;
     Value = value;
     Object = obj;
 }
        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;
        }
Esempio 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;
        }
Esempio n. 5
0
 public VMModifyDataCommand(VMExtDataType type, int id, int value, VMEntity obj, VMStackFrame stack)
     : this(type, id, value, obj)
 {
     Frame = stack;
 }
Esempio n. 6
0
 public VMModifyDataCommand(VMExtDataType type, int id, int value, VMEntity obj, VMStackFrame stack)
     : this(type, id, value, obj)
 {
     Frame = stack;
 }