ObjectPropertiesForm.Designer.cs 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490
  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.nupAlphaIndex = new System.Windows.Forms.NumericUpDown();
  34. this.label3 = new System.Windows.Forms.Label();
  35. this.chkNoExport = new System.Windows.Forms.CheckBox();
  36. this.chkShowSubMeshesBoundingBox = new System.Windows.Forms.CheckBox();
  37. this.chkShowBoundingBox = new System.Windows.Forms.CheckBox();
  38. this.chkOptimize = new System.Windows.Forms.CheckBox();
  39. this.chkPickable = new System.Windows.Forms.CheckBox();
  40. this.groupBox3 = new System.Windows.Forms.GroupBox();
  41. this.grpAutoAnimate = new System.Windows.Forms.GroupBox();
  42. this.chkLoop = new System.Windows.Forms.CheckBox();
  43. this.nupTo = new System.Windows.Forms.NumericUpDown();
  44. this.label2 = new System.Windows.Forms.Label();
  45. this.nupFrom = new System.Windows.Forms.NumericUpDown();
  46. this.label1 = new System.Windows.Forms.Label();
  47. this.chkAutoAnimate = new System.Windows.Forms.CheckBox();
  48. this.groupBox4 = new System.Windows.Forms.GroupBox();
  49. this.label6 = new System.Windows.Forms.Label();
  50. this.cbImpostor = new System.Windows.Forms.ComboBox();
  51. this.nupMass = new System.Windows.Forms.NumericUpDown();
  52. this.label4 = new System.Windows.Forms.Label();
  53. this.nupFriction = new System.Windows.Forms.NumericUpDown();
  54. this.label5 = new System.Windows.Forms.Label();
  55. this.nupRestitution = new System.Windows.Forms.NumericUpDown();
  56. this.label7 = new System.Windows.Forms.Label();
  57. this.groupBox1.SuspendLayout();
  58. this.groupBox2.SuspendLayout();
  59. ((System.ComponentModel.ISupportInitialize)(this.nupAlphaIndex)).BeginInit();
  60. this.groupBox3.SuspendLayout();
  61. this.grpAutoAnimate.SuspendLayout();
  62. ((System.ComponentModel.ISupportInitialize)(this.nupTo)).BeginInit();
  63. ((System.ComponentModel.ISupportInitialize)(this.nupFrom)).BeginInit();
  64. this.groupBox4.SuspendLayout();
  65. ((System.ComponentModel.ISupportInitialize)(this.nupMass)).BeginInit();
  66. ((System.ComponentModel.ISupportInitialize)(this.nupFriction)).BeginInit();
  67. ((System.ComponentModel.ISupportInitialize)(this.nupRestitution)).BeginInit();
  68. this.SuspendLayout();
  69. //
  70. // groupBox1
  71. //
  72. this.groupBox1.Controls.Add(this.chkCollisions);
  73. this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  74. this.groupBox1.Location = new System.Drawing.Point(12, 12);
  75. this.groupBox1.Name = "groupBox1";
  76. this.groupBox1.Size = new System.Drawing.Size(319, 59);
  77. this.groupBox1.TabIndex = 1;
  78. this.groupBox1.TabStop = false;
  79. this.groupBox1.Text = "Collisions";
  80. //
  81. // chkCollisions
  82. //
  83. this.chkCollisions.AutoSize = true;
  84. this.chkCollisions.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  85. this.chkCollisions.Location = new System.Drawing.Point(21, 28);
  86. this.chkCollisions.Name = "chkCollisions";
  87. this.chkCollisions.Size = new System.Drawing.Size(99, 17);
  88. this.chkCollisions.TabIndex = 0;
  89. this.chkCollisions.Text = "Check collisions";
  90. this.chkCollisions.ThreeState = true;
  91. this.chkCollisions.UseVisualStyleBackColor = true;
  92. //
  93. // butCancel
  94. //
  95. this.butCancel.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  96. this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  97. this.butCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  98. this.butCancel.Location = new System.Drawing.Point(174, 599);
  99. this.butCancel.Name = "butCancel";
  100. this.butCancel.Size = new System.Drawing.Size(75, 23);
  101. this.butCancel.TabIndex = 6;
  102. this.butCancel.Text = "Cancel";
  103. this.butCancel.UseVisualStyleBackColor = true;
  104. //
  105. // butOK
  106. //
  107. this.butOK.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  108. this.butOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  109. this.butOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  110. this.butOK.Location = new System.Drawing.Point(93, 599);
  111. this.butOK.Name = "butOK";
  112. this.butOK.Size = new System.Drawing.Size(75, 23);
  113. this.butOK.TabIndex = 5;
  114. this.butOK.Text = "OK";
  115. this.butOK.UseVisualStyleBackColor = true;
  116. this.butOK.Click += new System.EventHandler(this.butOK_Click);
  117. //
  118. // groupBox2
  119. //
  120. this.groupBox2.Controls.Add(this.nupAlphaIndex);
  121. this.groupBox2.Controls.Add(this.label3);
  122. this.groupBox2.Controls.Add(this.chkNoExport);
  123. this.groupBox2.Controls.Add(this.chkShowSubMeshesBoundingBox);
  124. this.groupBox2.Controls.Add(this.chkShowBoundingBox);
  125. this.groupBox2.Controls.Add(this.chkOptimize);
  126. this.groupBox2.Controls.Add(this.chkPickable);
  127. this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  128. this.groupBox2.Location = new System.Drawing.Point(12, 77);
  129. this.groupBox2.Name = "groupBox2";
  130. this.groupBox2.Size = new System.Drawing.Size(319, 179);
  131. this.groupBox2.TabIndex = 2;
  132. this.groupBox2.TabStop = false;
  133. this.groupBox2.Text = "Misc.";
  134. //
  135. // nupAlphaIndex
  136. //
  137. this.nupAlphaIndex.Location = new System.Drawing.Point(89, 143);
  138. this.nupAlphaIndex.Maximum = new decimal(new int[] {
  139. 1000,
  140. 0,
  141. 0,
  142. 0});
  143. this.nupAlphaIndex.Name = "nupAlphaIndex";
  144. this.nupAlphaIndex.Size = new System.Drawing.Size(120, 20);
  145. this.nupAlphaIndex.TabIndex = 5;
  146. //
  147. // label3
  148. //
  149. this.label3.AutoSize = true;
  150. this.label3.Location = new System.Drawing.Point(18, 145);
  151. this.label3.Name = "label3";
  152. this.label3.Size = new System.Drawing.Size(65, 13);
  153. this.label3.TabIndex = 6;
  154. this.label3.Text = "Alpha index:";
  155. //
  156. // chkNoExport
  157. //
  158. this.chkNoExport.AutoSize = true;
  159. this.chkNoExport.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  160. this.chkNoExport.Location = new System.Drawing.Point(21, 28);
  161. this.chkNoExport.Name = "chkNoExport";
  162. this.chkNoExport.Size = new System.Drawing.Size(87, 17);
  163. this.chkNoExport.TabIndex = 4;
  164. this.chkNoExport.Text = "Do not export";
  165. this.chkNoExport.ThreeState = true;
  166. this.chkNoExport.UseVisualStyleBackColor = true;
  167. //
  168. // chkShowSubMeshesBoundingBox
  169. //
  170. this.chkShowSubMeshesBoundingBox.AutoSize = true;
  171. this.chkShowSubMeshesBoundingBox.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  172. this.chkShowSubMeshesBoundingBox.Location = new System.Drawing.Point(21, 120);
  173. this.chkShowSubMeshesBoundingBox.Name = "chkShowSubMeshesBoundingBox";
  174. this.chkShowSubMeshesBoundingBox.Size = new System.Drawing.Size(184, 17);
  175. this.chkShowSubMeshesBoundingBox.TabIndex = 3;
  176. this.chkShowSubMeshesBoundingBox.Text = "Show submeshes bounding boxes";
  177. this.chkShowSubMeshesBoundingBox.ThreeState = true;
  178. this.chkShowSubMeshesBoundingBox.UseVisualStyleBackColor = true;
  179. //
  180. // chkShowBoundingBox
  181. //
  182. this.chkShowBoundingBox.AutoSize = true;
  183. this.chkShowBoundingBox.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  184. this.chkShowBoundingBox.Location = new System.Drawing.Point(21, 97);
  185. this.chkShowBoundingBox.Name = "chkShowBoundingBox";
  186. this.chkShowBoundingBox.Size = new System.Drawing.Size(117, 17);
  187. this.chkShowBoundingBox.TabIndex = 2;
  188. this.chkShowBoundingBox.Text = "Show bounding box";
  189. this.chkShowBoundingBox.ThreeState = true;
  190. this.chkShowBoundingBox.UseVisualStyleBackColor = true;
  191. //
  192. // chkOptimize
  193. //
  194. this.chkOptimize.AutoSize = true;
  195. this.chkOptimize.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  196. this.chkOptimize.Location = new System.Drawing.Point(21, 74);
  197. this.chkOptimize.Name = "chkOptimize";
  198. this.chkOptimize.Size = new System.Drawing.Size(131, 17);
  199. this.chkOptimize.TabIndex = 1;
  200. this.chkOptimize.Text = "Try to optimize vertices";
  201. this.chkOptimize.ThreeState = true;
  202. this.chkOptimize.UseVisualStyleBackColor = true;
  203. //
  204. // chkPickable
  205. //
  206. this.chkPickable.AutoSize = true;
  207. this.chkPickable.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  208. this.chkPickable.Location = new System.Drawing.Point(21, 51);
  209. this.chkPickable.Name = "chkPickable";
  210. this.chkPickable.Size = new System.Drawing.Size(64, 17);
  211. this.chkPickable.TabIndex = 0;
  212. this.chkPickable.Text = "Pickable";
  213. this.chkPickable.ThreeState = true;
  214. this.chkPickable.UseVisualStyleBackColor = true;
  215. //
  216. // groupBox3
  217. //
  218. this.groupBox3.Controls.Add(this.grpAutoAnimate);
  219. this.groupBox3.Controls.Add(this.chkAutoAnimate);
  220. this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  221. this.groupBox3.Location = new System.Drawing.Point(12, 262);
  222. this.groupBox3.Name = "groupBox3";
  223. this.groupBox3.Size = new System.Drawing.Size(319, 156);
  224. this.groupBox3.TabIndex = 4;
  225. this.groupBox3.TabStop = false;
  226. this.groupBox3.Text = "Animations";
  227. //
  228. // grpAutoAnimate
  229. //
  230. this.grpAutoAnimate.Controls.Add(this.chkLoop);
  231. this.grpAutoAnimate.Controls.Add(this.nupTo);
  232. this.grpAutoAnimate.Controls.Add(this.label2);
  233. this.grpAutoAnimate.Controls.Add(this.nupFrom);
  234. this.grpAutoAnimate.Controls.Add(this.label1);
  235. this.grpAutoAnimate.Enabled = false;
  236. this.grpAutoAnimate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  237. this.grpAutoAnimate.Location = new System.Drawing.Point(21, 51);
  238. this.grpAutoAnimate.Name = "grpAutoAnimate";
  239. this.grpAutoAnimate.Size = new System.Drawing.Size(292, 99);
  240. this.grpAutoAnimate.TabIndex = 3;
  241. this.grpAutoAnimate.TabStop = false;
  242. //
  243. // chkLoop
  244. //
  245. this.chkLoop.AutoSize = true;
  246. this.chkLoop.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  247. this.chkLoop.Location = new System.Drawing.Point(9, 66);
  248. this.chkLoop.Name = "chkLoop";
  249. this.chkLoop.Size = new System.Drawing.Size(47, 17);
  250. this.chkLoop.TabIndex = 5;
  251. this.chkLoop.Text = "Loop";
  252. this.chkLoop.ThreeState = true;
  253. this.chkLoop.UseVisualStyleBackColor = true;
  254. //
  255. // nupTo
  256. //
  257. this.nupTo.Location = new System.Drawing.Point(47, 40);
  258. this.nupTo.Maximum = new decimal(new int[] {
  259. 1000,
  260. 0,
  261. 0,
  262. 0});
  263. this.nupTo.Name = "nupTo";
  264. this.nupTo.Size = new System.Drawing.Size(120, 20);
  265. this.nupTo.TabIndex = 3;
  266. //
  267. // label2
  268. //
  269. this.label2.AutoSize = true;
  270. this.label2.Location = new System.Drawing.Point(6, 42);
  271. this.label2.Name = "label2";
  272. this.label2.Size = new System.Drawing.Size(23, 13);
  273. this.label2.TabIndex = 4;
  274. this.label2.Text = "To:";
  275. //
  276. // nupFrom
  277. //
  278. this.nupFrom.Location = new System.Drawing.Point(47, 14);
  279. this.nupFrom.Maximum = new decimal(new int[] {
  280. 1000,
  281. 0,
  282. 0,
  283. 0});
  284. this.nupFrom.Name = "nupFrom";
  285. this.nupFrom.Size = new System.Drawing.Size(120, 20);
  286. this.nupFrom.TabIndex = 1;
  287. //
  288. // label1
  289. //
  290. this.label1.AutoSize = true;
  291. this.label1.Location = new System.Drawing.Point(6, 16);
  292. this.label1.Name = "label1";
  293. this.label1.Size = new System.Drawing.Size(33, 13);
  294. this.label1.TabIndex = 2;
  295. this.label1.Text = "From:";
  296. //
  297. // chkAutoAnimate
  298. //
  299. this.chkAutoAnimate.AutoSize = true;
  300. this.chkAutoAnimate.Location = new System.Drawing.Point(21, 28);
  301. this.chkAutoAnimate.Name = "chkAutoAnimate";
  302. this.chkAutoAnimate.Size = new System.Drawing.Size(88, 17);
  303. this.chkAutoAnimate.TabIndex = 0;
  304. this.chkAutoAnimate.Text = "Auto animate";
  305. this.chkAutoAnimate.ThreeState = true;
  306. this.chkAutoAnimate.UseVisualStyleBackColor = true;
  307. this.chkAutoAnimate.CheckedChanged += new System.EventHandler(this.chkAutoAnimate_CheckedChanged);
  308. //
  309. // groupBox4
  310. //
  311. this.groupBox4.Controls.Add(this.nupRestitution);
  312. this.groupBox4.Controls.Add(this.label7);
  313. this.groupBox4.Controls.Add(this.nupFriction);
  314. this.groupBox4.Controls.Add(this.label5);
  315. this.groupBox4.Controls.Add(this.label6);
  316. this.groupBox4.Controls.Add(this.cbImpostor);
  317. this.groupBox4.Controls.Add(this.nupMass);
  318. this.groupBox4.Controls.Add(this.label4);
  319. this.groupBox4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  320. this.groupBox4.Location = new System.Drawing.Point(12, 424);
  321. this.groupBox4.Name = "groupBox4";
  322. this.groupBox4.Size = new System.Drawing.Size(319, 155);
  323. this.groupBox4.TabIndex = 7;
  324. this.groupBox4.TabStop = false;
  325. this.groupBox4.Text = "Physics";
  326. //
  327. // label6
  328. //
  329. this.label6.AutoSize = true;
  330. this.label6.Location = new System.Drawing.Point(18, 27);
  331. this.label6.Name = "label6";
  332. this.label6.Size = new System.Drawing.Size(50, 13);
  333. this.label6.TabIndex = 8;
  334. this.label6.Text = "Impostor:";
  335. //
  336. // cbImpostor
  337. //
  338. this.cbImpostor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  339. this.cbImpostor.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  340. this.cbImpostor.FormattingEnabled = true;
  341. this.cbImpostor.Items.AddRange(new object[] {
  342. "None",
  343. "Sphere",
  344. "Box",
  345. "Plane"});
  346. this.cbImpostor.Location = new System.Drawing.Point(25, 43);
  347. this.cbImpostor.Name = "cbImpostor";
  348. this.cbImpostor.Size = new System.Drawing.Size(290, 21);
  349. this.cbImpostor.TabIndex = 7;
  350. //
  351. // nupMass
  352. //
  353. this.nupMass.DecimalPlaces = 2;
  354. this.nupMass.Location = new System.Drawing.Point(89, 70);
  355. this.nupMass.Maximum = new decimal(new int[] {
  356. 1000,
  357. 0,
  358. 0,
  359. 0});
  360. this.nupMass.Name = "nupMass";
  361. this.nupMass.Size = new System.Drawing.Size(120, 20);
  362. this.nupMass.TabIndex = 5;
  363. //
  364. // label4
  365. //
  366. this.label4.AutoSize = true;
  367. this.label4.Location = new System.Drawing.Point(18, 70);
  368. this.label4.Name = "label4";
  369. this.label4.Size = new System.Drawing.Size(35, 13);
  370. this.label4.TabIndex = 6;
  371. this.label4.Text = "Mass:";
  372. //
  373. // nupFriction
  374. //
  375. this.nupFriction.DecimalPlaces = 2;
  376. this.nupFriction.Location = new System.Drawing.Point(89, 96);
  377. this.nupFriction.Maximum = new decimal(new int[] {
  378. 1,
  379. 0,
  380. 0,
  381. 0});
  382. this.nupFriction.Name = "nupFriction";
  383. this.nupFriction.Size = new System.Drawing.Size(120, 20);
  384. this.nupFriction.TabIndex = 9;
  385. //
  386. // label5
  387. //
  388. this.label5.AutoSize = true;
  389. this.label5.Location = new System.Drawing.Point(18, 96);
  390. this.label5.Name = "label5";
  391. this.label5.Size = new System.Drawing.Size(44, 13);
  392. this.label5.TabIndex = 10;
  393. this.label5.Text = "Friction:";
  394. //
  395. // nupRestitution
  396. //
  397. this.nupRestitution.DecimalPlaces = 2;
  398. this.nupRestitution.Location = new System.Drawing.Point(89, 122);
  399. this.nupRestitution.Maximum = new decimal(new int[] {
  400. 1,
  401. 0,
  402. 0,
  403. 0});
  404. this.nupRestitution.Name = "nupRestitution";
  405. this.nupRestitution.Size = new System.Drawing.Size(120, 20);
  406. this.nupRestitution.TabIndex = 11;
  407. //
  408. // label7
  409. //
  410. this.label7.AutoSize = true;
  411. this.label7.Location = new System.Drawing.Point(18, 122);
  412. this.label7.Name = "label7";
  413. this.label7.Size = new System.Drawing.Size(60, 13);
  414. this.label7.TabIndex = 12;
  415. this.label7.Text = "Restitution:";
  416. //
  417. // ObjectPropertiesForm
  418. //
  419. this.AcceptButton = this.butOK;
  420. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  421. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  422. this.CancelButton = this.butCancel;
  423. this.ClientSize = new System.Drawing.Size(343, 634);
  424. this.Controls.Add(this.groupBox4);
  425. this.Controls.Add(this.groupBox3);
  426. this.Controls.Add(this.groupBox2);
  427. this.Controls.Add(this.butCancel);
  428. this.Controls.Add(this.butOK);
  429. this.Controls.Add(this.groupBox1);
  430. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  431. this.Name = "ObjectPropertiesForm";
  432. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  433. this.Text = "Babylon.js - Object Properties";
  434. this.Load += new System.EventHandler(this.ObjectPropertiesForm_Load);
  435. this.groupBox1.ResumeLayout(false);
  436. this.groupBox1.PerformLayout();
  437. this.groupBox2.ResumeLayout(false);
  438. this.groupBox2.PerformLayout();
  439. ((System.ComponentModel.ISupportInitialize)(this.nupAlphaIndex)).EndInit();
  440. this.groupBox3.ResumeLayout(false);
  441. this.groupBox3.PerformLayout();
  442. this.grpAutoAnimate.ResumeLayout(false);
  443. this.grpAutoAnimate.PerformLayout();
  444. ((System.ComponentModel.ISupportInitialize)(this.nupTo)).EndInit();
  445. ((System.ComponentModel.ISupportInitialize)(this.nupFrom)).EndInit();
  446. this.groupBox4.ResumeLayout(false);
  447. this.groupBox4.PerformLayout();
  448. ((System.ComponentModel.ISupportInitialize)(this.nupMass)).EndInit();
  449. ((System.ComponentModel.ISupportInitialize)(this.nupFriction)).EndInit();
  450. ((System.ComponentModel.ISupportInitialize)(this.nupRestitution)).EndInit();
  451. this.ResumeLayout(false);
  452. }
  453. #endregion
  454. private System.Windows.Forms.GroupBox groupBox1;
  455. private System.Windows.Forms.CheckBox chkCollisions;
  456. private System.Windows.Forms.Button butCancel;
  457. private System.Windows.Forms.Button butOK;
  458. private System.Windows.Forms.GroupBox groupBox2;
  459. private System.Windows.Forms.CheckBox chkPickable;
  460. private System.Windows.Forms.CheckBox chkOptimize;
  461. private System.Windows.Forms.CheckBox chkShowSubMeshesBoundingBox;
  462. private System.Windows.Forms.CheckBox chkShowBoundingBox;
  463. private System.Windows.Forms.GroupBox groupBox3;
  464. private System.Windows.Forms.GroupBox grpAutoAnimate;
  465. private System.Windows.Forms.CheckBox chkLoop;
  466. private System.Windows.Forms.NumericUpDown nupTo;
  467. private System.Windows.Forms.Label label2;
  468. private System.Windows.Forms.NumericUpDown nupFrom;
  469. private System.Windows.Forms.Label label1;
  470. private System.Windows.Forms.CheckBox chkAutoAnimate;
  471. private System.Windows.Forms.CheckBox chkNoExport;
  472. private System.Windows.Forms.NumericUpDown nupAlphaIndex;
  473. private System.Windows.Forms.Label label3;
  474. private System.Windows.Forms.GroupBox groupBox4;
  475. private System.Windows.Forms.NumericUpDown nupMass;
  476. private System.Windows.Forms.Label label4;
  477. private System.Windows.Forms.Label label6;
  478. private System.Windows.Forms.ComboBox cbImpostor;
  479. private System.Windows.Forms.NumericUpDown nupRestitution;
  480. private System.Windows.Forms.Label label7;
  481. private System.Windows.Forms.NumericUpDown nupFriction;
  482. private System.Windows.Forms.Label label5;
  483. }
  484. }