I am trying to do the listing by name of all available game objects in my scene and actually its almost done, but something is going wrong, that's why i need your help guys!
here is a code snipped in c#:
using UnityEngine;
using System.Collections;
public class testLIST : MonoBehaviour {
public string objects;
void Start() {
object[] obj = GameObject.FindSceneObjectsOfType(typeof (GameObject));
foreach (object o in obj)
{
GameObject g = (GameObject) o;
objects = g.name;
print(g.name);
}
}
void OnGUI() {
int i =0;
GUIStyle style = new GUIStyle();
i = i+1;
Rect sizeBox = new Rect(Screen.width/2-1, Screen.height/2-150, 300, 100);
GUI.Box(sizeBox,"Available Objects : \n" + i +". " +objects.ToString(),style);
}
When a code snipped is running, GUI.Box just represents the last object in the scene instead of all of them. What am I doing wrong?
