타이틀 ui 수정 및 캐릭터 선택 화면 추가

This commit is contained in:
aube.lee
2025-01-28 22:00:00 +09:00
parent e665360833
commit fa08e676e5
23 changed files with 2476 additions and 6 deletions

View File

@@ -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");
}
}
}