我正在使用https://github.com/vexe/VFW插件在Unity编辑器中公开嵌套列表,因此我可以编辑它们的内容。点击播放后,嵌套列表将删除其元素,并在编辑器中显示“序列为空”消息。有人设法使它起作用吗?
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Vexe.Runtime.Types;
public class TestDrawer : BaseBehaviour {
public List < List< GameObject > > test = new List<List<GameObject>> ();
}