I want to have an array of strings in the editor that I can see. How do I do this? I tried stuff : String[ ]; but that didint function properly. How can I have an array of strings?
UnityScript
// this is a builtin array of strings
public var stuff : String[];
C#
//this is a builtin array of strings
public string[] stuff;