I have 2 intro screens the same size at identical position covering the whole stage. I want to move up -400 px on a click event.
Active on Start is No for both.
Needed behavior:
1 - intro screen - on click event on introScreen, the introScreen moves y -400
2- intro is now out of screen.
3 - helpScreen - on click event on helpScreen, helpScreen moves up -400
4- regular stage is revealed.
The problem is that the click event on the introScreen starts both the introScreen and the helpScreen.
I have on the event sheet:
event
mouse - on left button Clicked on intro
Actions
intro - LiteTween Set target Y(absolute) to -400
intro - LiteTween Set target Y(absolute) to 300
intro - LiteTween Start from beginning ( force use current is Start from last recorded)
event
mouse - on left button Clicked on help
Actions
help - LiteTween Set target Y(absolute) to -400
help - LiteTween Set target Y(absolute) to 300
help - LiteTween Start from beginning ( force use current is Start from last recorded)
What am I doing wrong?