LightPropertiesForm.Designer.cs 19 KB

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