2025-01-27 22:11:24 -05:00
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
2025-02-12 00:01:23 -05:00
|
|
|
using TMPro;
|
2025-01-27 22:11:24 -05:00
|
|
|
using UnityEngine;
|
2025-02-11 22:58:56 -05:00
|
|
|
using UnityEngine.Serialization;
|
2025-01-27 22:11:24 -05:00
|
|
|
|
2025-02-11 22:58:56 -05:00
|
|
|
namespace Ichni.Editor
|
2025-01-27 22:11:24 -05:00
|
|
|
{
|
2025-02-11 22:58:56 -05:00
|
|
|
public class DynamicUIContainer : MonoBehaviour
|
2025-01-27 22:11:24 -05:00
|
|
|
{
|
2025-02-12 00:01:23 -05:00
|
|
|
public TMP_Text title;
|
2025-02-11 22:58:56 -05:00
|
|
|
public List<DynamicUIElement> dynamicUIElements = new List<DynamicUIElement>();
|
|
|
|
|
[FormerlySerializedAs("container")] public RectTransform rect;
|
2025-01-27 22:11:24 -05:00
|
|
|
}
|
2025-02-11 22:58:56 -05:00
|
|
|
}
|