From 676a2e85b945ff00e7a699475b3ab53baab0e666 Mon Sep 17 00:00:00 2001 From: ZYT <2300409876@qq.com> Date: Mon, 14 Jul 2025 11:17:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=85=AC=E5=8F=B8=E4=B8=80?= =?UTF-8?q?=E6=A5=BC=E5=9C=BA=E6=99=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scripts/Enemy/DropShip/DropShip.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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(() =>