添加宁夏银川石嘴山万达广场场景

This commit is contained in:
ZYT
2026-01-20 18:28:40 +08:00
parent 2fc2230ac3
commit f20d2755aa
20 changed files with 28387 additions and 3 deletions

View File

@@ -460,9 +460,9 @@ public class Boss : Enemy
Both();
});
}
if (GameInit.Ins.gamePlace == GamePlace.Guangdong_Meizhou_Meixian_TianhongShangchang)
if (GameInit.Ins.gamePlace == GamePlace.Ningxia_Yinchuang_Shizuishan_WandaGuangchang)
{
transform.DOMove(new Vector3(0.14f, 3f, 2.53f), 4).OnComplete(() =>
transform.DOMove(new Vector3(0.2f, 3f, 3.89f), 4).OnComplete(() =>
{
Both();
});

View File

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

View File

@@ -509,6 +509,13 @@ public class Leviathan : Enemy
Both();
});
}
else if (GameInit.Ins.gamePlace == GamePlace.Ningxia_Yinchuang_Shizuishan_WandaGuangchang)
{
transform.DOMove(new Vector3(0.64f, -3.5f,-7.34f), 2).OnComplete(() =>
{
Both();
});
}
else if (GameInit.Ins.gamePlace == GamePlace.Jiangxi_Ganzhou_Longnan_WandaGuangchang_Shinei)
{
transform.DOMove(new Vector3(4.18f, -3.5f,-2.4f), 2).OnComplete(() =>

View File

@@ -473,6 +473,13 @@ public class MachineDragon : Enemy
Both();
});
}
else if (GameInit.Ins.gamePlace == GamePlace.Ningxia_Yinchuang_Shizuishan_WandaGuangchang)
{
transform.DOMove(new Vector3(-0.38f, 0f,3.18f), 4).OnComplete(() =>
{
Both();
});
}
else if (GameInit.Ins.gamePlace == GamePlace.Jiangxi_Ganzhou_Longnan_WandaGuangchang_Shinei)
{
transform.DOMove(new Vector3(0.6f, 0f,5.58f), 4).OnComplete(() =>

View File

@@ -757,6 +757,10 @@ public class GameManager : MonoBehaviour
{
EnergyPump.transform.position = new Vector3(-7.77f, 0, 1.11f);
}
if (GameInit.Ins.gamePlace == GamePlace.Ningxia_Yinchuang_Shizuishan_WandaGuangchang)
{
EnergyPump.transform.position = new Vector3(0.91f, 0, 3.67f);
}
EnergyPumpTag++;