diff --git a/Assets/Scripts/Enemy/DropShip/DropShip.cs b/Assets/Scripts/Enemy/DropShip/DropShip.cs index a77852ac..9fd8db53 100644 --- a/Assets/Scripts/Enemy/DropShip/DropShip.cs +++ b/Assets/Scripts/Enemy/DropShip/DropShip.cs @@ -178,6 +178,21 @@ public class DropShip : Enemy endValue = 25f; if(GameInit.Ins.gamePlace== GamePlace.Shandong_Jining_Shangchang_nei) endValue = 7f; + if (GameInit.Ins.gamePlace == GamePlace.Company1Floor) + { + transform.DOMove(new Vector3(7f, transform.position.y, 12f), 4).OnComplete(() => + { + isAttack = true; + foreach (var item in tailGas) + { + item.SetActive(true); + } + bloodSlider.gameObject.SetActive(true); + isShield = false; + shieldObj.SetActive(false); + _isShow = false; + }); + } if (GameInit.Ins.gamePlace == GamePlace.HangZhouLongHuTianJie||GameInit.Ins.gamePlace== GamePlace.Guangzhou_Panyv_Zhanting ) { transform.DOMoveX(endValue, 4).OnComplete(() =>