I want to be able to show a guitexture when loading a scene from a main menu, how would I go about doing this?
on your script, where you load the scene, add a line:
var loadScreen : GUITexture;
then in your scene, select ‘GameObject / Create Other / GUI Texture’
configure your texture and disable it by clicking on the topmost checkbox
it should be grayed out in the hierarchy view, drag it onto the ‘Load Screen’ variable showing up on your script, and right before your Application.LoadLevel command, add
loadScreen.gameObject.active=true;
Cheers mate, I’ll try it soon!