Files
2026-03-04 10:03:45 +08:00

14 lines
240 B
C#

using System.Collections.Generic;
using UnityEngine;
[ExecuteInEditMode]
public class ES3GameObject : MonoBehaviour
{
public List<Component> components = new List<Component>();
private void Update()
{
_ = Application.isPlaying;
}
}