我在配置文件中使用了ExampleConfig.cs 中的示范的typeHasEditorRef 和 delegateHasEditorRef
例如在Gen的时候,进行到一个方法
public abstract class InstanceMonoBehavior<T> : MonoBehaviour where T : InstanceMonoBehavior<T>
{
private static T _instance;
public static T GetInstance()
{
if (_instance == null)
{
................
其中T GetInstance()就会触发
System.StackOverflowException: The requested operation caused a stack overflow
不仅这个方法,LitJson也有几个方法会出现报错。
我自己改了typeHasEditorRef能解决,可否在ExampleConfig.cs中在处理一下呢?