#return and Instantiate
1 messages · Page 1 of 1 (latest)
ok so gonna do an example
GameObject Instantiate(GameObject original) {
GameObject newObj;
newObj = original;
return newObj;
}```
if I were to do ```cs
Instantiate(gameObject);
``` i would get an error
@hybrid epoch
No you wouldn't
Have you actually tried it?
gonna do that, I'll be back