コード例 #1
0
 public static void SetValue(this IExposedToLevelEditor exposed, int id, object value, bool notify, ILevelEditorUndo undo)
 {
     exposed.BeginEdit(id);
     exposed.ModifyValue(value, notify);
     exposed.EndEdit(notify, undo);
 }
コード例 #2
0
 protected void ModifyPropertyValue(object value, bool notify)
 {
     boundComponent.ModifyValue(value, notify);
 }