You've already forked UniversalViewer
10 lines
225 B
C#
10 lines
225 B
C#
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class MorphPanelCategory : MonoBehaviour
|
|
{
|
|
public TMPro.TMP_Text Label;
|
|
public Transform Content => _scrollRect.content;
|
|
[SerializeField] ScrollRect _scrollRect;
|
|
}
|