/// <summary> /// Adds a tagline to the item /// </summary> /// <param name="name">The name.</param> /// <exception cref="System.ArgumentNullException"></exception> public void AddTagline(string name) { if (string.IsNullOrWhiteSpace(name)) { throw new ArgumentNullException(); } if (Taglines == null) { Taglines = new List <string>(); } if (!Taglines.Contains(name, StringComparer.OrdinalIgnoreCase)) { Taglines.Add(name); } }
// Use this for initialization void Start() { mainCam = GameObject.FindGameObjectWithTag("MainCamera").GetComponent<Camera>(); students = new List<GameObject>(); names = GetComponent<Names>(); taglines = GetComponent<Taglines>(); majors = GetComponent<Majors>(); //load character parts from resources folder into arrays bodies = System.Array.ConvertAll( Resources.LoadAll("Bodies", typeof(GameObject)),o=>(GameObject)o); heads = System.Array.ConvertAll(Resources.LoadAll("Heads", typeof(GameObject)), o => (GameObject)o); clothes = System.Array.ConvertAll(Resources.LoadAll("Clothes", typeof(GameObject)), o => (GameObject)o); hairs = System.Array.ConvertAll(Resources.LoadAll("Hairs", typeof(GameObject)), o => (GameObject)o); }