Looks like I've missed some stuff in the previous commit...

This commit is contained in:
MaxED 2015-03-23 14:21:32 +00:00
parent dd5689766d
commit 4f5c2064fd
15 changed files with 269 additions and 25 deletions

View file

@ -131,7 +131,10 @@
this.slopeangle.AllowNegative = true;
this.slopeangle.AllowRelative = true;
this.slopeangle.ButtonStep = 1;
this.slopeangle.ButtonStepBig = 5F;
this.slopeangle.ButtonStepFloat = 1F;
this.slopeangle.ButtonStepSmall = 0.1F;
this.slopeangle.ButtonStepsUseModifierKeys = true;
this.slopeangle.ButtonStepsWrapAround = false;
this.slopeangle.Location = new System.Drawing.Point(85, 78);
this.slopeangle.Name = "slopeangle";
@ -146,7 +149,10 @@
this.sloperotation.AllowNegative = true;
this.sloperotation.AllowRelative = true;
this.sloperotation.ButtonStep = 1;
this.sloperotation.ButtonStepBig = 5F;
this.sloperotation.ButtonStepFloat = 1F;
this.sloperotation.ButtonStepSmall = 0.1F;
this.sloperotation.ButtonStepsUseModifierKeys = true;
this.sloperotation.ButtonStepsWrapAround = false;
this.sloperotation.Location = new System.Drawing.Point(85, 48);
this.sloperotation.Name = "sloperotation";
@ -161,7 +167,10 @@
this.slopeoffset.AllowNegative = true;
this.slopeoffset.AllowRelative = true;
this.slopeoffset.ButtonStep = 1;
this.slopeoffset.ButtonStepBig = 16F;
this.slopeoffset.ButtonStepFloat = 8F;
this.slopeoffset.ButtonStepSmall = 1F;
this.slopeoffset.ButtonStepsUseModifierKeys = true;
this.slopeoffset.ButtonStepsWrapAround = false;
this.slopeoffset.Location = new System.Drawing.Point(85, 108);
this.slopeoffset.Name = "slopeoffset";

View file

@ -29,6 +29,9 @@ namespace CodeImp.DoomBuilder.GZBuilder.Controls
public bool NonDefaultValue { get { return changed; } }
public int DefaultValue { get { return defaultValue; } set { defaultValue = value; } }
public int ButtonStep { get { return value1.ButtonStep; } set { value1.ButtonStep = value; value2.ButtonStep = value; } }
public float ButtonStepBig { get { return value1.ButtonStepBig; } set { value1.ButtonStepBig = value; value2.ButtonStepBig = value; } }
public float ButtonStepSmall { get { return value1.ButtonStepSmall; } set { value1.ButtonStepSmall = value; value2.ButtonStepSmall = value; } }
public bool ButtonStepsUseModifierKeys { get { return value1.ButtonStepsUseModifierKeys; } set { value1.ButtonStepsUseModifierKeys = value; value2.ButtonStepsUseModifierKeys = value; } }
#endregion

View file

@ -280,6 +280,7 @@ namespace CodeImp.DoomBuilder.Windows
this.scriptNumbers.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
this.scriptNumbers.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
this.scriptNumbers.BackColor = System.Drawing.Color.LemonChiffon;
this.scriptNumbers.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.scriptNumbers.FormattingEnabled = true;
this.scriptNumbers.Location = new System.Drawing.Point(398, 57);
this.scriptNumbers.Name = "scriptNumbers";
@ -500,7 +501,10 @@ namespace CodeImp.DoomBuilder.Windows
this.frontsector.AllowNegative = false;
this.frontsector.AllowRelative = false;
this.frontsector.ButtonStep = 1;
this.frontsector.ButtonStepBig = 10F;
this.frontsector.ButtonStepFloat = 1F;
this.frontsector.ButtonStepSmall = 0.1F;
this.frontsector.ButtonStepsUseModifierKeys = false;
this.frontsector.ButtonStepsWrapAround = false;
this.frontsector.Location = new System.Drawing.Point(90, 35);
this.frontsector.Name = "frontsector";
@ -547,6 +551,9 @@ namespace CodeImp.DoomBuilder.Windows
// frontTextureOffset
//
this.frontTextureOffset.ButtonStep = 16;
this.frontTextureOffset.ButtonStepBig = 32F;
this.frontTextureOffset.ButtonStepSmall = 1F;
this.frontTextureOffset.ButtonStepsUseModifierKeys = true;
this.frontTextureOffset.DefaultValue = 0;
this.frontTextureOffset.Location = new System.Drawing.Point(87, 65);
this.frontTextureOffset.Name = "frontTextureOffset";
@ -593,7 +600,10 @@ namespace CodeImp.DoomBuilder.Windows
this.backsector.AllowNegative = false;
this.backsector.AllowRelative = false;
this.backsector.ButtonStep = 1;
this.backsector.ButtonStepBig = 10F;
this.backsector.ButtonStepFloat = 1F;
this.backsector.ButtonStepSmall = 0.1F;
this.backsector.ButtonStepsUseModifierKeys = false;
this.backsector.ButtonStepsWrapAround = false;
this.backsector.Location = new System.Drawing.Point(90, 35);
this.backsector.Name = "backsector";
@ -640,6 +650,9 @@ namespace CodeImp.DoomBuilder.Windows
// backTextureOffset
//
this.backTextureOffset.ButtonStep = 16;
this.backTextureOffset.ButtonStepBig = 32F;
this.backTextureOffset.ButtonStepSmall = 1F;
this.backTextureOffset.ButtonStepsUseModifierKeys = true;
this.backTextureOffset.DefaultValue = 0;
this.backTextureOffset.Location = new System.Drawing.Point(87, 65);
this.backTextureOffset.Name = "backTextureOffset";

View file

@ -296,6 +296,7 @@ namespace CodeImp.DoomBuilder.Windows
this.scriptNumbers.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
this.scriptNumbers.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
this.scriptNumbers.BackColor = System.Drawing.Color.LemonChiffon;
this.scriptNumbers.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.scriptNumbers.FormattingEnabled = true;
this.scriptNumbers.Location = new System.Drawing.Point(407, 57);
this.scriptNumbers.Name = "scriptNumbers";
@ -307,6 +308,7 @@ namespace CodeImp.DoomBuilder.Windows
this.scriptNames.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
this.scriptNames.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
this.scriptNames.BackColor = System.Drawing.Color.Honeydew;
this.scriptNames.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.scriptNames.FormattingEnabled = true;
this.scriptNames.Location = new System.Drawing.Point(283, 57);
this.scriptNames.Name = "scriptNames";
@ -539,7 +541,10 @@ namespace CodeImp.DoomBuilder.Windows
this.alpha.AllowNegative = false;
this.alpha.AllowRelative = false;
this.alpha.ButtonStep = 1;
this.alpha.ButtonStepBig = 0.25F;
this.alpha.ButtonStepFloat = 0.1F;
this.alpha.ButtonStepSmall = 0.01F;
this.alpha.ButtonStepsUseModifierKeys = true;
this.alpha.ButtonStepsWrapAround = false;
this.alpha.Location = new System.Drawing.Point(243, 19);
this.alpha.Name = "alpha";
@ -720,7 +725,10 @@ namespace CodeImp.DoomBuilder.Windows
this.pfcFrontScaleTop.AllowDecimal = true;
this.pfcFrontScaleTop.AllowValueLinking = true;
this.pfcFrontScaleTop.ButtonStep = 1;
this.pfcFrontScaleTop.ButtonStepBig = 1F;
this.pfcFrontScaleTop.ButtonStepFloat = 0.1F;
this.pfcFrontScaleTop.ButtonStepSmall = 0.01F;
this.pfcFrontScaleTop.ButtonStepsUseModifierKeys = true;
this.pfcFrontScaleTop.DefaultValue = 1F;
this.pfcFrontScaleTop.Field1 = "scalex_top";
this.pfcFrontScaleTop.Field2 = "scaley_top";
@ -736,7 +744,10 @@ namespace CodeImp.DoomBuilder.Windows
this.pfcFrontScaleBottom.AllowDecimal = true;
this.pfcFrontScaleBottom.AllowValueLinking = true;
this.pfcFrontScaleBottom.ButtonStep = 1;
this.pfcFrontScaleBottom.ButtonStepBig = 1F;
this.pfcFrontScaleBottom.ButtonStepFloat = 0.1F;
this.pfcFrontScaleBottom.ButtonStepSmall = 0.01F;
this.pfcFrontScaleBottom.ButtonStepsUseModifierKeys = true;
this.pfcFrontScaleBottom.DefaultValue = 1F;
this.pfcFrontScaleBottom.Field1 = "scalex_bottom";
this.pfcFrontScaleBottom.Field2 = "scaley_bottom";
@ -752,7 +763,10 @@ namespace CodeImp.DoomBuilder.Windows
this.pfcFrontScaleMid.AllowDecimal = true;
this.pfcFrontScaleMid.AllowValueLinking = true;
this.pfcFrontScaleMid.ButtonStep = 1;
this.pfcFrontScaleMid.ButtonStepBig = 1F;
this.pfcFrontScaleMid.ButtonStepFloat = 0.1F;
this.pfcFrontScaleMid.ButtonStepSmall = 0.01F;
this.pfcFrontScaleMid.ButtonStepsUseModifierKeys = true;
this.pfcFrontScaleMid.DefaultValue = 1F;
this.pfcFrontScaleMid.Field1 = "scalex_mid";
this.pfcFrontScaleMid.Field2 = "scaley_mid";
@ -802,7 +816,10 @@ namespace CodeImp.DoomBuilder.Windows
//
// frontTextureOffset
//
this.frontTextureOffset.ButtonStep = 16;
this.frontTextureOffset.ButtonStep = 1;
this.frontTextureOffset.ButtonStepBig = 16F;
this.frontTextureOffset.ButtonStepSmall = 0.1F;
this.frontTextureOffset.ButtonStepsUseModifierKeys = true;
this.frontTextureOffset.DefaultValue = 0;
this.frontTextureOffset.Location = new System.Drawing.Point(96, 17);
this.frontTextureOffset.Name = "frontTextureOffset";
@ -825,7 +842,10 @@ namespace CodeImp.DoomBuilder.Windows
this.pfcFrontOffsetTop.AllowDecimal = true;
this.pfcFrontOffsetTop.AllowValueLinking = false;
this.pfcFrontOffsetTop.ButtonStep = 1;
this.pfcFrontOffsetTop.ButtonStepFloat = 16F;
this.pfcFrontOffsetTop.ButtonStepBig = 16F;
this.pfcFrontOffsetTop.ButtonStepFloat = 1F;
this.pfcFrontOffsetTop.ButtonStepSmall = 0.1F;
this.pfcFrontOffsetTop.ButtonStepsUseModifierKeys = true;
this.pfcFrontOffsetTop.DefaultValue = 0F;
this.pfcFrontOffsetTop.Field1 = "offsetx_top";
this.pfcFrontOffsetTop.Field2 = "offsety_top";
@ -851,7 +871,10 @@ namespace CodeImp.DoomBuilder.Windows
this.pfcFrontOffsetMid.AllowDecimal = true;
this.pfcFrontOffsetMid.AllowValueLinking = false;
this.pfcFrontOffsetMid.ButtonStep = 1;
this.pfcFrontOffsetMid.ButtonStepFloat = 16F;
this.pfcFrontOffsetMid.ButtonStepBig = 16F;
this.pfcFrontOffsetMid.ButtonStepFloat = 1F;
this.pfcFrontOffsetMid.ButtonStepSmall = 0.1F;
this.pfcFrontOffsetMid.ButtonStepsUseModifierKeys = true;
this.pfcFrontOffsetMid.DefaultValue = 0F;
this.pfcFrontOffsetMid.Field1 = "offsetx_mid";
this.pfcFrontOffsetMid.Field2 = "offsety_mid";
@ -867,7 +890,10 @@ namespace CodeImp.DoomBuilder.Windows
this.pfcFrontOffsetBottom.AllowDecimal = true;
this.pfcFrontOffsetBottom.AllowValueLinking = false;
this.pfcFrontOffsetBottom.ButtonStep = 1;
this.pfcFrontOffsetBottom.ButtonStepFloat = 16F;
this.pfcFrontOffsetBottom.ButtonStepBig = 16F;
this.pfcFrontOffsetBottom.ButtonStepFloat = 1F;
this.pfcFrontOffsetBottom.ButtonStepSmall = 0.1F;
this.pfcFrontOffsetBottom.ButtonStepsUseModifierKeys = true;
this.pfcFrontOffsetBottom.DefaultValue = 0F;
this.pfcFrontOffsetBottom.Field1 = "offsetx_bottom";
this.pfcFrontOffsetBottom.Field2 = "offsety_bottom";
@ -898,7 +924,10 @@ namespace CodeImp.DoomBuilder.Windows
this.frontsector.AllowNegative = false;
this.frontsector.AllowRelative = false;
this.frontsector.ButtonStep = 1;
this.frontsector.ButtonStepBig = 10F;
this.frontsector.ButtonStepFloat = 1F;
this.frontsector.ButtonStepSmall = 0.1F;
this.frontsector.ButtonStepsUseModifierKeys = false;
this.frontsector.ButtonStepsWrapAround = false;
this.frontsector.Location = new System.Drawing.Point(96, 19);
this.frontsector.Name = "frontsector";
@ -922,7 +951,10 @@ namespace CodeImp.DoomBuilder.Windows
this.lightFront.AllowNegative = true;
this.lightFront.AllowRelative = true;
this.lightFront.ButtonStep = 16;
this.lightFront.ButtonStepBig = 32F;
this.lightFront.ButtonStepFloat = 1F;
this.lightFront.ButtonStepSmall = 1F;
this.lightFront.ButtonStepsUseModifierKeys = true;
this.lightFront.ButtonStepsWrapAround = false;
this.lightFront.Location = new System.Drawing.Point(96, 49);
this.lightFront.Name = "lightFront";
@ -1045,7 +1077,10 @@ namespace CodeImp.DoomBuilder.Windows
this.backsector.AllowNegative = false;
this.backsector.AllowRelative = false;
this.backsector.ButtonStep = 1;
this.backsector.ButtonStepBig = 10F;
this.backsector.ButtonStepFloat = 1F;
this.backsector.ButtonStepSmall = 0.1F;
this.backsector.ButtonStepsUseModifierKeys = false;
this.backsector.ButtonStepsWrapAround = false;
this.backsector.Location = new System.Drawing.Point(96, 19);
this.backsector.Name = "backsector";
@ -1068,8 +1103,11 @@ namespace CodeImp.DoomBuilder.Windows
this.lightBack.AllowDecimal = false;
this.lightBack.AllowNegative = true;
this.lightBack.AllowRelative = true;
this.lightBack.ButtonStep = 16;
this.lightBack.ButtonStep = 1;
this.lightBack.ButtonStepBig = 16F;
this.lightBack.ButtonStepFloat = 1F;
this.lightBack.ButtonStepSmall = 1F;
this.lightBack.ButtonStepsUseModifierKeys = true;
this.lightBack.ButtonStepsWrapAround = false;
this.lightBack.Location = new System.Drawing.Point(96, 49);
this.lightBack.Name = "lightBack";
@ -1175,7 +1213,10 @@ namespace CodeImp.DoomBuilder.Windows
this.pfcBackScaleTop.AllowDecimal = true;
this.pfcBackScaleTop.AllowValueLinking = true;
this.pfcBackScaleTop.ButtonStep = 1;
this.pfcBackScaleTop.ButtonStepBig = 1F;
this.pfcBackScaleTop.ButtonStepFloat = 0.1F;
this.pfcBackScaleTop.ButtonStepSmall = 0.01F;
this.pfcBackScaleTop.ButtonStepsUseModifierKeys = true;
this.pfcBackScaleTop.DefaultValue = 1F;
this.pfcBackScaleTop.Field1 = "scalex_top";
this.pfcBackScaleTop.Field2 = "scaley_top";
@ -1191,7 +1232,10 @@ namespace CodeImp.DoomBuilder.Windows
this.pfcBackScaleBottom.AllowDecimal = true;
this.pfcBackScaleBottom.AllowValueLinking = true;
this.pfcBackScaleBottom.ButtonStep = 1;
this.pfcBackScaleBottom.ButtonStepBig = 1F;
this.pfcBackScaleBottom.ButtonStepFloat = 0.1F;
this.pfcBackScaleBottom.ButtonStepSmall = 0.01F;
this.pfcBackScaleBottom.ButtonStepsUseModifierKeys = true;
this.pfcBackScaleBottom.DefaultValue = 1F;
this.pfcBackScaleBottom.Field1 = "scalex_bottom";
this.pfcBackScaleBottom.Field2 = "scaley_bottom";
@ -1207,7 +1251,10 @@ namespace CodeImp.DoomBuilder.Windows
this.pfcBackScaleMid.AllowDecimal = true;
this.pfcBackScaleMid.AllowValueLinking = true;
this.pfcBackScaleMid.ButtonStep = 1;
this.pfcBackScaleMid.ButtonStepBig = 1F;
this.pfcBackScaleMid.ButtonStepFloat = 0.1F;
this.pfcBackScaleMid.ButtonStepSmall = 0.01F;
this.pfcBackScaleMid.ButtonStepsUseModifierKeys = true;
this.pfcBackScaleMid.DefaultValue = 1F;
this.pfcBackScaleMid.Field1 = "scalex_mid";
this.pfcBackScaleMid.Field2 = "scaley_mid";
@ -1280,7 +1327,10 @@ namespace CodeImp.DoomBuilder.Windows
this.pfcBackOffsetTop.AllowDecimal = true;
this.pfcBackOffsetTop.AllowValueLinking = false;
this.pfcBackOffsetTop.ButtonStep = 1;
this.pfcBackOffsetTop.ButtonStepFloat = 16F;
this.pfcBackOffsetTop.ButtonStepBig = 16F;
this.pfcBackOffsetTop.ButtonStepFloat = 1F;
this.pfcBackOffsetTop.ButtonStepSmall = 0.1F;
this.pfcBackOffsetTop.ButtonStepsUseModifierKeys = true;
this.pfcBackOffsetTop.DefaultValue = 0F;
this.pfcBackOffsetTop.Field1 = "offsetx_top";
this.pfcBackOffsetTop.Field2 = "offsety_top";
@ -1296,7 +1346,10 @@ namespace CodeImp.DoomBuilder.Windows
this.pfcBackOffsetMid.AllowDecimal = true;
this.pfcBackOffsetMid.AllowValueLinking = false;
this.pfcBackOffsetMid.ButtonStep = 1;
this.pfcBackOffsetMid.ButtonStepFloat = 16F;
this.pfcBackOffsetMid.ButtonStepBig = 16F;
this.pfcBackOffsetMid.ButtonStepFloat = 1F;
this.pfcBackOffsetMid.ButtonStepSmall = 0.1F;
this.pfcBackOffsetMid.ButtonStepsUseModifierKeys = true;
this.pfcBackOffsetMid.DefaultValue = 0F;
this.pfcBackOffsetMid.Field1 = "offsetx_mid";
this.pfcBackOffsetMid.Field2 = "offsety_mid";
@ -1312,7 +1365,10 @@ namespace CodeImp.DoomBuilder.Windows
this.pfcBackOffsetBottom.AllowDecimal = true;
this.pfcBackOffsetBottom.AllowValueLinking = false;
this.pfcBackOffsetBottom.ButtonStep = 1;
this.pfcBackOffsetBottom.ButtonStepFloat = 16F;
this.pfcBackOffsetBottom.ButtonStepBig = 16F;
this.pfcBackOffsetBottom.ButtonStepFloat = 1F;
this.pfcBackOffsetBottom.ButtonStepSmall = 0.1F;
this.pfcBackOffsetBottom.ButtonStepsUseModifierKeys = true;
this.pfcBackOffsetBottom.DefaultValue = 0F;
this.pfcBackOffsetBottom.Field1 = "offsetx_bottom";
this.pfcBackOffsetBottom.Field2 = "offsety_bottom";
@ -1325,7 +1381,10 @@ namespace CodeImp.DoomBuilder.Windows
//
// backTextureOffset
//
this.backTextureOffset.ButtonStep = 16;
this.backTextureOffset.ButtonStep = 1;
this.backTextureOffset.ButtonStepBig = 16F;
this.backTextureOffset.ButtonStepSmall = 0.1F;
this.backTextureOffset.ButtonStepsUseModifierKeys = true;
this.backTextureOffset.DefaultValue = 0;
this.backTextureOffset.Location = new System.Drawing.Point(96, 17);
this.backTextureOffset.Name = "backTextureOffset";

View file

@ -155,7 +155,7 @@
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj0yLjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAADM
CAAAAk1TRnQBSQFMAgEBAgEAAZgBAAGYAQABEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
CAAAAk1TRnQBSQFMAgEBAgEAAagBAAGoAQABEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA

View file

@ -214,7 +214,10 @@ namespace CodeImp.DoomBuilder.Windows
this.heightoffset.AllowNegative = true;
this.heightoffset.AllowRelative = false;
this.heightoffset.ButtonStep = 8;
this.heightoffset.ButtonStepBig = 16F;
this.heightoffset.ButtonStepFloat = 1F;
this.heightoffset.ButtonStepSmall = 1F;
this.heightoffset.ButtonStepsUseModifierKeys = true;
this.heightoffset.ButtonStepsWrapAround = false;
this.heightoffset.Location = new System.Drawing.Point(99, 95);
this.heightoffset.Name = "heightoffset";
@ -229,7 +232,10 @@ namespace CodeImp.DoomBuilder.Windows
this.brightness.AllowNegative = true;
this.brightness.AllowRelative = true;
this.brightness.ButtonStep = 8;
this.brightness.ButtonStepBig = 16F;
this.brightness.ButtonStepFloat = 1F;
this.brightness.ButtonStepSmall = 1F;
this.brightness.ButtonStepsUseModifierKeys = true;
this.brightness.ButtonStepsWrapAround = false;
this.brightness.Location = new System.Drawing.Point(99, 154);
this.brightness.Name = "brightness";
@ -244,7 +250,10 @@ namespace CodeImp.DoomBuilder.Windows
this.ceilingheight.AllowNegative = true;
this.ceilingheight.AllowRelative = true;
this.ceilingheight.ButtonStep = 8;
this.ceilingheight.ButtonStepBig = 16F;
this.ceilingheight.ButtonStepFloat = 1F;
this.ceilingheight.ButtonStepSmall = 1F;
this.ceilingheight.ButtonStepsUseModifierKeys = true;
this.ceilingheight.ButtonStepsWrapAround = false;
this.ceilingheight.Location = new System.Drawing.Point(99, 35);
this.ceilingheight.Name = "ceilingheight";
@ -306,7 +315,10 @@ namespace CodeImp.DoomBuilder.Windows
this.floorheight.AllowNegative = true;
this.floorheight.AllowRelative = true;
this.floorheight.ButtonStep = 8;
this.floorheight.ButtonStepBig = 16F;
this.floorheight.ButtonStepFloat = 1F;
this.floorheight.ButtonStepSmall = 1F;
this.floorheight.ButtonStepsUseModifierKeys = true;
this.floorheight.ButtonStepsWrapAround = false;
this.floorheight.Location = new System.Drawing.Point(99, 65);
this.floorheight.Name = "floorheight";

View file

@ -135,9 +135,6 @@
<metadata name="label8.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label8.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label9.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
@ -168,7 +165,4 @@
<metadata name="flatSelectorControl1.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="tooltip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
</root>

View file

@ -213,7 +213,10 @@
this.brightness.AllowNegative = false;
this.brightness.AllowRelative = true;
this.brightness.ButtonStep = 8;
this.brightness.ButtonStepBig = 16F;
this.brightness.ButtonStepFloat = 1F;
this.brightness.ButtonStepSmall = 1F;
this.brightness.ButtonStepsUseModifierKeys = true;
this.brightness.ButtonStepsWrapAround = false;
this.brightness.Location = new System.Drawing.Point(125, 84);
this.brightness.Name = "brightness";
@ -228,7 +231,10 @@
this.desaturation.AllowNegative = false;
this.desaturation.AllowRelative = false;
this.desaturation.ButtonStep = 1;
this.desaturation.ButtonStepBig = 0.25F;
this.desaturation.ButtonStepFloat = 0.1F;
this.desaturation.ButtonStepSmall = 0.01F;
this.desaturation.ButtonStepsUseModifierKeys = true;
this.desaturation.ButtonStepsWrapAround = false;
this.desaturation.Location = new System.Drawing.Point(125, 142);
this.desaturation.Name = "desaturation";
@ -278,7 +284,10 @@
this.gravity.AllowNegative = true;
this.gravity.AllowRelative = true;
this.gravity.ButtonStep = 1;
this.gravity.ButtonStepBig = 1F;
this.gravity.ButtonStepFloat = 0.1F;
this.gravity.ButtonStepSmall = 0.01F;
this.gravity.ButtonStepsUseModifierKeys = true;
this.gravity.ButtonStepsWrapAround = false;
this.gravity.Location = new System.Drawing.Point(125, 112);
this.gravity.Name = "gravity";
@ -383,7 +392,10 @@
this.heightoffset.AllowNegative = true;
this.heightoffset.AllowRelative = false;
this.heightoffset.ButtonStep = 8;
this.heightoffset.ButtonStepBig = 16F;
this.heightoffset.ButtonStepFloat = 1F;
this.heightoffset.ButtonStepSmall = 1F;
this.heightoffset.ButtonStepsUseModifierKeys = true;
this.heightoffset.ButtonStepsWrapAround = false;
this.heightoffset.Location = new System.Drawing.Point(89, 79);
this.heightoffset.Name = "heightoffset";
@ -398,7 +410,10 @@
this.ceilingheight.AllowNegative = true;
this.ceilingheight.AllowRelative = true;
this.ceilingheight.ButtonStep = 8;
this.ceilingheight.ButtonStepBig = 16F;
this.ceilingheight.ButtonStepFloat = 1F;
this.ceilingheight.ButtonStepSmall = 1F;
this.ceilingheight.ButtonStepsUseModifierKeys = true;
this.ceilingheight.ButtonStepsWrapAround = false;
this.ceilingheight.Location = new System.Drawing.Point(89, 19);
this.ceilingheight.Name = "ceilingheight";
@ -431,7 +446,10 @@
this.floorheight.AllowNegative = true;
this.floorheight.AllowRelative = true;
this.floorheight.ButtonStep = 8;
this.floorheight.ButtonStepBig = 16F;
this.floorheight.ButtonStepFloat = 1F;
this.floorheight.ButtonStepSmall = 1F;
this.floorheight.ButtonStepsUseModifierKeys = true;
this.floorheight.ButtonStepsWrapAround = false;
this.floorheight.Location = new System.Drawing.Point(89, 49);
this.floorheight.Name = "floorheight";
@ -566,7 +584,7 @@
//
// floorAngleControl
//
this.floorAngleControl.Angle = 0;
this.floorAngleControl.Angle = -270;
this.floorAngleControl.AngleOffset = 90;
this.floorAngleControl.Location = new System.Drawing.Point(6, 132);
this.floorAngleControl.Name = "floorAngleControl";
@ -600,7 +618,10 @@
this.floorAlpha.AllowNegative = false;
this.floorAlpha.AllowRelative = false;
this.floorAlpha.ButtonStep = 1;
this.floorAlpha.ButtonStepBig = 0.25F;
this.floorAlpha.ButtonStepFloat = 0.1F;
this.floorAlpha.ButtonStepSmall = 0.01F;
this.floorAlpha.ButtonStepsUseModifierKeys = true;
this.floorAlpha.ButtonStepsWrapAround = false;
this.floorAlpha.Location = new System.Drawing.Point(113, 173);
this.floorAlpha.Name = "floorAlpha";
@ -625,7 +646,10 @@
this.floorRotation.AllowNegative = true;
this.floorRotation.AllowRelative = true;
this.floorRotation.ButtonStep = 5;
this.floorRotation.ButtonStepBig = 15F;
this.floorRotation.ButtonStepFloat = 1F;
this.floorRotation.ButtonStepSmall = 0.1F;
this.floorRotation.ButtonStepsUseModifierKeys = true;
this.floorRotation.ButtonStepsWrapAround = false;
this.floorRotation.Location = new System.Drawing.Point(113, 143);
this.floorRotation.Name = "floorRotation";
@ -662,7 +686,10 @@
this.floorBrightness.AllowNegative = true;
this.floorBrightness.AllowRelative = true;
this.floorBrightness.ButtonStep = 16;
this.floorBrightness.ButtonStepBig = 32F;
this.floorBrightness.ButtonStepFloat = 1F;
this.floorBrightness.ButtonStepSmall = 1F;
this.floorBrightness.ButtonStepsUseModifierKeys = true;
this.floorBrightness.ButtonStepsWrapAround = false;
this.floorBrightness.Location = new System.Drawing.Point(113, 113);
this.floorBrightness.Name = "floorBrightness";
@ -686,7 +713,10 @@
this.floorScale.AllowDecimal = true;
this.floorScale.AllowValueLinking = true;
this.floorScale.ButtonStep = 1;
this.floorScale.ButtonStepBig = 1F;
this.floorScale.ButtonStepFloat = 0.1F;
this.floorScale.ButtonStepSmall = 0.01F;
this.floorScale.ButtonStepsUseModifierKeys = true;
this.floorScale.DefaultValue = 1F;
this.floorScale.Field1 = "xscalefloor";
this.floorScale.Field2 = "yscalefloor";
@ -702,7 +732,10 @@
this.floorOffsets.AllowDecimal = true;
this.floorOffsets.AllowValueLinking = false;
this.floorOffsets.ButtonStep = 1;
this.floorOffsets.ButtonStepBig = 32F;
this.floorOffsets.ButtonStepFloat = 16F;
this.floorOffsets.ButtonStepSmall = 1F;
this.floorOffsets.ButtonStepsUseModifierKeys = true;
this.floorOffsets.DefaultValue = 0F;
this.floorOffsets.Field1 = "xpanningfloor";
this.floorOffsets.Field2 = "ypanningfloor";
@ -785,7 +818,7 @@
//
// ceilAngleControl
//
this.ceilAngleControl.Angle = 0;
this.ceilAngleControl.Angle = -270;
this.ceilAngleControl.AngleOffset = 90;
this.ceilAngleControl.Location = new System.Drawing.Point(6, 132);
this.ceilAngleControl.Name = "ceilAngleControl";
@ -819,7 +852,10 @@
this.ceilAlpha.AllowNegative = false;
this.ceilAlpha.AllowRelative = false;
this.ceilAlpha.ButtonStep = 1;
this.ceilAlpha.ButtonStepBig = 0.25F;
this.ceilAlpha.ButtonStepFloat = 0.1F;
this.ceilAlpha.ButtonStepSmall = 0.01F;
this.ceilAlpha.ButtonStepsUseModifierKeys = true;
this.ceilAlpha.ButtonStepsWrapAround = false;
this.ceilAlpha.Location = new System.Drawing.Point(113, 173);
this.ceilAlpha.Name = "ceilAlpha";
@ -844,8 +880,11 @@
this.ceilRotation.AllowNegative = true;
this.ceilRotation.AllowRelative = true;
this.ceilRotation.ButtonStep = 5;
this.ceilRotation.ButtonStepBig = 15F;
this.ceilRotation.ButtonStepFloat = 1F;
this.ceilRotation.ButtonStepsWrapAround = false;
this.ceilRotation.ButtonStepSmall = 0.1F;
this.ceilRotation.ButtonStepsUseModifierKeys = true;
this.ceilRotation.ButtonStepsWrapAround = true;
this.ceilRotation.Location = new System.Drawing.Point(113, 143);
this.ceilRotation.Name = "ceilRotation";
this.ceilRotation.Size = new System.Drawing.Size(62, 24);
@ -882,7 +921,10 @@
this.ceilBrightness.AllowNegative = true;
this.ceilBrightness.AllowRelative = true;
this.ceilBrightness.ButtonStep = 16;
this.ceilBrightness.ButtonStepBig = 32F;
this.ceilBrightness.ButtonStepFloat = 1F;
this.ceilBrightness.ButtonStepSmall = 1F;
this.ceilBrightness.ButtonStepsUseModifierKeys = true;
this.ceilBrightness.ButtonStepsWrapAround = false;
this.ceilBrightness.Location = new System.Drawing.Point(113, 113);
this.ceilBrightness.Name = "ceilBrightness";
@ -906,7 +948,10 @@
this.ceilScale.AllowDecimal = true;
this.ceilScale.AllowValueLinking = true;
this.ceilScale.ButtonStep = 1;
this.ceilScale.ButtonStepBig = 1F;
this.ceilScale.ButtonStepFloat = 0.1F;
this.ceilScale.ButtonStepSmall = 0.01F;
this.ceilScale.ButtonStepsUseModifierKeys = true;
this.ceilScale.DefaultValue = 1F;
this.ceilScale.Field1 = "xscaleceiling";
this.ceilScale.Field2 = "yscaleceiling";
@ -922,7 +967,10 @@
this.ceilOffsets.AllowDecimal = true;
this.ceilOffsets.AllowValueLinking = false;
this.ceilOffsets.ButtonStep = 1;
this.ceilOffsets.ButtonStepBig = 32F;
this.ceilOffsets.ButtonStepFloat = 16F;
this.ceilOffsets.ButtonStepSmall = 1F;
this.ceilOffsets.ButtonStepsUseModifierKeys = true;
this.ceilOffsets.DefaultValue = 0F;
this.ceilOffsets.Field1 = "xpanningceiling";
this.ceilOffsets.Field2 = "ypanningceiling";

View file

@ -138,12 +138,36 @@
<metadata name="label8.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label14.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label9.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label13.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label2.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label8.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="groupfloorceiling.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label15.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label6.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label5.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label15.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="tooltip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
@ -162,4 +186,10 @@
<metadata name="fieldslist.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="fieldslist.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="tooltip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
</root>

View file

@ -136,7 +136,10 @@ namespace CodeImp.DoomBuilder.Windows
this.posX.AllowNegative = true;
this.posX.AllowRelative = true;
this.posX.ButtonStep = 8;
this.posX.ButtonStepBig = 16F;
this.posX.ButtonStepFloat = 1F;
this.posX.ButtonStepSmall = 1F;
this.posX.ButtonStepsUseModifierKeys = true;
this.posX.ButtonStepsWrapAround = false;
this.posX.Location = new System.Drawing.Point(61, 16);
this.posX.Name = "posX";
@ -151,7 +154,10 @@ namespace CodeImp.DoomBuilder.Windows
this.posY.AllowNegative = true;
this.posY.AllowRelative = true;
this.posY.ButtonStep = 8;
this.posY.ButtonStepBig = 16F;
this.posY.ButtonStepFloat = 1F;
this.posY.ButtonStepSmall = 1F;
this.posY.ButtonStepsUseModifierKeys = true;
this.posY.ButtonStepsWrapAround = false;
this.posY.Location = new System.Drawing.Point(61, 46);
this.posY.Name = "posY";
@ -166,7 +172,10 @@ namespace CodeImp.DoomBuilder.Windows
this.posZ.AllowNegative = true;
this.posZ.AllowRelative = true;
this.posZ.ButtonStep = 8;
this.posZ.ButtonStepBig = 16F;
this.posZ.ButtonStepFloat = 1F;
this.posZ.ButtonStepSmall = 1F;
this.posZ.ButtonStepsUseModifierKeys = true;
this.posZ.ButtonStepsWrapAround = false;
this.posZ.Location = new System.Drawing.Point(61, 76);
this.posZ.Name = "posZ";
@ -242,8 +251,11 @@ namespace CodeImp.DoomBuilder.Windows
this.angle.AllowDecimal = false;
this.angle.AllowNegative = true;
this.angle.AllowRelative = true;
this.angle.ButtonStep = 1;
this.angle.ButtonStep = 5;
this.angle.ButtonStepBig = 15F;
this.angle.ButtonStepFloat = 1F;
this.angle.ButtonStepSmall = 1F;
this.angle.ButtonStepsUseModifierKeys = true;
this.angle.ButtonStepsWrapAround = false;
this.angle.Location = new System.Drawing.Point(13, 16);
this.angle.Name = "angle";

View file

@ -203,8 +203,11 @@
this.roll.AllowDecimal = false;
this.roll.AllowNegative = false;
this.roll.AllowRelative = true;
this.roll.ButtonStep = 1;
this.roll.ButtonStep = 5;
this.roll.ButtonStepBig = 15F;
this.roll.ButtonStepFloat = 1F;
this.roll.ButtonStepSmall = 1F;
this.roll.ButtonStepsUseModifierKeys = true;
this.roll.ButtonStepsWrapAround = false;
this.roll.Location = new System.Drawing.Point(55, 66);
this.roll.Name = "roll";
@ -227,8 +230,11 @@
this.pitch.AllowDecimal = false;
this.pitch.AllowNegative = false;
this.pitch.AllowRelative = true;
this.pitch.ButtonStep = 1;
this.pitch.ButtonStep = 5;
this.pitch.ButtonStepBig = 15F;
this.pitch.ButtonStepFloat = 1F;
this.pitch.ButtonStepSmall = 1F;
this.pitch.ButtonStepsUseModifierKeys = true;
this.pitch.ButtonStepsWrapAround = false;
this.pitch.Location = new System.Drawing.Point(55, 41);
this.pitch.Name = "pitch";
@ -251,8 +257,11 @@
this.angle.AllowDecimal = false;
this.angle.AllowNegative = true;
this.angle.AllowRelative = true;
this.angle.ButtonStep = 1;
this.angle.ButtonStep = 5;
this.angle.ButtonStepBig = 15F;
this.angle.ButtonStepFloat = 1F;
this.angle.ButtonStepSmall = 1F;
this.angle.ButtonStepsUseModifierKeys = true;
this.angle.ButtonStepsWrapAround = false;
this.angle.Location = new System.Drawing.Point(55, 16);
this.angle.Name = "angle";
@ -473,7 +482,10 @@
this.posX.AllowNegative = true;
this.posX.AllowRelative = true;
this.posX.ButtonStep = 8;
this.posX.ButtonStepBig = 8F;
this.posX.ButtonStepFloat = 1F;
this.posX.ButtonStepSmall = 0.1F;
this.posX.ButtonStepsUseModifierKeys = true;
this.posX.ButtonStepsWrapAround = false;
this.posX.Location = new System.Drawing.Point(32, 16);
this.posX.Name = "posX";
@ -488,7 +500,10 @@
this.posY.AllowNegative = true;
this.posY.AllowRelative = true;
this.posY.ButtonStep = 8;
this.posY.ButtonStepBig = 8F;
this.posY.ButtonStepFloat = 1F;
this.posY.ButtonStepSmall = 0.1F;
this.posY.ButtonStepsUseModifierKeys = true;
this.posY.ButtonStepsWrapAround = false;
this.posY.Location = new System.Drawing.Point(32, 41);
this.posY.Name = "posY";
@ -503,7 +518,10 @@
this.posZ.AllowNegative = true;
this.posZ.AllowRelative = true;
this.posZ.ButtonStep = 8;
this.posZ.ButtonStepBig = 8F;
this.posZ.ButtonStepFloat = 1F;
this.posZ.ButtonStepSmall = 0.1F;
this.posZ.ButtonStepsUseModifierKeys = true;
this.posZ.ButtonStepsWrapAround = false;
this.posZ.Location = new System.Drawing.Point(32, 66);
this.posZ.Name = "posZ";
@ -559,7 +577,10 @@
this.conversationID.AllowNegative = false;
this.conversationID.AllowRelative = false;
this.conversationID.ButtonStep = 1;
this.conversationID.ButtonStepBig = 8F;
this.conversationID.ButtonStepFloat = 1F;
this.conversationID.ButtonStepSmall = 1F;
this.conversationID.ButtonStepsUseModifierKeys = false;
this.conversationID.ButtonStepsWrapAround = false;
this.conversationID.Location = new System.Drawing.Point(108, 119);
this.conversationID.Name = "conversationID";
@ -582,7 +603,10 @@
this.health.AllowNegative = true;
this.health.AllowRelative = false;
this.health.ButtonStep = 8;
this.health.ButtonStepBig = 16F;
this.health.ButtonStepFloat = 0.1F;
this.health.ButtonStepSmall = 1F;
this.health.ButtonStepsUseModifierKeys = true;
this.health.ButtonStepsWrapAround = false;
this.health.Location = new System.Drawing.Point(108, 87);
this.health.Name = "health";
@ -605,7 +629,10 @@
this.score.AllowNegative = false;
this.score.AllowRelative = false;
this.score.ButtonStep = 8;
this.score.ButtonStepBig = 16F;
this.score.ButtonStepFloat = 0.1F;
this.score.ButtonStepSmall = 1F;
this.score.ButtonStepsUseModifierKeys = true;
this.score.ButtonStepsWrapAround = false;
this.score.Location = new System.Drawing.Point(108, 55);
this.score.Name = "score";
@ -628,7 +655,10 @@
this.gravity.AllowNegative = true;
this.gravity.AllowRelative = false;
this.gravity.ButtonStep = 8;
this.gravity.ButtonStepBig = 0.25F;
this.gravity.ButtonStepFloat = 0.1F;
this.gravity.ButtonStepSmall = 0.01F;
this.gravity.ButtonStepsUseModifierKeys = true;
this.gravity.ButtonStepsWrapAround = false;
this.gravity.Location = new System.Drawing.Point(108, 23);
this.gravity.Name = "gravity";
@ -664,6 +694,9 @@
// scale
//
this.scale.ButtonStep = 0.1F;
this.scale.ButtonStepBig = 0.25F;
this.scale.ButtonStepSmall = 0.01F;
this.scale.ButtonStepsUseModifierKeys = true;
this.scale.DefaultValue = 1F;
this.scale.Location = new System.Drawing.Point(89, 22);
this.scale.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
@ -688,7 +721,10 @@
this.alpha.AllowNegative = true;
this.alpha.AllowRelative = false;
this.alpha.ButtonStep = 8;
this.alpha.ButtonStepBig = 0.25F;
this.alpha.ButtonStepFloat = 0.1F;
this.alpha.ButtonStepSmall = 0.01F;
this.alpha.ButtonStepsUseModifierKeys = true;
this.alpha.ButtonStepsWrapAround = false;
this.alpha.Location = new System.Drawing.Point(91, 85);
this.alpha.Name = "alpha";

View file

@ -120,4 +120,7 @@
<metadata name="tooltip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<metadata name="tooltip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
</root>

View file

@ -125,8 +125,11 @@ namespace CodeImp.DoomBuilder.Windows
this.zceiling.AllowDecimal = false;
this.zceiling.AllowNegative = true;
this.zceiling.AllowRelative = true;
this.zceiling.ButtonStep = 1;
this.zceiling.ButtonStep = 8;
this.zceiling.ButtonStepBig = 16F;
this.zceiling.ButtonStepFloat = 1F;
this.zceiling.ButtonStepSmall = 1F;
this.zceiling.ButtonStepsUseModifierKeys = true;
this.zceiling.ButtonStepsWrapAround = false;
this.zceiling.Location = new System.Drawing.Point(188, 0);
this.zceiling.Name = "zceiling";
@ -140,8 +143,11 @@ namespace CodeImp.DoomBuilder.Windows
this.zfloor.AllowDecimal = false;
this.zfloor.AllowNegative = true;
this.zfloor.AllowRelative = true;
this.zfloor.ButtonStep = 1;
this.zfloor.ButtonStep = 8;
this.zfloor.ButtonStepBig = 16F;
this.zfloor.ButtonStepFloat = 1F;
this.zfloor.ButtonStepSmall = 1F;
this.zfloor.ButtonStepsUseModifierKeys = true;
this.zfloor.ButtonStepsWrapAround = false;
this.zfloor.Location = new System.Drawing.Point(188, 32);
this.zfloor.Name = "zfloor";
@ -174,7 +180,10 @@ namespace CodeImp.DoomBuilder.Windows
this.positiony.AllowNegative = true;
this.positiony.AllowRelative = true;
this.positiony.ButtonStep = 1;
this.positiony.ButtonStepBig = 8F;
this.positiony.ButtonStepFloat = 1F;
this.positiony.ButtonStepSmall = 1F;
this.positiony.ButtonStepsUseModifierKeys = true;
this.positiony.ButtonStepsWrapAround = false;
this.positiony.Location = new System.Drawing.Point(236, 34);
this.positiony.Name = "positiony";
@ -189,7 +198,10 @@ namespace CodeImp.DoomBuilder.Windows
this.positionx.AllowNegative = true;
this.positionx.AllowRelative = true;
this.positionx.ButtonStep = 1;
this.positionx.ButtonStepBig = 8F;
this.positionx.ButtonStepFloat = 1F;
this.positionx.ButtonStepSmall = 1F;
this.positionx.ButtonStepsUseModifierKeys = true;
this.positionx.ButtonStepsWrapAround = false;
this.positionx.Location = new System.Drawing.Point(68, 34);
this.positionx.Name = "positionx";

View file

@ -111,6 +111,10 @@ namespace CodeImp.DoomBuilder.Windows
{
positionx.AllowDecimal = true;
positiony.AllowDecimal = true;
positionx.ButtonStepSmall = 0.1f;
positiony.ButtonStepSmall = 0.1f;
positionx.UpdateButtonsTooltip();
positiony.UpdateButtonsTooltip();
//mxd
zceiling.AllowDecimal = true;

View file

@ -141,6 +141,12 @@
<metadata name="label6.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label2.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="label3.GenerateMember" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</metadata>
<metadata name="tabs.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
@ -150,4 +156,7 @@
<metadata name="fieldslist.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="fieldslist.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
</root>