17 lines
367 B
C#
17 lines
367 B
C#
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()
|
|
{
|
|
|
|
}
|
|
} |