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; }
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; }
public VMModifyDataCommand(VMExtDataType type, int id, int value, VMEntity obj, VMStackFrame stack) : this(type, id, value, obj) { Frame = stack; }