修改debug
This commit is contained in:
parent
7a84c0e862
commit
f52d0c75f1
|
@ -88,6 +88,12 @@ public partial class SROptions
|
|||
set => Time.timeScale = value ? 0 : 1;
|
||||
}
|
||||
|
||||
[Category("人类")]
|
||||
public void 人Lv1()
|
||||
{
|
||||
CreateHuman(1);
|
||||
}
|
||||
|
||||
[Category("人类")]
|
||||
public void 人Lv2()
|
||||
{
|
||||
|
@ -124,23 +130,23 @@ public partial class SROptions
|
|||
CreateHuman(7);
|
||||
}
|
||||
|
||||
[Category("人类")]
|
||||
public void 人Lv8()
|
||||
{
|
||||
CreateHuman(8);
|
||||
}
|
||||
//[Category("人类")]
|
||||
//public void 人Lv8()
|
||||
//{
|
||||
// CreateHuman(8);
|
||||
//}
|
||||
|
||||
[Category("人类")]
|
||||
public void 人Lv9()
|
||||
{
|
||||
CreateHuman(9);
|
||||
}
|
||||
//[Category("人类")]
|
||||
//public void 人Lv9()
|
||||
//{
|
||||
// CreateHuman(9);
|
||||
//}
|
||||
|
||||
[Category("人类")]
|
||||
public void 人Lv10()
|
||||
{
|
||||
CreateHuman(10);
|
||||
}
|
||||
//[Category("人类")]
|
||||
//public void 人Lv10()
|
||||
//{
|
||||
// CreateHuman(10);
|
||||
//}
|
||||
|
||||
private void CreateHuman(int pLevel)
|
||||
{
|
||||
|
@ -154,6 +160,12 @@ public partial class SROptions
|
|||
}
|
||||
}
|
||||
|
||||
[Category("怪兽")]
|
||||
public void 怪Lv1()
|
||||
{
|
||||
CreateMonster(1);
|
||||
}
|
||||
|
||||
[Category("怪兽")]
|
||||
public void 怪Lv2()
|
||||
{
|
||||
|
@ -190,23 +202,23 @@ public partial class SROptions
|
|||
CreateMonster(7);
|
||||
}
|
||||
|
||||
[Category("怪兽")]
|
||||
public void 怪Lv8()
|
||||
{
|
||||
CreateMonster(8);
|
||||
}
|
||||
//[Category("怪兽")]
|
||||
//public void 怪Lv8()
|
||||
//{
|
||||
// CreateMonster(8);
|
||||
//}
|
||||
|
||||
[Category("怪兽")]
|
||||
public void 怪Lv9()
|
||||
{
|
||||
CreateMonster(9);
|
||||
}
|
||||
//[Category("怪兽")]
|
||||
//public void 怪Lv9()
|
||||
//{
|
||||
// CreateMonster(9);
|
||||
//}
|
||||
|
||||
[Category("怪兽")]
|
||||
public void 怪Lv10()
|
||||
{
|
||||
CreateMonster(10);
|
||||
}
|
||||
//[Category("怪兽")]
|
||||
//public void 怪Lv10()
|
||||
//{
|
||||
// CreateMonster(10);
|
||||
//}
|
||||
|
||||
private void CreateMonster(int pLevel)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue