Project_WL/Assets/Script/UI/PC/Info/PCInfoUI_Center.cs

17 lines
367 B
C#
Raw Normal View History

2024-12-15 01:39:39 +00:00
using System.Collections;
using System.Collections.Generic;
using TMPro;
using UnityEngine;
using UnityEngine.UI;
public class PCInfoUI_Center : MonoBehaviour
{
public TextMeshProUGUI[] texts; // 0 코스튬 이름, 1 코스튬 대사
public Image[] images; // 0 코스튬
public Transform tf_Model; // 모델 위치
public void Set()
{
}
}