타이틀 ui 수정 및 캐릭터 선택 화면 추가
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace TON
|
||||
{
|
||||
public class CharaterSelection : MonoBehaviour
|
||||
{
|
||||
public CharaterCreateUI characterCreateUI;
|
||||
|
||||
public void OnSelectMaleCat()
|
||||
{
|
||||
characterCreateUI.SelectCharacter("MaleCat");
|
||||
}
|
||||
|
||||
public void OnSelectFemaleCat()
|
||||
{
|
||||
characterCreateUI.SelectCharacter("FemaleCat");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user