Created
July 20, 2016 08:04
-
-
Save peroon/14b8c1b4cb412072b6d6c9ce18471744 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Inspectorに複数データを表示するためのクラス | |
| [System.SerializableAttribute] | |
| public class ValueList{ | |
| public List<int> List = new List<int>(); | |
| public ValueList(List<int> list){ | |
| List = list; | |
| } | |
| } | |
| //Inspectorに表示される | |
| [SerializeField] | |
| private List<ValueList> _valueListList = new List<ValueList> (); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment