Skip to content

Instantly share code, notes, and snippets.

@peroon
Created July 20, 2016 08:04
Show Gist options
  • Select an option

  • Save peroon/14b8c1b4cb412072b6d6c9ce18471744 to your computer and use it in GitHub Desktop.

Select an option

Save peroon/14b8c1b4cb412072b6d6c9ce18471744 to your computer and use it in GitHub Desktop.
//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