Hi Guys
Sorry to bother with what must be a really simple problem I'm having.
Basically I don't know how to tween a Menu/Panel in and out of the screen. I'm using TweenTransform with two game objects, one off camera and one in the centre of the camera and I have the below call in a GameManager script:
if (IsPaused){
NGUITools.SetActive(pauseMenu,true);
}
This pulls the menu out from off screen, but it only slides out once. I want to be able to either disable it once it's finished tweening back so that it moves back into the screen again once the game is paused or be able to call something like
NGUITools.TweenTransform(pauseMenu,PlayForward)
or something like that but I can't figure out how to do it.
Sorry for asking the obvious, it's just not clear to me how to do this with a script call.