添加陕西宝鸡场景

This commit is contained in:
ZYT
2025-11-08 15:26:18 +08:00
parent a722494d71
commit 3a9c718945
22 changed files with 56380 additions and 83 deletions

View File

@@ -369,6 +369,13 @@ public class Boss : Enemy
Both();
});
}
if (GameInit.Ins.gamePlace == GamePlace.Shanxi_Baoji_Meixian_TianlongShangcheng)
{
transform.DOMove(new Vector3(-3.65f, 3f,2.89f), 4).OnComplete(() =>
{
Both();
});
}
else
{
transform.DOMoveZ(endValue, 4).OnComplete(() =>

View File

@@ -361,6 +361,13 @@ public class Leviathan : Enemy
Both();
});
}
else if(GameInit.Ins.gamePlace == GamePlace.Shanxi_Baoji_Meixian_TianlongShangcheng)
{
transform.DOMove(new Vector3(8.5f,-3.5f,-3.6f),2).OnComplete(() =>
{
Both();
});
}
else
{
transform.DOMoveZ(-15f, 2).OnComplete(() =>

View File

@@ -353,6 +353,13 @@ public class MachineDragon : Enemy
Both();
});
}
else if(GameInit.Ins.gamePlace == GamePlace.Shanxi_Baoji_Meixian_TianlongShangcheng)
{
transform.DOMove(new Vector3(4.96f,0f,3.21f), 4).OnComplete(() =>
{
Both();
});
}
else
{
transform.DOMoveZ(endValue, 4).OnComplete(() =>

View File

@@ -68,6 +68,8 @@ public enum GamePlace
Jiangsu_Xvzhou_Guolou_Oulebao=36,
Jiangsu_Xvzhou_Guolou_Oulebao_2=-36,
Jiangsu_Xvzhou_Suning_Guangchang =37,
Shanxi_Baoji_Meixian_TianlongShangcheng= 38,
Hunan_Changde_Lixian_WandaGuangchang=39,
}
public class GameManager : MonoBehaviour