mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-22 23:12:59 +08:00
Added Update Portal Counts button to MLO Archetype panel in project window
This commit is contained in:
parent
2c3b8ee01d
commit
50accd8180
@ -68,11 +68,13 @@
|
|||||||
this.TimeFlagsTextBox = new System.Windows.Forms.TextBox();
|
this.TimeFlagsTextBox = new System.Windows.Forms.TextBox();
|
||||||
this.TimeFlagsCheckedListBox = new System.Windows.Forms.CheckedListBox();
|
this.TimeFlagsCheckedListBox = new System.Windows.Forms.CheckedListBox();
|
||||||
this.label15 = new System.Windows.Forms.Label();
|
this.label15 = new System.Windows.Forms.Label();
|
||||||
|
this.MloUpdatePortalCountsButton = new System.Windows.Forms.Button();
|
||||||
this.BaseArchetypeTabPage.SuspendLayout();
|
this.BaseArchetypeTabPage.SuspendLayout();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.SpecialAttributeNumericUpDown)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.SpecialAttributeNumericUpDown)).BeginInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.HDTextureDistNumericUpDown)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.HDTextureDistNumericUpDown)).BeginInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.LodDistNumericUpDown)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.LodDistNumericUpDown)).BeginInit();
|
||||||
this.TabControl.SuspendLayout();
|
this.TabControl.SuspendLayout();
|
||||||
|
this.MloArchetypeTabPage.SuspendLayout();
|
||||||
this.TimeArchetypeTabPage.SuspendLayout();
|
this.TimeArchetypeTabPage.SuspendLayout();
|
||||||
this.SuspendLayout();
|
this.SuspendLayout();
|
||||||
//
|
//
|
||||||
@ -308,7 +310,7 @@
|
|||||||
"1024 - UV anims (YCD)",
|
"1024 - UV anims (YCD)",
|
||||||
"2048 - Unk12",
|
"2048 - Unk12",
|
||||||
"4096 - Unk13",
|
"4096 - Unk13",
|
||||||
"8192 - Object won't cast shadow",
|
"8192 - Object won\'t cast shadow",
|
||||||
"16384 - Unk15",
|
"16384 - Unk15",
|
||||||
"32768 - Unk16",
|
"32768 - Unk16",
|
||||||
"65536 - Double-sided rendering",
|
"65536 - Double-sided rendering",
|
||||||
@ -496,6 +498,7 @@
|
|||||||
//
|
//
|
||||||
// MloArchetypeTabPage
|
// MloArchetypeTabPage
|
||||||
//
|
//
|
||||||
|
this.MloArchetypeTabPage.Controls.Add(this.MloUpdatePortalCountsButton);
|
||||||
this.MloArchetypeTabPage.Location = new System.Drawing.Point(4, 22);
|
this.MloArchetypeTabPage.Location = new System.Drawing.Point(4, 22);
|
||||||
this.MloArchetypeTabPage.Name = "MloArchetypeTabPage";
|
this.MloArchetypeTabPage.Name = "MloArchetypeTabPage";
|
||||||
this.MloArchetypeTabPage.Padding = new System.Windows.Forms.Padding(3);
|
this.MloArchetypeTabPage.Padding = new System.Windows.Forms.Padding(3);
|
||||||
@ -578,6 +581,16 @@
|
|||||||
this.label15.TabIndex = 68;
|
this.label15.TabIndex = 68;
|
||||||
this.label15.Text = "Time Flags:";
|
this.label15.Text = "Time Flags:";
|
||||||
//
|
//
|
||||||
|
// MloUpdatePortalCountsButton
|
||||||
|
//
|
||||||
|
this.MloUpdatePortalCountsButton.Location = new System.Drawing.Point(49, 35);
|
||||||
|
this.MloUpdatePortalCountsButton.Name = "MloUpdatePortalCountsButton";
|
||||||
|
this.MloUpdatePortalCountsButton.Size = new System.Drawing.Size(153, 23);
|
||||||
|
this.MloUpdatePortalCountsButton.TabIndex = 0;
|
||||||
|
this.MloUpdatePortalCountsButton.Text = "Update Portal Counts";
|
||||||
|
this.MloUpdatePortalCountsButton.UseVisualStyleBackColor = true;
|
||||||
|
this.MloUpdatePortalCountsButton.Click += new System.EventHandler(this.MloUpdatePortalCountsButton_Click);
|
||||||
|
//
|
||||||
// EditYtypArchetypePanel
|
// EditYtypArchetypePanel
|
||||||
//
|
//
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||||
@ -595,6 +608,7 @@
|
|||||||
((System.ComponentModel.ISupportInitialize)(this.HDTextureDistNumericUpDown)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.HDTextureDistNumericUpDown)).EndInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.LodDistNumericUpDown)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.LodDistNumericUpDown)).EndInit();
|
||||||
this.TabControl.ResumeLayout(false);
|
this.TabControl.ResumeLayout(false);
|
||||||
|
this.MloArchetypeTabPage.ResumeLayout(false);
|
||||||
this.TimeArchetypeTabPage.ResumeLayout(false);
|
this.TimeArchetypeTabPage.ResumeLayout(false);
|
||||||
this.TimeArchetypeTabPage.PerformLayout();
|
this.TimeArchetypeTabPage.PerformLayout();
|
||||||
this.ResumeLayout(false);
|
this.ResumeLayout(false);
|
||||||
@ -642,5 +656,6 @@
|
|||||||
private System.Windows.Forms.TextBox TimeFlagsTextBox;
|
private System.Windows.Forms.TextBox TimeFlagsTextBox;
|
||||||
private System.Windows.Forms.CheckedListBox TimeFlagsCheckedListBox;
|
private System.Windows.Forms.CheckedListBox TimeFlagsCheckedListBox;
|
||||||
private System.Windows.Forms.Label label15;
|
private System.Windows.Forms.Label label15;
|
||||||
|
private System.Windows.Forms.Button MloUpdatePortalCountsButton;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -359,6 +359,14 @@ namespace CodeWalker.Project.Panels
|
|||||||
ProjectForm.DeleteArchetype();
|
ProjectForm.DeleteArchetype();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void MloUpdatePortalCountsButton_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
var mlo = CurrentArchetype as MloArchetype;
|
||||||
|
if (mlo == null) return;
|
||||||
|
|
||||||
|
mlo.UpdatePortalCounts();
|
||||||
|
}
|
||||||
|
|
||||||
private void TimeFlagsTextBox_TextChanged(object sender, EventArgs e)
|
private void TimeFlagsTextBox_TextChanged(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
if (populatingui) return;
|
if (populatingui) return;
|
||||||
|
Loading…
Reference in New Issue
Block a user