Commit 16787df8 authored by LiLiuZhou's avatar LiLiuZhou

11

parent 3ed9569b
......@@ -18,6 +18,7 @@ public class LeeMainController : MonoBehaviour
private void Start()
{
UpdateTitleBG2Info();
}
......
......@@ -14,14 +14,17 @@ public class TiXianCell : BasePanel
switch (info.status)
{
case 0:
GetControl<Button>("btnIng").gameObject.SetActive(true);
GetControl<Button>("btnGo").gameObject.SetActive(false);
GetControl<Button>("btnHad").gameObject.SetActive(false);
break;
case 1:
GetControl<Button>("Had").gameObject.SetActive(true);
GetControl<Button>("btnGo").gameObject.SetActive(false);
GetControl<Button>("btnIng").gameObject.SetActive(false);
break;
case 2:
GetControl<Button>("btnGo").gameObject.SetActive(true);
GetControl<Button>("btnGo").onClick.RemoveAllListeners();
GetControl<Button>("btnGo").onClick.AddListener(() =>
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment