How to Instantiate object to game from this list using javascript?
One way that you can do this is to have a list of GameObject/Transform references at the top of your script and then call Object.Instantiate on whichever one you need at the moment.
I assume there are some prefabs in that folder, correct?
I want to do something looks like to this code
GameObject.Instantiate(GameObject.Find(“Main”), hit.point,transform.rotation);
I do not want to use object from Hierarchy list but from Project list.