hi everyone,
in my project I have several prefabs that I instantiate by code at the start moment.
in one script I have:
var Estadio1 : GameObject;
…
Estadio1 = Instantiate(Estadio1);
…
in the editor, I have linked the Estadio1 variable with the prefab that I have in the Project folder.
When I run the program and when I build the standalone version, all works fine and the prefab is instantiated.
But just if I build the webplayer the prefab is not instantiated. Nothing appears in the screen.
Any idea? the prefabs have a special consideration in the webplayer version?
thank you very much
igorlean