Does anyone know what:
var gos : GameObject[];
gos = GameObject.FindGameObjectsWithTag ("SaveObject");
is in c#? Sorry, I know this is probably very simple, but I am having trouble experimenting in translating it. Thank you for the help.
Does anyone know what:
var gos : GameObject[];
gos = GameObject.FindGameObjectsWithTag ("SaveObject");
is in c#? Sorry, I know this is probably very simple, but I am having trouble experimenting in translating it. Thank you for the help.
its… javascript of you see var it’s js… but sometime it can be use with C#…
public GameObject gos;
gos = GameObject.FindGameObjectsWithTag (“SaveObject”);
that’s it…
GameObject gos;
gos = GameObject.FindGameObjectsWithTag (“SaveObject”);