添加安徽宿州砀山古城商业街室内场景

This commit is contained in:
ZYT
2025-12-24 14:58:45 +08:00
parent 47290d6ab0
commit a4a0e6f750
19 changed files with 28239 additions and 4 deletions

View File

@@ -439,6 +439,13 @@ public class Boss : Enemy
Both();
});
}
if (GameInit.Ins.gamePlace == GamePlace.Anhui_Suzhou_Yueshan_Guchengshangyejie_Shinei)
{
transform.DOMove(new Vector3(1.4f, 3f, 0.67f), 4).OnComplete(() =>
{
Both();
});
}
else
{

View File

@@ -673,6 +673,21 @@ public class DropShip : Enemy
_isShow = false;
});
}
if (GameInit.Ins.gamePlace == GamePlace.Anhui_Suzhou_Yueshan_Guchengshangyejie_Shinei)
{
transform.DOMove(new Vector3(3.67f, 5f, -4.23f), 4).OnComplete(() =>
{
isAttack = true;
foreach (var item in tailGas)
{
item.SetActive(true);
}
bloodSlider.gameObject.SetActive(true);
isShield = false;
shieldObj.SetActive(false);
_isShow = false;
});
}
else
{

View File

@@ -425,6 +425,13 @@ public class Leviathan : Enemy
Both();
});
}
else if (GameInit.Ins.gamePlace == GamePlace.Anhui_Suzhou_Yueshan_Guchengshangyejie_Shinei)
{
transform.DOMove(new Vector3(-0.17f, 1.5f, -7.49f), 2).OnComplete(() =>
{
Both();
});
}
else
{

View File

@@ -410,6 +410,13 @@ public class MachineDragon : Enemy
Both();
});
}
else if (GameInit.Ins.gamePlace == GamePlace.Anhui_Suzhou_Yueshan_Guchengshangyejie_Shinei)
{
transform.DOMove(new Vector3(0.33f, 0f, 4.08f), 4).OnComplete(() =>
{
Both();
});
}
else
{

View File

@@ -81,6 +81,7 @@ public enum GamePlace
Hebei_Hengshui_Xinji_WandaGuangchang = 44,
Ningxia_Yinchuan_Jinfeng_XinhualianGuangchang = 45,
Hunan_Zhuzhou_Wanda_Shennongcheng_Chaowanshe=46,
Anhui_Suzhou_Yueshan_Guchengshangyejie_Shinei=47,
}
public class GameManager : MonoBehaviour
@@ -653,6 +654,10 @@ public class GameManager : MonoBehaviour
{
EnergyPump.transform.position = new Vector3(-0.75f, 0, 22.38f);
}
if (GameInit.Ins.gamePlace == GamePlace.Anhui_Suzhou_Yueshan_Guchengshangyejie_Shinei)
{
EnergyPump.transform.position = new Vector3(-0.2f, 0, 3.23f);
}
EnergyPumpTag++;
EnergyPump.GetComponent<EnergyPump>().Init(EnergyPumpTag);