Unity在檢視皮膚上顯示巢狀的多個list

我寄人間雪滿頭丶發表於2020-10-15

要把顯示的資料類前面加上[System.Serializable]序列化。

	//初始的資料類
    [System.Serializable]
    public class Content
    {
        public string content;
    }

	//中間類
    [System.Serializable]
    public class Contents
    {
        public List<Content> contents;
    }
	
    public class ShowContents : MonoBehaviour
    {
        public List<Contents> test;
    }

相關文章