As of now I am trying to make my game multiplayer, and for my script I need it to let me set up default values for it. For example I have this.
public var reticule : GUITexture[];
var colorOn : Color;
var colorOff : Color;
var colorOnFriendly : Color;
but they wont show up in the Default References area of a script. But if I have this, this does.
var example : Rigidbody;
How do I get my colors and GUITextures etc to show up in the default references?
EDIT : Ive figured out the colors thanks to the below comment but I still can figure out the GUITexture. Help would be appreciated.