more questions :U

Posted:
16 Feb 2018, 11:05
by sinisa3games
i might ask too much, but how do i make the level end like in the intro (without the song and without sparkles)
Re: more questions :U

Posted:
16 Feb 2018, 11:33
by manuel
Make a script:
- {l Code}: {l Select All Code}
Level.finish(true)
But this will return Tux to the worldmap instantly, so I recommend something like this:
- {l Code}: {l Select All Code}
Tux.deactivate()
Effect.fade_out(1)
wait(2)
Tux.activate()
Level.finish(true)
And no, you don't ask too much. Rather ask one time more than deliver something you are unhappy with.
Re: more questions :U

Posted:
16 Feb 2018, 13:02
by sinisa3games
Thank you, the intro for my levels is complete
