say I have several variables in one (C#) script, ie:
public Color guiColor;
/*
* r = 255
* g = 200
* b = 0
* a = 175
*
* */
public Font f;
public int fSize;
public List<string> english = new List<string>();
public List<string> spanish = new List<string>();
public List<string> german = new List<string>();
public List<string> dutch = new List<string>();
How would I make a visible space between the code in the Inspector? Is this possible without making a custom inspector? Or is it easy to make a duplicate inspector with this one additional feature? Please help me with this. Thank you for reading.
Setting up an empty enum and setting up several useless variables work, ie:
public enum Space {_, __}
public Color guiColor;
public Font f;
public int fSize;
public Space _;
public string cur_lv="Level ";
public string nxt_lv="Level ";
public Space __;
public List<string> text = new List<string>();
public List<string> english = new List<string>();
public List<string> spanish = new List<string>();
public List<string> german = new List<string>();
public List<string> french = new List<string>();
public List<string> dutch = new List<string>();
public Space ___;
But I’m sure there must be a less… newbie way to do such a thing, isn’t there?
Custom editor would be the only way id go about it… they are fairly easy to write up. If you need with understanding it ill write one for you later based on your code. Im currently out and about town on my phone.