1
Technical forum / Re: How to stop GUIs from fading out when you change a scene?
« on: January 05, 2010, 08:31:21 PM »
Thanks Mnemonic, worked like a charm

Forum rules - please read before posting, it can save you a lot of time.
Game.PlayTheora ("\videos\blah.ogv")
var MainChar = Scene.GetNode("walkaway");
MainChar.PlayTheora ("videos/scene.ogv", true);
var ChangeAnim = Scene.GetNode("walkaway");
ChangeAnim.PauseTheora (500);
ChangeAnim.PlayTheora ("videos/scene2.ogv", false);
///////////////////////////////////////////////////////////////////////////////
on "MouseEntry"
{
//Game.PlayMusicChannel (2, "sounds\but.wav", false);
anim.PlayAnim ("sprites\menu\new_game_hilite.sprite");
}
////////////////////////////////////////////////////////////////////////////////
on "MouseLeave"
{
anim.PlayAnim ("sprites\menu\new_game.sprite");
}
////////////////////////////////////////////////////////////////////////////////