1.1 character customization
This commit is contained in:
parent
9b9fa516b9
commit
7c7205e04d
File diff suppressed because it is too large
Load Diff
|
|
@ -34,8 +34,19 @@ namespace NovetusLauncher
|
||||||
|
|
||||||
InitColors();
|
InitColors();
|
||||||
|
|
||||||
Size = new Size(671, 337);
|
bool layout = true;
|
||||||
panel2.Size = new Size(568, 302);
|
GlobalVars.OldLayout = layout;
|
||||||
|
|
||||||
|
if (GlobalVars.OldLayout == false)
|
||||||
|
{
|
||||||
|
Size = new Size(671, 337);
|
||||||
|
panel2.Size = new Size(568, 302);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Size = new Size(477, 272);
|
||||||
|
panel2.Visible = false;
|
||||||
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// TODO: Add constructor code after the InitializeComponent() call.
|
// TODO: Add constructor code after the InitializeComponent() call.
|
||||||
|
|
@ -147,7 +158,10 @@ namespace NovetusLauncher
|
||||||
{
|
{
|
||||||
if (tabControl1.SelectedTab == tabControl1.TabPages["tabPage1"])//your specific tabname
|
if (tabControl1.SelectedTab == tabControl1.TabPages["tabPage1"])//your specific tabname
|
||||||
{
|
{
|
||||||
panel3.Location = new Point(110, 359);
|
if (GlobalVars.OldLayout == false)
|
||||||
|
{
|
||||||
|
panel3.Location = new Point(110, 359);
|
||||||
|
}
|
||||||
listBox1.Items.Clear();
|
listBox1.Items.Clear();
|
||||||
listBox2.Items.Clear();
|
listBox2.Items.Clear();
|
||||||
listBox3.Items.Clear();
|
listBox3.Items.Clear();
|
||||||
|
|
@ -160,7 +174,10 @@ namespace NovetusLauncher
|
||||||
}
|
}
|
||||||
else if (tabControl1.SelectedTab == tabControl1.TabPages["tabPage7"])
|
else if (tabControl1.SelectedTab == tabControl1.TabPages["tabPage7"])
|
||||||
{
|
{
|
||||||
panel3.Location = new Point(110, 359);
|
if (GlobalVars.OldLayout == false)
|
||||||
|
{
|
||||||
|
panel3.Location = new Point(110, 359);
|
||||||
|
}
|
||||||
listBox1.Items.Clear();
|
listBox1.Items.Clear();
|
||||||
listBox2.Items.Clear();
|
listBox2.Items.Clear();
|
||||||
listBox3.Items.Clear();
|
listBox3.Items.Clear();
|
||||||
|
|
@ -185,7 +202,10 @@ namespace NovetusLauncher
|
||||||
else if (tabControl1.SelectedTab == tabControl1.TabPages["tabPage2"])//your specific tabname
|
else if (tabControl1.SelectedTab == tabControl1.TabPages["tabPage2"])//your specific tabname
|
||||||
{
|
{
|
||||||
//hats
|
//hats
|
||||||
panel3.Location = new Point(110, 239);
|
if (GlobalVars.OldLayout == false)
|
||||||
|
{
|
||||||
|
panel3.Location = new Point(110, 239);
|
||||||
|
}
|
||||||
listBox4.Items.Clear();
|
listBox4.Items.Clear();
|
||||||
listBox5.Items.Clear();
|
listBox5.Items.Clear();
|
||||||
listBox6.Items.Clear();
|
listBox6.Items.Clear();
|
||||||
|
|
@ -251,7 +271,10 @@ namespace NovetusLauncher
|
||||||
else if (tabControl1.SelectedTab == tabControl1.TabPages["tabPage3"])//your specific tabname
|
else if (tabControl1.SelectedTab == tabControl1.TabPages["tabPage3"])//your specific tabname
|
||||||
{
|
{
|
||||||
//faces
|
//faces
|
||||||
panel3.Location = new Point(110, 359);
|
if (GlobalVars.OldLayout == false)
|
||||||
|
{
|
||||||
|
panel3.Location = new Point(110, 359);
|
||||||
|
}
|
||||||
listBox1.Items.Clear();
|
listBox1.Items.Clear();
|
||||||
listBox2.Items.Clear();
|
listBox2.Items.Clear();
|
||||||
listBox3.Items.Clear();
|
listBox3.Items.Clear();
|
||||||
|
|
@ -292,7 +315,10 @@ namespace NovetusLauncher
|
||||||
else if (tabControl1.SelectedTab == tabControl1.TabPages["tabPage4"])//your specific tabname
|
else if (tabControl1.SelectedTab == tabControl1.TabPages["tabPage4"])//your specific tabname
|
||||||
{
|
{
|
||||||
//faces
|
//faces
|
||||||
panel3.Location = new Point(110, 359);
|
if (GlobalVars.OldLayout == false)
|
||||||
|
{
|
||||||
|
panel3.Location = new Point(110, 359);
|
||||||
|
}
|
||||||
listBox1.Items.Clear();
|
listBox1.Items.Clear();
|
||||||
listBox2.Items.Clear();
|
listBox2.Items.Clear();
|
||||||
listBox3.Items.Clear();
|
listBox3.Items.Clear();
|
||||||
|
|
@ -333,7 +359,10 @@ namespace NovetusLauncher
|
||||||
else if (tabControl1.SelectedTab == tabControl1.TabPages["tabPage5"])//your specific tabname
|
else if (tabControl1.SelectedTab == tabControl1.TabPages["tabPage5"])//your specific tabname
|
||||||
{
|
{
|
||||||
//faces
|
//faces
|
||||||
panel3.Location = new Point(110, 359);
|
if (GlobalVars.OldLayout == false)
|
||||||
|
{
|
||||||
|
panel3.Location = new Point(110, 359);
|
||||||
|
}
|
||||||
listBox1.Items.Clear();
|
listBox1.Items.Clear();
|
||||||
listBox2.Items.Clear();
|
listBox2.Items.Clear();
|
||||||
listBox3.Items.Clear();
|
listBox3.Items.Clear();
|
||||||
|
|
@ -374,7 +403,10 @@ namespace NovetusLauncher
|
||||||
else if (tabControl1.SelectedTab == tabControl1.TabPages["tabPage6"])//your specific tabname
|
else if (tabControl1.SelectedTab == tabControl1.TabPages["tabPage6"])//your specific tabname
|
||||||
{
|
{
|
||||||
//faces
|
//faces
|
||||||
panel3.Location = new Point(110, 359);
|
if (GlobalVars.OldLayout == false)
|
||||||
|
{
|
||||||
|
panel3.Location = new Point(110, 359);
|
||||||
|
}
|
||||||
listBox1.Items.Clear();
|
listBox1.Items.Clear();
|
||||||
listBox2.Items.Clear();
|
listBox2.Items.Clear();
|
||||||
listBox3.Items.Clear();
|
listBox3.Items.Clear();
|
||||||
|
|
@ -415,7 +447,10 @@ namespace NovetusLauncher
|
||||||
else if (tabControl1.SelectedTab == tabControl1.TabPages["tabPage8"])//your specific tabname
|
else if (tabControl1.SelectedTab == tabControl1.TabPages["tabPage8"])//your specific tabname
|
||||||
{
|
{
|
||||||
//faces
|
//faces
|
||||||
panel3.Location = new Point(110, 359);
|
if (GlobalVars.OldLayout == false)
|
||||||
|
{
|
||||||
|
panel3.Location = new Point(110, 359);
|
||||||
|
}
|
||||||
listBox1.Items.Clear();
|
listBox1.Items.Clear();
|
||||||
listBox2.Items.Clear();
|
listBox2.Items.Clear();
|
||||||
listBox3.Items.Clear();
|
listBox3.Items.Clear();
|
||||||
|
|
@ -456,7 +491,10 @@ namespace NovetusLauncher
|
||||||
else if (tabControl1.SelectedTab == tabControl1.TabPages["tabPage9"])//your specific tabname
|
else if (tabControl1.SelectedTab == tabControl1.TabPages["tabPage9"])//your specific tabname
|
||||||
{
|
{
|
||||||
//faces
|
//faces
|
||||||
panel3.Location = new Point(110, 359);
|
if (GlobalVars.OldLayout == false)
|
||||||
|
{
|
||||||
|
panel3.Location = new Point(110, 359);
|
||||||
|
}
|
||||||
listBox1.Items.Clear();
|
listBox1.Items.Clear();
|
||||||
listBox2.Items.Clear();
|
listBox2.Items.Clear();
|
||||||
listBox3.Items.Clear();
|
listBox3.Items.Clear();
|
||||||
|
|
|
||||||
|
|
@ -6,10 +6,10 @@
|
||||||
*
|
*
|
||||||
* To change this template use Tools | Options | Coding | Edit Standard Headers.
|
* To change this template use Tools | Options | Coding | Edit Standard Headers.
|
||||||
*/
|
*/
|
||||||
//TODO: ADD 1.1 LAYOUT TO CHARACTER CUSTOMIZATION AND ADD SETTINGS TO 1.1 LAYOUT.
|
//TODO: ADD SETTINGS TO 1.1 LAYOUT.
|
||||||
//#define EDITORLAYOUT1 //comment this out to edit the 1.1 layout.
|
#define EDITORLAYOUT1 //comment this out to edit the 1.1 layout.
|
||||||
#define EDITORLAYOUT2 //comment this out to edit the 1.2 layout.
|
#define EDITORLAYOUT2 //comment this out to edit the 1.2 layout.
|
||||||
//#define RETAIL //for release and testing. uncomment the above defs after editing.
|
#define RETAIL //for release and testing. uncomment the above defs after editing.
|
||||||
namespace NovetusLauncher
|
namespace NovetusLauncher
|
||||||
{
|
{
|
||||||
partial class MainForm
|
partial class MainForm
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ namespace NovetusLauncher
|
||||||
bool layout = true;
|
bool layout = true;
|
||||||
GlobalVars.OldLayout = layout;
|
GlobalVars.OldLayout = layout;
|
||||||
|
|
||||||
if (layout == false)
|
if (GlobalVars.OldLayout == false)
|
||||||
{
|
{
|
||||||
Size = new Size(745, 377);
|
Size = new Size(745, 377);
|
||||||
panel2.Size = new Size(646, 272);
|
panel2.Size = new Size(646, 272);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue