CameraPropertiesForm.Designer.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  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.ellipsoidControl = new Max2Babylon.Vector3Control();
  30. this.label3 = new System.Windows.Forms.Label();
  31. this.chkGravity = new System.Windows.Forms.CheckBox();
  32. this.chkCollisions = new System.Windows.Forms.CheckBox();
  33. this.butOK = new System.Windows.Forms.Button();
  34. this.butCancel = new System.Windows.Forms.Button();
  35. this.groupBox2 = new System.Windows.Forms.GroupBox();
  36. this.label2 = new System.Windows.Forms.Label();
  37. this.nupInertia = new System.Windows.Forms.NumericUpDown();
  38. this.label1 = new System.Windows.Forms.Label();
  39. this.nupSpeed = new System.Windows.Forms.NumericUpDown();
  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.label4 = new System.Windows.Forms.Label();
  45. this.nupFrom = new System.Windows.Forms.NumericUpDown();
  46. this.label5 = 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.cbCameraType = new System.Windows.Forms.ComboBox();
  51. this.chkNoExport = new System.Windows.Forms.CheckBox();
  52. this.groupBox1.SuspendLayout();
  53. this.groupBox2.SuspendLayout();
  54. ((System.ComponentModel.ISupportInitialize)(this.nupInertia)).BeginInit();
  55. ((System.ComponentModel.ISupportInitialize)(this.nupSpeed)).BeginInit();
  56. this.groupBox3.SuspendLayout();
  57. this.grpAutoAnimate.SuspendLayout();
  58. ((System.ComponentModel.ISupportInitialize)(this.nupTo)).BeginInit();
  59. ((System.ComponentModel.ISupportInitialize)(this.nupFrom)).BeginInit();
  60. this.groupBox4.SuspendLayout();
  61. this.SuspendLayout();
  62. //
  63. // groupBox1
  64. //
  65. this.groupBox1.Controls.Add(this.ellipsoidControl);
  66. this.groupBox1.Controls.Add(this.label3);
  67. this.groupBox1.Controls.Add(this.chkGravity);
  68. this.groupBox1.Controls.Add(this.chkCollisions);
  69. this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  70. this.groupBox1.Location = new System.Drawing.Point(12, 119);
  71. this.groupBox1.Name = "groupBox1";
  72. this.groupBox1.Size = new System.Drawing.Size(319, 138);
  73. this.groupBox1.TabIndex = 0;
  74. this.groupBox1.TabStop = false;
  75. this.groupBox1.Text = "Collisions";
  76. //
  77. // ellipsoidControl
  78. //
  79. this.ellipsoidControl.Location = new System.Drawing.Point(21, 95);
  80. this.ellipsoidControl.Name = "ellipsoidControl";
  81. this.ellipsoidControl.Size = new System.Drawing.Size(294, 28);
  82. this.ellipsoidControl.TabIndex = 3;
  83. this.ellipsoidControl.X = 0F;
  84. this.ellipsoidControl.Y = 0F;
  85. this.ellipsoidControl.Z = 0F;
  86. //
  87. // label3
  88. //
  89. this.label3.AutoSize = true;
  90. this.label3.Location = new System.Drawing.Point(18, 79);
  91. this.label3.Name = "label3";
  92. this.label3.Size = new System.Drawing.Size(48, 13);
  93. this.label3.TabIndex = 2;
  94. this.label3.Text = "Ellipsoid:";
  95. //
  96. // chkGravity
  97. //
  98. this.chkGravity.AutoSize = true;
  99. this.chkGravity.Location = new System.Drawing.Point(21, 51);
  100. this.chkGravity.Name = "chkGravity";
  101. this.chkGravity.Size = new System.Drawing.Size(86, 17);
  102. this.chkGravity.TabIndex = 1;
  103. this.chkGravity.Text = "Apply gravity";
  104. this.chkGravity.ThreeState = true;
  105. this.chkGravity.UseVisualStyleBackColor = true;
  106. //
  107. // chkCollisions
  108. //
  109. this.chkCollisions.AutoSize = true;
  110. this.chkCollisions.Location = new System.Drawing.Point(21, 28);
  111. this.chkCollisions.Name = "chkCollisions";
  112. this.chkCollisions.Size = new System.Drawing.Size(102, 17);
  113. this.chkCollisions.TabIndex = 0;
  114. this.chkCollisions.Text = "Check collisions";
  115. this.chkCollisions.ThreeState = true;
  116. this.chkCollisions.UseVisualStyleBackColor = true;
  117. //
  118. // butOK
  119. //
  120. this.butOK.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  121. this.butOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  122. this.butOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  123. this.butOK.Location = new System.Drawing.Point(93, 578);
  124. this.butOK.Name = "butOK";
  125. this.butOK.Size = new System.Drawing.Size(75, 23);
  126. this.butOK.TabIndex = 1;
  127. this.butOK.Text = "OK";
  128. this.butOK.UseVisualStyleBackColor = true;
  129. this.butOK.Click += new System.EventHandler(this.butOK_Click);
  130. //
  131. // butCancel
  132. //
  133. this.butCancel.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  134. this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  135. this.butCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  136. this.butCancel.Location = new System.Drawing.Point(174, 578);
  137. this.butCancel.Name = "butCancel";
  138. this.butCancel.Size = new System.Drawing.Size(75, 23);
  139. this.butCancel.TabIndex = 2;
  140. this.butCancel.Text = "Cancel";
  141. this.butCancel.UseVisualStyleBackColor = true;
  142. //
  143. // groupBox2
  144. //
  145. this.groupBox2.Controls.Add(this.label2);
  146. this.groupBox2.Controls.Add(this.nupInertia);
  147. this.groupBox2.Controls.Add(this.label1);
  148. this.groupBox2.Controls.Add(this.nupSpeed);
  149. this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  150. this.groupBox2.Location = new System.Drawing.Point(12, 263);
  151. this.groupBox2.Name = "groupBox2";
  152. this.groupBox2.Size = new System.Drawing.Size(319, 140);
  153. this.groupBox2.TabIndex = 3;
  154. this.groupBox2.TabStop = false;
  155. this.groupBox2.Text = "Control";
  156. //
  157. // label2
  158. //
  159. this.label2.AutoSize = true;
  160. this.label2.Location = new System.Drawing.Point(21, 81);
  161. this.label2.Name = "label2";
  162. this.label2.Size = new System.Drawing.Size(36, 13);
  163. this.label2.TabIndex = 3;
  164. this.label2.Text = "Inertia";
  165. //
  166. // nupInertia
  167. //
  168. this.nupInertia.DecimalPlaces = 2;
  169. this.nupInertia.Location = new System.Drawing.Point(24, 103);
  170. this.nupInertia.Name = "nupInertia";
  171. this.nupInertia.Size = new System.Drawing.Size(120, 20);
  172. this.nupInertia.TabIndex = 2;
  173. this.nupInertia.Value = new decimal(new int[] {
  174. 9,
  175. 0,
  176. 0,
  177. 65536});
  178. //
  179. // label1
  180. //
  181. this.label1.AutoSize = true;
  182. this.label1.Location = new System.Drawing.Point(21, 28);
  183. this.label1.Name = "label1";
  184. this.label1.Size = new System.Drawing.Size(41, 13);
  185. this.label1.TabIndex = 1;
  186. this.label1.Text = "Speed:";
  187. //
  188. // nupSpeed
  189. //
  190. this.nupSpeed.DecimalPlaces = 1;
  191. this.nupSpeed.Location = new System.Drawing.Point(24, 50);
  192. this.nupSpeed.Name = "nupSpeed";
  193. this.nupSpeed.Size = new System.Drawing.Size(120, 20);
  194. this.nupSpeed.TabIndex = 0;
  195. this.nupSpeed.Value = new decimal(new int[] {
  196. 1,
  197. 0,
  198. 0,
  199. 0});
  200. //
  201. // groupBox3
  202. //
  203. this.groupBox3.Controls.Add(this.grpAutoAnimate);
  204. this.groupBox3.Controls.Add(this.chkAutoAnimate);
  205. this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  206. this.groupBox3.Location = new System.Drawing.Point(12, 409);
  207. this.groupBox3.Name = "groupBox3";
  208. this.groupBox3.Size = new System.Drawing.Size(319, 156);
  209. this.groupBox3.TabIndex = 5;
  210. this.groupBox3.TabStop = false;
  211. this.groupBox3.Text = "Animations";
  212. //
  213. // grpAutoAnimate
  214. //
  215. this.grpAutoAnimate.Controls.Add(this.chkLoop);
  216. this.grpAutoAnimate.Controls.Add(this.nupTo);
  217. this.grpAutoAnimate.Controls.Add(this.label4);
  218. this.grpAutoAnimate.Controls.Add(this.nupFrom);
  219. this.grpAutoAnimate.Controls.Add(this.label5);
  220. this.grpAutoAnimate.Enabled = false;
  221. this.grpAutoAnimate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  222. this.grpAutoAnimate.Location = new System.Drawing.Point(21, 51);
  223. this.grpAutoAnimate.Name = "grpAutoAnimate";
  224. this.grpAutoAnimate.Size = new System.Drawing.Size(292, 99);
  225. this.grpAutoAnimate.TabIndex = 3;
  226. this.grpAutoAnimate.TabStop = false;
  227. //
  228. // chkLoop
  229. //
  230. this.chkLoop.AutoSize = true;
  231. this.chkLoop.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  232. this.chkLoop.Location = new System.Drawing.Point(9, 66);
  233. this.chkLoop.Name = "chkLoop";
  234. this.chkLoop.Size = new System.Drawing.Size(47, 17);
  235. this.chkLoop.TabIndex = 5;
  236. this.chkLoop.Text = "Loop";
  237. this.chkLoop.ThreeState = true;
  238. this.chkLoop.UseVisualStyleBackColor = true;
  239. //
  240. // nupTo
  241. //
  242. this.nupTo.Location = new System.Drawing.Point(47, 40);
  243. this.nupTo.Maximum = new decimal(new int[] {
  244. 100000,
  245. 0,
  246. 0,
  247. 0});
  248. this.nupTo.Name = "nupTo";
  249. this.nupTo.Size = new System.Drawing.Size(120, 20);
  250. this.nupTo.TabIndex = 3;
  251. //
  252. // label4
  253. //
  254. this.label4.AutoSize = true;
  255. this.label4.Location = new System.Drawing.Point(6, 42);
  256. this.label4.Name = "label4";
  257. this.label4.Size = new System.Drawing.Size(23, 13);
  258. this.label4.TabIndex = 4;
  259. this.label4.Text = "To:";
  260. //
  261. // nupFrom
  262. //
  263. this.nupFrom.Location = new System.Drawing.Point(47, 14);
  264. this.nupFrom.Maximum = new decimal(new int[] {
  265. 100000,
  266. 0,
  267. 0,
  268. 0});
  269. this.nupFrom.Name = "nupFrom";
  270. this.nupFrom.Size = new System.Drawing.Size(120, 20);
  271. this.nupFrom.TabIndex = 1;
  272. //
  273. // label5
  274. //
  275. this.label5.AutoSize = true;
  276. this.label5.Location = new System.Drawing.Point(6, 16);
  277. this.label5.Name = "label5";
  278. this.label5.Size = new System.Drawing.Size(33, 13);
  279. this.label5.TabIndex = 2;
  280. this.label5.Text = "From:";
  281. //
  282. // chkAutoAnimate
  283. //
  284. this.chkAutoAnimate.AutoSize = true;
  285. this.chkAutoAnimate.Location = new System.Drawing.Point(21, 28);
  286. this.chkAutoAnimate.Name = "chkAutoAnimate";
  287. this.chkAutoAnimate.Size = new System.Drawing.Size(88, 17);
  288. this.chkAutoAnimate.TabIndex = 0;
  289. this.chkAutoAnimate.Text = "Auto animate";
  290. this.chkAutoAnimate.ThreeState = true;
  291. this.chkAutoAnimate.UseVisualStyleBackColor = true;
  292. this.chkAutoAnimate.CheckedChanged += new System.EventHandler(this.chkAutoAnimate_CheckedChanged);
  293. //
  294. // groupBox4
  295. //
  296. this.groupBox4.Controls.Add(this.label6);
  297. this.groupBox4.Controls.Add(this.cbCameraType);
  298. this.groupBox4.Controls.Add(this.chkNoExport);
  299. this.groupBox4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  300. this.groupBox4.Location = new System.Drawing.Point(12, 12);
  301. this.groupBox4.Name = "groupBox4";
  302. this.groupBox4.Size = new System.Drawing.Size(319, 101);
  303. this.groupBox4.TabIndex = 6;
  304. this.groupBox4.TabStop = false;
  305. this.groupBox4.Text = "Misc.";
  306. //
  307. // label6
  308. //
  309. this.label6.AutoSize = true;
  310. this.label6.Location = new System.Drawing.Point(16, 57);
  311. this.label6.Name = "label6";
  312. this.label6.Size = new System.Drawing.Size(34, 13);
  313. this.label6.TabIndex = 6;
  314. this.label6.Text = "Type:";
  315. //
  316. // cbCameraType
  317. //
  318. this.cbCameraType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  319. this.cbCameraType.FormattingEnabled = true;
  320. this.cbCameraType.Items.AddRange(new object[] {
  321. "AnaglyphArcRotateCamera",
  322. "AnaglyphFreeCamera",
  323. "ArcRotateCamera",
  324. "DeviceOrientationCamera",
  325. "FollowCamera",
  326. "FreeCamera",
  327. "GamepadCamera",
  328. "TouchCamera",
  329. "VirtualJoysticksCamera",
  330. "WebVRFreeCamera",
  331. "VRDeviceOrientationFreeCamera"});
  332. this.cbCameraType.Location = new System.Drawing.Point(23, 74);
  333. this.cbCameraType.Name = "cbCameraType";
  334. this.cbCameraType.Size = new System.Drawing.Size(290, 21);
  335. this.cbCameraType.TabIndex = 5;
  336. //
  337. // chkNoExport
  338. //
  339. this.chkNoExport.AutoSize = true;
  340. this.chkNoExport.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  341. this.chkNoExport.Location = new System.Drawing.Point(21, 28);
  342. this.chkNoExport.Name = "chkNoExport";
  343. this.chkNoExport.Size = new System.Drawing.Size(87, 17);
  344. this.chkNoExport.TabIndex = 4;
  345. this.chkNoExport.Text = "Do not export";
  346. this.chkNoExport.ThreeState = true;
  347. this.chkNoExport.UseVisualStyleBackColor = true;
  348. //
  349. // CameraPropertiesForm
  350. //
  351. this.AcceptButton = this.butOK;
  352. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  353. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  354. this.CancelButton = this.butCancel;
  355. this.ClientSize = new System.Drawing.Size(343, 613);
  356. this.Controls.Add(this.groupBox4);
  357. this.Controls.Add(this.groupBox3);
  358. this.Controls.Add(this.groupBox2);
  359. this.Controls.Add(this.butCancel);
  360. this.Controls.Add(this.butOK);
  361. this.Controls.Add(this.groupBox1);
  362. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  363. this.Name = "CameraPropertiesForm";
  364. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  365. this.Text = "Babylon.js - Camera Properties";
  366. this.Load += new System.EventHandler(this.CameraPropertiesForm_Load);
  367. this.groupBox1.ResumeLayout(false);
  368. this.groupBox1.PerformLayout();
  369. this.groupBox2.ResumeLayout(false);
  370. this.groupBox2.PerformLayout();
  371. ((System.ComponentModel.ISupportInitialize)(this.nupInertia)).EndInit();
  372. ((System.ComponentModel.ISupportInitialize)(this.nupSpeed)).EndInit();
  373. this.groupBox3.ResumeLayout(false);
  374. this.groupBox3.PerformLayout();
  375. this.grpAutoAnimate.ResumeLayout(false);
  376. this.grpAutoAnimate.PerformLayout();
  377. ((System.ComponentModel.ISupportInitialize)(this.nupTo)).EndInit();
  378. ((System.ComponentModel.ISupportInitialize)(this.nupFrom)).EndInit();
  379. this.groupBox4.ResumeLayout(false);
  380. this.groupBox4.PerformLayout();
  381. this.ResumeLayout(false);
  382. }
  383. #endregion
  384. private System.Windows.Forms.GroupBox groupBox1;
  385. private System.Windows.Forms.Button butOK;
  386. private System.Windows.Forms.Button butCancel;
  387. private System.Windows.Forms.CheckBox chkCollisions;
  388. private System.Windows.Forms.CheckBox chkGravity;
  389. private System.Windows.Forms.GroupBox groupBox2;
  390. private System.Windows.Forms.Label label1;
  391. private System.Windows.Forms.NumericUpDown nupSpeed;
  392. private System.Windows.Forms.Label label2;
  393. private System.Windows.Forms.NumericUpDown nupInertia;
  394. private System.Windows.Forms.Label label3;
  395. private Vector3Control ellipsoidControl;
  396. private System.Windows.Forms.GroupBox groupBox3;
  397. private System.Windows.Forms.GroupBox grpAutoAnimate;
  398. private System.Windows.Forms.CheckBox chkLoop;
  399. private System.Windows.Forms.NumericUpDown nupTo;
  400. private System.Windows.Forms.Label label4;
  401. private System.Windows.Forms.NumericUpDown nupFrom;
  402. private System.Windows.Forms.Label label5;
  403. private System.Windows.Forms.CheckBox chkAutoAnimate;
  404. private System.Windows.Forms.GroupBox groupBox4;
  405. private System.Windows.Forms.CheckBox chkNoExport;
  406. private System.Windows.Forms.Label label6;
  407. private System.Windows.Forms.ComboBox cbCameraType;
  408. }
  409. }