Hello,
I would like to create a List where each element of the list contains a structure of properties that will show up in the inspector. How would I do that?
Thank you,
Michael S. Lowe
Hello,
I would like to create a List where each element of the list contains a structure of properties that will show up in the inspector. How would I do that?
Thank you,
Michael S. Lowe
public List<MYList> myList = new List<MyList>();
Thank you, but I am talking about Javascript. I already tried this using a structure type and nothing shows up in the inspector until I use a regular data type like a float.
The concept is not any different, just use Unityscript syntax.
var myList : List.<MyClass>;
–Eric