게임 접속 시 출석부 받을 거 있으면 바로 뜨기
This commit is contained in:
parent
5716d8d3fe
commit
23e4b33a0d
|
|
@ -1,3 +1,4 @@
|
||||||
|
using System.Collections;
|
||||||
using TMPro;
|
using TMPro;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
|
|
@ -22,6 +23,13 @@ public class LobbyUI : MonoBehaviourSingletonTemplate<LobbyUI>
|
||||||
public Game_Lucky m_Game_Lucky;
|
public Game_Lucky m_Game_Lucky;
|
||||||
[SerializeField] GameObject go_shop;
|
[SerializeField] GameObject go_shop;
|
||||||
|
|
||||||
|
IEnumerator Start()
|
||||||
|
{
|
||||||
|
yield return null;
|
||||||
|
if (SaveMgr.Ins.CanGet_Attandance())
|
||||||
|
m_AttandanceUI.Set();
|
||||||
|
}
|
||||||
|
|
||||||
public void OnClick_Button(GameObject btn)
|
public void OnClick_Button(GameObject btn)
|
||||||
{
|
{
|
||||||
switch (btn.name)
|
switch (btn.name)
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
게임 접속 시 출석부 받을 거 있으면 바로 뜨기
|
사운드 및 BGM 요청
|
||||||
보상 받은 뒤 토스트 보여주기
|
|
||||||
|
|
||||||
사운드 및 BGM 요청
|
미니게임 만들기
|
||||||
Loading…
Reference in New Issue