diff --git a/Easy Playable Maker/BuildData.cs b/Easy Playable Maker/BuildData.cs index f7454c2..69a707b 100644 --- a/Easy Playable Maker/BuildData.cs +++ b/Easy Playable Maker/BuildData.cs @@ -5,6 +5,6 @@ class BuildData { public const string UpdateUrl = "https://raw.githubusercontent.com/KidoHyde/EasyPlayableMaker/main/Easy%20Playable%20Maker/Version.txt"; public const string ReleasesPage = "https://github.com/KidoHyde/EasyPlayableMaker/releases/latest"; - public const long CurrentVersion = 12; + public const long CurrentVersion = 13; } } \ No newline at end of file diff --git a/Easy Playable Maker/ExpressionComponent.designer.cs b/Easy Playable Maker/ExpressionComponent.designer.cs index 01346b1..18e9867 100644 --- a/Easy Playable Maker/ExpressionComponent.designer.cs +++ b/Easy Playable Maker/ExpressionComponent.designer.cs @@ -1197,6 +1197,7 @@ private void InitializeComponent() // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.AutoScroll = true; this.BackColor = System.Drawing.SystemColors.Control; this.ClientSize = new System.Drawing.Size(1621, 482); this.Controls.Add(this.label32); diff --git a/Easy Playable Maker/HubSpawn.designer.cs b/Easy Playable Maker/HubSpawn.designer.cs index 1afe5f8..c7872c1 100644 --- a/Easy Playable Maker/HubSpawn.designer.cs +++ b/Easy Playable Maker/HubSpawn.designer.cs @@ -35,8 +35,6 @@ private void InitializeComponent() this.MakeFile = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); this.dataGridView1 = new System.Windows.Forms.DataGridView(); - this.PrefixText = new System.Windows.Forms.TextBox(); - this.label2 = new System.Windows.Forms.Label(); this.X = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Y = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Z = new System.Windows.Forms.DataGridViewTextBoxColumn(); @@ -44,7 +42,9 @@ private void InitializeComponent() this.Pitch = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Yaw = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.StaticMesh = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.ScaleWord = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Scale = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.PrefixText = new System.Windows.Forms.TextBox(); + this.label2 = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); this.SuspendLayout(); // @@ -106,30 +106,13 @@ private void InitializeComponent() this.Pitch, this.Yaw, this.StaticMesh, - this.ScaleWord}); + this.Scale}); this.dataGridView1.Location = new System.Drawing.Point(12, 12); this.dataGridView1.Name = "dataGridView1"; this.dataGridView1.Size = new System.Drawing.Size(842, 150); this.dataGridView1.TabIndex = 113; this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick); // - // PrefixText - // - this.PrefixText.Location = new System.Drawing.Point(120, 174); - this.PrefixText.Name = "PrefixText"; - this.PrefixText.Size = new System.Drawing.Size(205, 20); - this.PrefixText.TabIndex = 115; - // - // label2 - // - this.label2.AutoSize = true; - this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label2.Location = new System.Drawing.Point(20, 177); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(43, 17); - this.label2.TabIndex = 114; - this.label2.Text = "Prefix"; - // // X // this.X.HeaderText = "X"; @@ -167,11 +150,29 @@ private void InitializeComponent() // // Scale // - this.ScaleWord.HeaderText = "Scale"; - this.ScaleWord.Name = "Scale"; + this.Scale.HeaderText = "Scale"; + this.Scale.Name = "Scale"; + // + // PrefixText + // + this.PrefixText.Location = new System.Drawing.Point(120, 174); + this.PrefixText.Name = "PrefixText"; + this.PrefixText.Size = new System.Drawing.Size(205, 20); + this.PrefixText.TabIndex = 115; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label2.Location = new System.Drawing.Point(20, 177); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(43, 17); + this.label2.TabIndex = 114; + this.label2.Text = "Prefix"; // // HubSpawn // + this.AutoScroll = true; this.ClientSize = new System.Drawing.Size(887, 331); this.Controls.Add(this.PrefixText); this.Controls.Add(this.label2); @@ -207,6 +208,7 @@ private void InitializeComponent() private System.Windows.Forms.DataGridViewTextBoxColumn Yaw; private System.Windows.Forms.DataGridViewTextBoxColumn StaticMesh; private System.Windows.Forms.DataGridViewTextBoxColumn ScaleWord; + private System.Windows.Forms.DataGridViewTextBoxColumn Scale; } } diff --git a/Easy Playable Maker/HubSpawn.resx b/Easy Playable Maker/HubSpawn.resx index 4a9bac8..05c4f81 100644 --- a/Easy Playable Maker/HubSpawn.resx +++ b/Easy Playable Maker/HubSpawn.resx @@ -138,9 +138,6 @@ True - - True - diff --git a/Easy Playable Maker/MainPlayableWindow.Designer.cs b/Easy Playable Maker/MainPlayableWindow.Designer.cs index 16a1b72..fd0db9e 100644 --- a/Easy Playable Maker/MainPlayableWindow.Designer.cs +++ b/Easy Playable Maker/MainPlayableWindow.Designer.cs @@ -860,6 +860,7 @@ private void InitializeComponent() // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.AutoScroll = true; this.BackColor = System.Drawing.SystemColors.Control; this.ClientSize = new System.Drawing.Size(1459, 488); this.Controls.Add(this.PitchText); diff --git a/Easy Playable Maker/MainView.Designer.cs b/Easy Playable Maker/MainView.Designer.cs index 005a5c1..82e643a 100644 --- a/Easy Playable Maker/MainView.Designer.cs +++ b/Easy Playable Maker/MainView.Designer.cs @@ -106,6 +106,7 @@ private void InitializeComponent() // // MainView // + this.AutoScroll = true; this.ClientSize = new System.Drawing.Size(394, 393); this.Controls.Add(this.ExpressionComponent); this.Controls.Add(this.button2); diff --git a/Easy Playable Maker/OneMeshPlayable.Designer.cs b/Easy Playable Maker/OneMeshPlayable.Designer.cs index b853dc2..c09e816 100644 --- a/Easy Playable Maker/OneMeshPlayable.Designer.cs +++ b/Easy Playable Maker/OneMeshPlayable.Designer.cs @@ -387,6 +387,7 @@ private void InitializeComponent() // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.AutoScroll = true; this.BackColor = System.Drawing.SystemColors.Control; this.ClientSize = new System.Drawing.Size(1196, 482); this.Controls.Add(this.PitchText); diff --git a/Easy Playable Maker/PlayerSwapper.Designer.cs b/Easy Playable Maker/PlayerSwapper.Designer.cs index 8bf630b..bb0c410 100644 --- a/Easy Playable Maker/PlayerSwapper.Designer.cs +++ b/Easy Playable Maker/PlayerSwapper.Designer.cs @@ -335,6 +335,7 @@ private void InitializeComponent() // // PlayerSwapper // + this.AutoScroll = true; this.ClientSize = new System.Drawing.Size(704, 320); this.Controls.Add(this.Output); this.Controls.Add(this.MakeFile); diff --git a/Easy Playable Maker/Version.txt b/Easy Playable Maker/Version.txt index 3cacc0b..ca7bf83 100644 --- a/Easy Playable Maker/Version.txt +++ b/Easy Playable Maker/Version.txt @@ -1 +1 @@ -12 \ No newline at end of file +13 \ No newline at end of file