Inspector

初步测试Inspector
This commit is contained in:
SoulliesOfficial
2025-02-11 22:58:56 -05:00
parent 1b3c3556a1
commit f949cd3229
33 changed files with 1679 additions and 93 deletions

View File

@@ -1,18 +1,13 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Serialization;
public class DynamicUIContainer : MonoBehaviour
namespace Ichni.Editor
{
// Start is called before the first frame update
void Start()
public class DynamicUIContainer : MonoBehaviour
{
public List<DynamicUIElement> dynamicUIElements = new List<DynamicUIElement>();
[FormerlySerializedAs("container")] public RectTransform rect;
}
// Update is called once per frame
void Update()
{
}
}
}