mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2026-05-15 15:52:33 +08:00
Snap angle and grid size saved as settings
This commit is contained in:
Generated
+36
@@ -746,5 +746,41 @@ namespace CodeWalker.Properties {
|
||||
this["Deferred"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("5")]
|
||||
public float SnapRotationDegrees {
|
||||
get {
|
||||
return ((float)(this["SnapRotationDegrees"]));
|
||||
}
|
||||
set {
|
||||
this["SnapRotationDegrees"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("10")]
|
||||
public float SnapGridSize {
|
||||
get {
|
||||
return ((float)(this["SnapGridSize"]));
|
||||
}
|
||||
set {
|
||||
this["SnapGridSize"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("False")]
|
||||
public bool JumpListInitialised {
|
||||
get {
|
||||
return ((bool)(this["JumpListInitialised"]));
|
||||
}
|
||||
set {
|
||||
this["JumpListInitialised"] = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user