2024-11-13 02:03:11 +08:00
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
using UnityEngine.UI;
|
|
|
|
|
|
|
|
|
|
public class FailPanel : BasePanel
|
|
|
|
|
{
|
|
|
|
|
public Button ReturnBtn;
|
|
|
|
|
public GameObject moveObject;
|
|
|
|
|
public static FailPanel instance;
|
2024-11-16 02:05:07 +08:00
|
|
|
|
public GameObject bg;
|
2024-11-18 16:53:39 +08:00
|
|
|
|
public PlayerMovePos woniuMovePos;
|
2024-11-13 02:03:11 +08:00
|
|
|
|
public override void Start()
|
|
|
|
|
{
|
|
|
|
|
instance = this;
|
|
|
|
|
base.Start();
|
|
|
|
|
ReturnBtn.onClick.AddListener(OnClickReBtn);
|
2024-11-13 10:44:34 +08:00
|
|
|
|
|
2024-11-13 02:03:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void OnClickReBtn()
|
|
|
|
|
{
|
2024-11-19 17:55:35 +08:00
|
|
|
|
//moveObject.GetComponent<PlayerMove>().ReturnStartPos();
|
2024-11-13 02:03:11 +08:00
|
|
|
|
HidePanel();
|
|
|
|
|
}
|
|
|
|
|
public override void HidePanel()
|
|
|
|
|
{
|
|
|
|
|
base.HidePanel();
|
2024-11-19 17:55:35 +08:00
|
|
|
|
//woniuMovePos.IsReturn = true;
|
2024-11-15 12:09:52 +08:00
|
|
|
|
//BossContro.instance.ReturnParent();
|
2024-11-13 18:01:18 +08:00
|
|
|
|
MaskContro.instance.SetMask(false);
|
2024-11-13 02:03:11 +08:00
|
|
|
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ԭ<EFBFBD><D4AD><EFBFBD><EFBFBD>λ<EFBFBD><CEBB>
|
|
|
|
|
}
|
2024-11-13 18:01:18 +08:00
|
|
|
|
public override void ShowPanel()
|
|
|
|
|
{
|
|
|
|
|
base.ShowPanel();
|
2024-11-16 05:56:57 +08:00
|
|
|
|
//foreach (GameObject item in bg.GetComponent<AllHouseContro>().bossobj)
|
|
|
|
|
//{
|
|
|
|
|
// item.GetComponent<BossContro>().ReturnParent();
|
|
|
|
|
//}
|
2024-11-16 02:05:07 +08:00
|
|
|
|
//dic[room_id].GetComponent<BossContro>().ReturnParent();
|
2024-11-13 18:01:18 +08:00
|
|
|
|
}
|
2024-11-13 02:03:11 +08:00
|
|
|
|
}
|