ObjectPropertiesForm.Designer.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. namespace Max2Babylon
  2. {
  3. partial class ObjectPropertiesForm
  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.chkCollisions = new System.Windows.Forms.CheckBox();
  30. this.butCancel = new System.Windows.Forms.Button();
  31. this.butOK = new System.Windows.Forms.Button();
  32. this.groupBox2 = new System.Windows.Forms.GroupBox();
  33. this.chkShowSubMeshesBoundingBox = new System.Windows.Forms.CheckBox();
  34. this.chkShowBoundingBox = new System.Windows.Forms.CheckBox();
  35. this.chkNoOptimize = new System.Windows.Forms.CheckBox();
  36. this.chkPickable = new System.Windows.Forms.CheckBox();
  37. this.groupBox3 = new System.Windows.Forms.GroupBox();
  38. this.grpAutoAnimate = new System.Windows.Forms.GroupBox();
  39. this.chkLoop = new System.Windows.Forms.CheckBox();
  40. this.nupTo = new System.Windows.Forms.NumericUpDown();
  41. this.label2 = new System.Windows.Forms.Label();
  42. this.nupFrom = new System.Windows.Forms.NumericUpDown();
  43. this.label1 = new System.Windows.Forms.Label();
  44. this.chkAutoAnimate = new System.Windows.Forms.CheckBox();
  45. this.groupBox1.SuspendLayout();
  46. this.groupBox2.SuspendLayout();
  47. this.groupBox3.SuspendLayout();
  48. this.grpAutoAnimate.SuspendLayout();
  49. ((System.ComponentModel.ISupportInitialize)(this.nupTo)).BeginInit();
  50. ((System.ComponentModel.ISupportInitialize)(this.nupFrom)).BeginInit();
  51. this.SuspendLayout();
  52. //
  53. // groupBox1
  54. //
  55. this.groupBox1.Controls.Add(this.chkCollisions);
  56. this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  57. this.groupBox1.Location = new System.Drawing.Point(12, 12);
  58. this.groupBox1.Name = "groupBox1";
  59. this.groupBox1.Size = new System.Drawing.Size(319, 59);
  60. this.groupBox1.TabIndex = 1;
  61. this.groupBox1.TabStop = false;
  62. this.groupBox1.Text = "Collisions";
  63. //
  64. // chkCollisions
  65. //
  66. this.chkCollisions.AutoSize = true;
  67. this.chkCollisions.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  68. this.chkCollisions.Location = new System.Drawing.Point(21, 28);
  69. this.chkCollisions.Name = "chkCollisions";
  70. this.chkCollisions.Size = new System.Drawing.Size(99, 17);
  71. this.chkCollisions.TabIndex = 0;
  72. this.chkCollisions.Text = "Check collisions";
  73. this.chkCollisions.ThreeState = true;
  74. this.chkCollisions.UseVisualStyleBackColor = true;
  75. //
  76. // butCancel
  77. //
  78. this.butCancel.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  79. this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  80. this.butCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  81. this.butCancel.Location = new System.Drawing.Point(174, 509);
  82. this.butCancel.Name = "butCancel";
  83. this.butCancel.Size = new System.Drawing.Size(75, 23);
  84. this.butCancel.TabIndex = 6;
  85. this.butCancel.Text = "Cancel";
  86. this.butCancel.UseVisualStyleBackColor = true;
  87. //
  88. // butOK
  89. //
  90. this.butOK.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  91. this.butOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  92. this.butOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  93. this.butOK.Location = new System.Drawing.Point(93, 509);
  94. this.butOK.Name = "butOK";
  95. this.butOK.Size = new System.Drawing.Size(75, 23);
  96. this.butOK.TabIndex = 5;
  97. this.butOK.Text = "OK";
  98. this.butOK.UseVisualStyleBackColor = true;
  99. this.butOK.Click += new System.EventHandler(this.butOK_Click);
  100. //
  101. // groupBox2
  102. //
  103. this.groupBox2.Controls.Add(this.chkShowSubMeshesBoundingBox);
  104. this.groupBox2.Controls.Add(this.chkShowBoundingBox);
  105. this.groupBox2.Controls.Add(this.chkNoOptimize);
  106. this.groupBox2.Controls.Add(this.chkPickable);
  107. this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  108. this.groupBox2.Location = new System.Drawing.Point(12, 77);
  109. this.groupBox2.Name = "groupBox2";
  110. this.groupBox2.Size = new System.Drawing.Size(319, 143);
  111. this.groupBox2.TabIndex = 2;
  112. this.groupBox2.TabStop = false;
  113. this.groupBox2.Text = "Misc.";
  114. //
  115. // chkShowSubMeshesBoundingBox
  116. //
  117. this.chkShowSubMeshesBoundingBox.AutoSize = true;
  118. this.chkShowSubMeshesBoundingBox.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  119. this.chkShowSubMeshesBoundingBox.Location = new System.Drawing.Point(21, 97);
  120. this.chkShowSubMeshesBoundingBox.Name = "chkShowSubMeshesBoundingBox";
  121. this.chkShowSubMeshesBoundingBox.Size = new System.Drawing.Size(184, 17);
  122. this.chkShowSubMeshesBoundingBox.TabIndex = 3;
  123. this.chkShowSubMeshesBoundingBox.Text = "Show submeshes bounding boxes";
  124. this.chkShowSubMeshesBoundingBox.ThreeState = true;
  125. this.chkShowSubMeshesBoundingBox.UseVisualStyleBackColor = true;
  126. //
  127. // chkShowBoundingBox
  128. //
  129. this.chkShowBoundingBox.AutoSize = true;
  130. this.chkShowBoundingBox.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  131. this.chkShowBoundingBox.Location = new System.Drawing.Point(21, 74);
  132. this.chkShowBoundingBox.Name = "chkShowBoundingBox";
  133. this.chkShowBoundingBox.Size = new System.Drawing.Size(117, 17);
  134. this.chkShowBoundingBox.TabIndex = 2;
  135. this.chkShowBoundingBox.Text = "Show bounding box";
  136. this.chkShowBoundingBox.ThreeState = true;
  137. this.chkShowBoundingBox.UseVisualStyleBackColor = true;
  138. //
  139. // chkNoOptimize
  140. //
  141. this.chkNoOptimize.AutoSize = true;
  142. this.chkNoOptimize.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  143. this.chkNoOptimize.Location = new System.Drawing.Point(21, 51);
  144. this.chkNoOptimize.Name = "chkNoOptimize";
  145. this.chkNoOptimize.Size = new System.Drawing.Size(162, 17);
  146. this.chkNoOptimize.TabIndex = 1;
  147. this.chkNoOptimize.Text = "Do not try to optimize vertices";
  148. this.chkNoOptimize.ThreeState = true;
  149. this.chkNoOptimize.UseVisualStyleBackColor = true;
  150. //
  151. // chkPickable
  152. //
  153. this.chkPickable.AutoSize = true;
  154. this.chkPickable.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  155. this.chkPickable.Location = new System.Drawing.Point(21, 28);
  156. this.chkPickable.Name = "chkPickable";
  157. this.chkPickable.Size = new System.Drawing.Size(64, 17);
  158. this.chkPickable.TabIndex = 0;
  159. this.chkPickable.Text = "Pickable";
  160. this.chkPickable.ThreeState = true;
  161. this.chkPickable.UseVisualStyleBackColor = true;
  162. //
  163. // groupBox3
  164. //
  165. this.groupBox3.Controls.Add(this.grpAutoAnimate);
  166. this.groupBox3.Controls.Add(this.chkAutoAnimate);
  167. this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  168. this.groupBox3.Location = new System.Drawing.Point(12, 226);
  169. this.groupBox3.Name = "groupBox3";
  170. this.groupBox3.Size = new System.Drawing.Size(319, 156);
  171. this.groupBox3.TabIndex = 4;
  172. this.groupBox3.TabStop = false;
  173. this.groupBox3.Text = "Animations";
  174. //
  175. // grpAutoAnimate
  176. //
  177. this.grpAutoAnimate.Controls.Add(this.chkLoop);
  178. this.grpAutoAnimate.Controls.Add(this.nupTo);
  179. this.grpAutoAnimate.Controls.Add(this.label2);
  180. this.grpAutoAnimate.Controls.Add(this.nupFrom);
  181. this.grpAutoAnimate.Controls.Add(this.label1);
  182. this.grpAutoAnimate.Enabled = false;
  183. this.grpAutoAnimate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  184. this.grpAutoAnimate.Location = new System.Drawing.Point(21, 51);
  185. this.grpAutoAnimate.Name = "grpAutoAnimate";
  186. this.grpAutoAnimate.Size = new System.Drawing.Size(292, 99);
  187. this.grpAutoAnimate.TabIndex = 3;
  188. this.grpAutoAnimate.TabStop = false;
  189. //
  190. // chkLoop
  191. //
  192. this.chkLoop.AutoSize = true;
  193. this.chkLoop.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  194. this.chkLoop.Location = new System.Drawing.Point(9, 66);
  195. this.chkLoop.Name = "chkLoop";
  196. this.chkLoop.Size = new System.Drawing.Size(47, 17);
  197. this.chkLoop.TabIndex = 5;
  198. this.chkLoop.Text = "Loop";
  199. this.chkLoop.ThreeState = true;
  200. this.chkLoop.UseVisualStyleBackColor = true;
  201. //
  202. // nupTo
  203. //
  204. this.nupTo.Location = new System.Drawing.Point(47, 40);
  205. this.nupTo.Maximum = new decimal(new int[] {
  206. 1000,
  207. 0,
  208. 0,
  209. 0});
  210. this.nupTo.Name = "nupTo";
  211. this.nupTo.Size = new System.Drawing.Size(120, 20);
  212. this.nupTo.TabIndex = 3;
  213. //
  214. // label2
  215. //
  216. this.label2.AutoSize = true;
  217. this.label2.Location = new System.Drawing.Point(6, 42);
  218. this.label2.Name = "label2";
  219. this.label2.Size = new System.Drawing.Size(23, 13);
  220. this.label2.TabIndex = 4;
  221. this.label2.Text = "To:";
  222. //
  223. // nupFrom
  224. //
  225. this.nupFrom.Location = new System.Drawing.Point(47, 14);
  226. this.nupFrom.Maximum = new decimal(new int[] {
  227. 1000,
  228. 0,
  229. 0,
  230. 0});
  231. this.nupFrom.Name = "nupFrom";
  232. this.nupFrom.Size = new System.Drawing.Size(120, 20);
  233. this.nupFrom.TabIndex = 1;
  234. //
  235. // label1
  236. //
  237. this.label1.AutoSize = true;
  238. this.label1.Location = new System.Drawing.Point(6, 16);
  239. this.label1.Name = "label1";
  240. this.label1.Size = new System.Drawing.Size(33, 13);
  241. this.label1.TabIndex = 2;
  242. this.label1.Text = "From:";
  243. //
  244. // chkAutoAnimate
  245. //
  246. this.chkAutoAnimate.AutoSize = true;
  247. this.chkAutoAnimate.Location = new System.Drawing.Point(21, 28);
  248. this.chkAutoAnimate.Name = "chkAutoAnimate";
  249. this.chkAutoAnimate.Size = new System.Drawing.Size(88, 17);
  250. this.chkAutoAnimate.TabIndex = 0;
  251. this.chkAutoAnimate.Text = "Auto animate";
  252. this.chkAutoAnimate.ThreeState = true;
  253. this.chkAutoAnimate.UseVisualStyleBackColor = true;
  254. this.chkAutoAnimate.CheckedChanged += new System.EventHandler(this.chkAutoAnimate_CheckedChanged);
  255. //
  256. // ObjectPropertiesForm
  257. //
  258. this.AcceptButton = this.butOK;
  259. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  260. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  261. this.CancelButton = this.butCancel;
  262. this.ClientSize = new System.Drawing.Size(343, 544);
  263. this.Controls.Add(this.groupBox3);
  264. this.Controls.Add(this.groupBox2);
  265. this.Controls.Add(this.butCancel);
  266. this.Controls.Add(this.butOK);
  267. this.Controls.Add(this.groupBox1);
  268. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  269. this.Name = "ObjectPropertiesForm";
  270. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  271. this.Text = "Babylon.js - Object Properties";
  272. this.Load += new System.EventHandler(this.ObjectPropertiesForm_Load);
  273. this.groupBox1.ResumeLayout(false);
  274. this.groupBox1.PerformLayout();
  275. this.groupBox2.ResumeLayout(false);
  276. this.groupBox2.PerformLayout();
  277. this.groupBox3.ResumeLayout(false);
  278. this.groupBox3.PerformLayout();
  279. this.grpAutoAnimate.ResumeLayout(false);
  280. this.grpAutoAnimate.PerformLayout();
  281. ((System.ComponentModel.ISupportInitialize)(this.nupTo)).EndInit();
  282. ((System.ComponentModel.ISupportInitialize)(this.nupFrom)).EndInit();
  283. this.ResumeLayout(false);
  284. }
  285. #endregion
  286. private System.Windows.Forms.GroupBox groupBox1;
  287. private System.Windows.Forms.CheckBox chkCollisions;
  288. private System.Windows.Forms.Button butCancel;
  289. private System.Windows.Forms.Button butOK;
  290. private System.Windows.Forms.GroupBox groupBox2;
  291. private System.Windows.Forms.CheckBox chkPickable;
  292. private System.Windows.Forms.CheckBox chkNoOptimize;
  293. private System.Windows.Forms.CheckBox chkShowSubMeshesBoundingBox;
  294. private System.Windows.Forms.CheckBox chkShowBoundingBox;
  295. private System.Windows.Forms.GroupBox groupBox3;
  296. private System.Windows.Forms.GroupBox grpAutoAnimate;
  297. private System.Windows.Forms.CheckBox chkLoop;
  298. private System.Windows.Forms.NumericUpDown nupTo;
  299. private System.Windows.Forms.Label label2;
  300. private System.Windows.Forms.NumericUpDown nupFrom;
  301. private System.Windows.Forms.Label label1;
  302. private System.Windows.Forms.CheckBox chkAutoAnimate;
  303. }
  304. }