14 lines
240 B
C#
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;
|
||
|
}
|
||
|
}
|