CameraPropertiesForm.Designer.cs 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. namespace Max2Babylon
  2. {
  3. partial class CameraPropertiesForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.groupBox1 = new System.Windows.Forms.GroupBox();
  29. this.chkGravity = new System.Windows.Forms.CheckBox();
  30. this.chkCollisions = new System.Windows.Forms.CheckBox();
  31. this.butOK = new System.Windows.Forms.Button();
  32. this.butCancel = new System.Windows.Forms.Button();
  33. this.groupBox2 = new System.Windows.Forms.GroupBox();
  34. this.label2 = new System.Windows.Forms.Label();
  35. this.nupInertia = new System.Windows.Forms.NumericUpDown();
  36. this.label1 = new System.Windows.Forms.Label();
  37. this.nupSpeed = new System.Windows.Forms.NumericUpDown();
  38. this.label3 = new System.Windows.Forms.Label();
  39. this.ellipsoidControl = new Max2Babylon.Vector3Control();
  40. this.groupBox1.SuspendLayout();
  41. this.groupBox2.SuspendLayout();
  42. ((System.ComponentModel.ISupportInitialize)(this.nupInertia)).BeginInit();
  43. ((System.ComponentModel.ISupportInitialize)(this.nupSpeed)).BeginInit();
  44. this.SuspendLayout();
  45. //
  46. // groupBox1
  47. //
  48. this.groupBox1.Controls.Add(this.ellipsoidControl);
  49. this.groupBox1.Controls.Add(this.label3);
  50. this.groupBox1.Controls.Add(this.chkGravity);
  51. this.groupBox1.Controls.Add(this.chkCollisions);
  52. this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  53. this.groupBox1.Location = new System.Drawing.Point(12, 12);
  54. this.groupBox1.Name = "groupBox1";
  55. this.groupBox1.Size = new System.Drawing.Size(319, 138);
  56. this.groupBox1.TabIndex = 0;
  57. this.groupBox1.TabStop = false;
  58. this.groupBox1.Text = "Collisions";
  59. //
  60. // chkGravity
  61. //
  62. this.chkGravity.AutoSize = true;
  63. this.chkGravity.Location = new System.Drawing.Point(21, 51);
  64. this.chkGravity.Name = "chkGravity";
  65. this.chkGravity.Size = new System.Drawing.Size(86, 17);
  66. this.chkGravity.TabIndex = 1;
  67. this.chkGravity.Text = "Apply gravity";
  68. this.chkGravity.ThreeState = true;
  69. this.chkGravity.UseVisualStyleBackColor = true;
  70. //
  71. // chkCollisions
  72. //
  73. this.chkCollisions.AutoSize = true;
  74. this.chkCollisions.Location = new System.Drawing.Point(21, 28);
  75. this.chkCollisions.Name = "chkCollisions";
  76. this.chkCollisions.Size = new System.Drawing.Size(102, 17);
  77. this.chkCollisions.TabIndex = 0;
  78. this.chkCollisions.Text = "Check collisions";
  79. this.chkCollisions.ThreeState = true;
  80. this.chkCollisions.UseVisualStyleBackColor = true;
  81. //
  82. // butOK
  83. //
  84. this.butOK.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  85. this.butOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  86. this.butOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  87. this.butOK.Location = new System.Drawing.Point(93, 304);
  88. this.butOK.Name = "butOK";
  89. this.butOK.Size = new System.Drawing.Size(75, 23);
  90. this.butOK.TabIndex = 1;
  91. this.butOK.Text = "OK";
  92. this.butOK.UseVisualStyleBackColor = true;
  93. this.butOK.Click += new System.EventHandler(this.butOK_Click);
  94. //
  95. // butCancel
  96. //
  97. this.butCancel.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  98. this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  99. this.butCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  100. this.butCancel.Location = new System.Drawing.Point(174, 304);
  101. this.butCancel.Name = "butCancel";
  102. this.butCancel.Size = new System.Drawing.Size(75, 23);
  103. this.butCancel.TabIndex = 2;
  104. this.butCancel.Text = "Cancel";
  105. this.butCancel.UseVisualStyleBackColor = true;
  106. //
  107. // groupBox2
  108. //
  109. this.groupBox2.Controls.Add(this.label2);
  110. this.groupBox2.Controls.Add(this.nupInertia);
  111. this.groupBox2.Controls.Add(this.label1);
  112. this.groupBox2.Controls.Add(this.nupSpeed);
  113. this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  114. this.groupBox2.Location = new System.Drawing.Point(12, 156);
  115. this.groupBox2.Name = "groupBox2";
  116. this.groupBox2.Size = new System.Drawing.Size(319, 140);
  117. this.groupBox2.TabIndex = 3;
  118. this.groupBox2.TabStop = false;
  119. this.groupBox2.Text = "Control";
  120. //
  121. // label2
  122. //
  123. this.label2.AutoSize = true;
  124. this.label2.Location = new System.Drawing.Point(21, 81);
  125. this.label2.Name = "label2";
  126. this.label2.Size = new System.Drawing.Size(36, 13);
  127. this.label2.TabIndex = 3;
  128. this.label2.Text = "Inertia";
  129. //
  130. // nupInertia
  131. //
  132. this.nupInertia.DecimalPlaces = 2;
  133. this.nupInertia.Location = new System.Drawing.Point(24, 103);
  134. this.nupInertia.Name = "nupInertia";
  135. this.nupInertia.Size = new System.Drawing.Size(120, 20);
  136. this.nupInertia.TabIndex = 2;
  137. this.nupInertia.Value = new decimal(new int[] {
  138. 9,
  139. 0,
  140. 0,
  141. 65536});
  142. //
  143. // label1
  144. //
  145. this.label1.AutoSize = true;
  146. this.label1.Location = new System.Drawing.Point(21, 28);
  147. this.label1.Name = "label1";
  148. this.label1.Size = new System.Drawing.Size(41, 13);
  149. this.label1.TabIndex = 1;
  150. this.label1.Text = "Speed:";
  151. //
  152. // nupSpeed
  153. //
  154. this.nupSpeed.DecimalPlaces = 1;
  155. this.nupSpeed.Location = new System.Drawing.Point(24, 50);
  156. this.nupSpeed.Name = "nupSpeed";
  157. this.nupSpeed.Size = new System.Drawing.Size(120, 20);
  158. this.nupSpeed.TabIndex = 0;
  159. this.nupSpeed.Value = new decimal(new int[] {
  160. 1,
  161. 0,
  162. 0,
  163. 0});
  164. //
  165. // label3
  166. //
  167. this.label3.AutoSize = true;
  168. this.label3.Location = new System.Drawing.Point(18, 79);
  169. this.label3.Name = "label3";
  170. this.label3.Size = new System.Drawing.Size(48, 13);
  171. this.label3.TabIndex = 2;
  172. this.label3.Text = "Ellipsoid:";
  173. //
  174. // ellipsoidControl
  175. //
  176. this.ellipsoidControl.Location = new System.Drawing.Point(21, 95);
  177. this.ellipsoidControl.Name = "ellipsoidControl";
  178. this.ellipsoidControl.Size = new System.Drawing.Size(294, 28);
  179. this.ellipsoidControl.TabIndex = 3;
  180. this.ellipsoidControl.X = 0F;
  181. this.ellipsoidControl.Y = 0F;
  182. this.ellipsoidControl.Z = 0F;
  183. //
  184. // CameraPropertiesForm
  185. //
  186. this.AcceptButton = this.butOK;
  187. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  188. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  189. this.CancelButton = this.butCancel;
  190. this.ClientSize = new System.Drawing.Size(343, 339);
  191. this.Controls.Add(this.groupBox2);
  192. this.Controls.Add(this.butCancel);
  193. this.Controls.Add(this.butOK);
  194. this.Controls.Add(this.groupBox1);
  195. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  196. this.Name = "CameraPropertiesForm";
  197. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  198. this.Text = "Babylon.js - Camera Properties";
  199. this.Load += new System.EventHandler(this.CameraPropertiesForm_Load);
  200. this.groupBox1.ResumeLayout(false);
  201. this.groupBox1.PerformLayout();
  202. this.groupBox2.ResumeLayout(false);
  203. this.groupBox2.PerformLayout();
  204. ((System.ComponentModel.ISupportInitialize)(this.nupInertia)).EndInit();
  205. ((System.ComponentModel.ISupportInitialize)(this.nupSpeed)).EndInit();
  206. this.ResumeLayout(false);
  207. }
  208. #endregion
  209. private System.Windows.Forms.GroupBox groupBox1;
  210. private System.Windows.Forms.Button butOK;
  211. private System.Windows.Forms.Button butCancel;
  212. private System.Windows.Forms.CheckBox chkCollisions;
  213. private System.Windows.Forms.CheckBox chkGravity;
  214. private System.Windows.Forms.GroupBox groupBox2;
  215. private System.Windows.Forms.Label label1;
  216. private System.Windows.Forms.NumericUpDown nupSpeed;
  217. private System.Windows.Forms.Label label2;
  218. private System.Windows.Forms.NumericUpDown nupInertia;
  219. private System.Windows.Forms.Label label3;
  220. private Vector3Control ellipsoidControl;
  221. }
  222. }