// Use this for initialization void Awake () { if (singleton == null) { singleton = this; } else { GameObject.Destroy(gameObject); } }
public static TreeVis getTreeVis(){ if (singleton == null) { GameObject TreeSaveManagerGo = new GameObject(); singleton = TreeSaveManagerGo.AddComponent<TreeVis>(); } return singleton; }