UniversalViewer/Assets/Scripts/ModelViewerBase/UI/MorphPanelCategory.cs

10 lines
225 B
C#
Raw Permalink Normal View History

2024-04-21 22:38:26 +08:00
using UnityEngine;
using UnityEngine.UI;
public class MorphPanelCategory : MonoBehaviour
{
public TMPro.TMP_Text Label;
public Transform Content => _scrollRect.content;
[SerializeField] ScrollRect _scrollRect;
}