Hello everone!
i want load a object (3D model) into a scene by name with script, i have 5 object and i want load at a scene unique… thanks

If you place your models into the “Resources” folder within the “Assets” folder, you can use the following to load it at run time.

var loadedObject : GameObject = Instantiate(Resources.Load("modelName"));

Note that “modelName” is the string path of your model inside the Resources folder and does not contain the model extension. Say if your model was an OBJ file named model.obj, you would only put in Resources.Load(“model”);

Put them in a Resources folder and load them with Resources.Load(objectName, typeof(Mesh)) as Mesh