namespace GameEditorPlugin.Tools
{
partial class FormAstar
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormAstar));
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.toolStripDropDownButton1 = new System.Windows.Forms.ToolStripDropDownButton();
this.resetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.btn_LoadScene = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripDropDownButton2 = new System.Windows.Forms.ToolStripDropDownButton();
this.btn_FreeMove = new System.Windows.Forms.ToolStripMenuItem();
this.btn_Optimize = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripDropDownButton3 = new System.Windows.Forms.ToolStripDropDownButton();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.btn_FillTerrain = new System.Windows.Forms.ToolStripButton();
this.btn_CleanTerrain = new System.Windows.Forms.ToolStripButton();
this.com_FillTerrainSize = new System.Windows.Forms.ToolStripComboBox();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.displayTerrainPanel1 = new GameEditorPlugin.Win32.DisplayTerrainPanel();
this.num_OptimizePathLimit = new System.Windows.Forms.NumericUpDown();
this.label1 = new System.Windows.Forms.Label();
this.num_EnableSpaceDivDistance = new System.Windows.Forms.NumericUpDown();
this.label4 = new System.Windows.Forms.Label();
this.num_SpaceDivDistance = new System.Windows.Forms.NumericUpDown();
this.label3 = new System.Windows.Forms.Label();
this.gCToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.num_OptimizePathLimit)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.num_EnableSpaceDivDistance)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.num_SpaceDivDistance)).BeginInit();
this.SuspendLayout();
//
// toolStrip1
//
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripDropDownButton1,
this.toolStripSeparator1,
this.toolStripDropDownButton2,
this.toolStripSeparator2,
this.toolStripDropDownButton3,
this.toolStripSeparator4,
this.btn_FillTerrain,
this.btn_CleanTerrain,
this.com_FillTerrainSize,
this.toolStripSeparator3});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(1280, 25);
this.toolStrip1.TabIndex = 1;
this.toolStrip1.Text = "toolStrip1";
//
// toolStripDropDownButton1
//
this.toolStripDropDownButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripDropDownButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.resetToolStripMenuItem,
this.btn_LoadScene,
this.gCToolStripMenuItem});
this.toolStripDropDownButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripDropDownButton1.Image")));
this.toolStripDropDownButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripDropDownButton1.Name = "toolStripDropDownButton1";
this.toolStripDropDownButton1.Size = new System.Drawing.Size(54, 22);
this.toolStripDropDownButton1.Text = "Menu";
//
// resetToolStripMenuItem
//
this.resetToolStripMenuItem.Name = "resetToolStripMenuItem";
this.resetToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F3;
this.resetToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.resetToolStripMenuItem.Text = "随机地图";
this.resetToolStripMenuItem.Click += new System.EventHandler(this.resetToolStripMenuItem_Click);
//
// btn_LoadScene
//
this.btn_LoadScene.Name = "btn_LoadScene";
this.btn_LoadScene.Size = new System.Drawing.Size(152, 22);
this.btn_LoadScene.Text = "加载场景文件";
this.btn_LoadScene.Click += new System.EventHandler(this.btn_LoadScene_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
//
// toolStripDropDownButton2
//
this.toolStripDropDownButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripDropDownButton2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.btn_FreeMove,
this.btn_Optimize});
this.toolStripDropDownButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripDropDownButton2.Image")));
this.toolStripDropDownButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripDropDownButton2.Name = "toolStripDropDownButton2";
this.toolStripDropDownButton2.Size = new System.Drawing.Size(67, 22);
this.toolStripDropDownButton2.Text = "Settings";
//
// btn_FreeMove
//
this.btn_FreeMove.Checked = true;
this.btn_FreeMove.CheckOnClick = true;
this.btn_FreeMove.CheckState = System.Windows.Forms.CheckState.Checked;
this.btn_FreeMove.Name = "btn_FreeMove";
this.btn_FreeMove.Size = new System.Drawing.Size(148, 22);
this.btn_FreeMove.Text = "鼠标跟踪寻路";
//
// btn_Optimize
//
this.btn_Optimize.Checked = true;
this.btn_Optimize.CheckOnClick = true;
this.btn_Optimize.CheckState = System.Windows.Forms.CheckState.Checked;
this.btn_Optimize.Name = "btn_Optimize";
this.btn_Optimize.Size = new System.Drawing.Size(148, 22);
this.btn_Optimize.Text = "优化路径";
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
//
// toolStripDropDownButton3
//
this.toolStripDropDownButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripDropDownButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripDropDownButton3.Image")));
this.toolStripDropDownButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripDropDownButton3.Name = "toolStripDropDownButton3";
this.toolStripDropDownButton3.Size = new System.Drawing.Size(52, 22);
this.toolStripDropDownButton3.Text = "Show";
//
// toolStripSeparator4
//
this.toolStripSeparator4.Name = "toolStripSeparator4";
this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
//
// btn_FillTerrain
//
this.btn_FillTerrain.CheckOnClick = true;
this.btn_FillTerrain.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.btn_FillTerrain.Image = ((System.Drawing.Image)(resources.GetObject("btn_FillTerrain.Image")));
this.btn_FillTerrain.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btn_FillTerrain.Name = "btn_FillTerrain";
this.btn_FillTerrain.Size = new System.Drawing.Size(23, 22);
this.btn_FillTerrain.Text = "Fill Terrain";
this.btn_FillTerrain.Click += new System.EventHandler(this.btn_FillTerrain_Click);
//
// btn_CleanTerrain
//
this.btn_CleanTerrain.CheckOnClick = true;
this.btn_CleanTerrain.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.btn_CleanTerrain.Image = ((System.Drawing.Image)(resources.GetObject("btn_CleanTerrain.Image")));
this.btn_CleanTerrain.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btn_CleanTerrain.Name = "btn_CleanTerrain";
this.btn_CleanTerrain.Size = new System.Drawing.Size(23, 22);
this.btn_CleanTerrain.Text = "Clean Terrain";
this.btn_CleanTerrain.Click += new System.EventHandler(this.btn_CleanTerrain_Click);
//
// com_FillTerrainSize
//
this.com_FillTerrainSize.Items.AddRange(new object[] {
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"20",
"30",
"40",
"50"});
this.com_FillTerrainSize.Name = "com_FillTerrainSize";
this.com_FillTerrainSize.Size = new System.Drawing.Size(75, 25);
this.com_FillTerrainSize.Text = "5";
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
this.splitContainer1.Location = new System.Drawing.Point(0, 25);
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.displayTerrainPanel1);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.num_OptimizePathLimit);
this.splitContainer1.Panel2.Controls.Add(this.label1);
this.splitContainer1.Panel2.Controls.Add(this.num_EnableSpaceDivDistance);
this.splitContainer1.Panel2.Controls.Add(this.label4);
this.splitContainer1.Panel2.Controls.Add(this.num_SpaceDivDistance);
this.splitContainer1.Panel2.Controls.Add(this.label3);
this.splitContainer1.Size = new System.Drawing.Size(1280, 828);
this.splitContainer1.SplitterDistance = 1071;
this.splitContainer1.TabIndex = 2;
//
// displayTerrainPanel1
//
this.displayTerrainPanel1.Display = null;
this.displayTerrainPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.displayTerrainPanel1.ForeColor = System.Drawing.Color.Cornsilk;
this.displayTerrainPanel1.FPS = 30;
this.displayTerrainPanel1.Location = new System.Drawing.Point(0, 0);
this.displayTerrainPanel1.Name = "displayTerrainPanel1";
this.displayTerrainPanel1.Size = new System.Drawing.Size(1071, 828);
this.displayTerrainPanel1.TabIndex = 0;
this.displayTerrainPanel1.PictureBoxMouseDown += new System.Windows.Forms.MouseEventHandler(this.displayTerrainPanel1_PictureBoxMouseDown);
this.displayTerrainPanel1.PictureBoxMouseUp += new System.Windows.Forms.MouseEventHandler(this.displayTerrainPanel1_PictureBoxMouseUp);
this.displayTerrainPanel1.PictureBoxMouseMove += new System.Windows.Forms.MouseEventHandler(this.displayTerrainPanel1_PictureBoxMouseMove);
//
// num_OptimizePathLimit
//
this.num_OptimizePathLimit.Location = new System.Drawing.Point(32, 157);
this.num_OptimizePathLimit.Maximum = new decimal(new int[] {
1000000,
0,
0,
0});
this.num_OptimizePathLimit.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.num_OptimizePathLimit.Name = "num_OptimizePathLimit";
this.num_OptimizePathLimit.Size = new System.Drawing.Size(120, 21);
this.num_OptimizePathLimit.TabIndex = 9;
this.num_OptimizePathLimit.Value = new decimal(new int[] {
4,
0,
0,
0});
this.num_OptimizePathLimit.ValueChanged += new System.EventHandler(this.num_OptimizePathLimit_ValueChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(30, 142);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(149, 12);
this.label1.TabIndex = 8;
this.label1.Text = "启用优化路径空间分割距离";
//
// num_EnableSpaceDivDistance
//
this.num_EnableSpaceDivDistance.Location = new System.Drawing.Point(32, 97);
this.num_EnableSpaceDivDistance.Maximum = new decimal(new int[] {
1000000,
0,
0,
0});
this.num_EnableSpaceDivDistance.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.num_EnableSpaceDivDistance.Name = "num_EnableSpaceDivDistance";
this.num_EnableSpaceDivDistance.Size = new System.Drawing.Size(120, 21);
this.num_EnableSpaceDivDistance.TabIndex = 7;
this.num_EnableSpaceDivDistance.Value = new decimal(new int[] {
4,
0,
0,
0});
this.num_EnableSpaceDivDistance.ValueChanged += new System.EventHandler(this.num_EnableSpaceDivDistance_ValueChanged);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(30, 82);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(101, 12);
this.label4.TabIndex = 6;
this.label4.Text = "启用空间分割距离";
//
// num_SpaceDivDistance
//
this.num_SpaceDivDistance.Location = new System.Drawing.Point(32, 40);
this.num_SpaceDivDistance.Name = "num_SpaceDivDistance";
this.num_SpaceDivDistance.Size = new System.Drawing.Size(120, 21);
this.num_SpaceDivDistance.TabIndex = 5;
this.num_SpaceDivDistance.Value = new decimal(new int[] {
9,
0,
0,
0});
this.num_SpaceDivDistance.ValueChanged += new System.EventHandler(this.num_SpaceDivDistance_ValueChanged);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(30, 25);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(77, 12);
this.label3.TabIndex = 4;
this.label3.Text = "空间分割尺寸";
//
// gCToolStripMenuItem
//
this.gCToolStripMenuItem.Name = "gCToolStripMenuItem";
this.gCToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.gCToolStripMenuItem.Text = "GC";
this.gCToolStripMenuItem.Click += new System.EventHandler(this.gCToolStripMenuItem_Click);
//
// FormAstar
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1280, 853);
this.Controls.Add(this.splitContainer1);
this.Controls.Add(this.toolStrip1);
this.Name = "FormAstar";
this.Text = "FormAstar";
this.Load += new System.EventHandler(this.FormAstar_Load);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
this.splitContainer1.Panel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.num_OptimizePathLimit)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.num_EnableSpaceDivDistance)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.num_SpaceDivDistance)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private GameEditorPlugin.Win32.DisplayTerrainPanel displayTerrainPanel1;
private System.Windows.Forms.ToolStrip toolStrip1;
private System.Windows.Forms.ToolStripDropDownButton toolStripDropDownButton1;
private System.Windows.Forms.ToolStripMenuItem resetToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem btn_LoadScene;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripDropDownButton toolStripDropDownButton2;
private System.Windows.Forms.ToolStripMenuItem btn_FreeMove;
private System.Windows.Forms.ToolStripMenuItem btn_Optimize;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripButton btn_FillTerrain;
private System.Windows.Forms.ToolStripComboBox com_FillTerrainSize;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
private System.Windows.Forms.ToolStripButton btn_CleanTerrain;
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.NumericUpDown num_OptimizePathLimit;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.NumericUpDown num_EnableSpaceDivDistance;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.NumericUpDown num_SpaceDivDistance;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.ToolStripDropDownButton toolStripDropDownButton3;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
private System.Windows.Forms.ToolStripMenuItem gCToolStripMenuItem;
}
}