Open level without video intro

Hi guys…
i have a project with only one level…
this levels start with an intro video and them jumps into the ingame mode… at certain point i have a button (in a widget) if i click the level restart (open level by name)… but, of course, it restart from the beginning, playing the intro video again…
Is there any way to restart the level without this intro video? but keeping everything in the same level?
Thanks!

You can have a MAIN level and then all the game levels are inside this one…so you can trigger the intro video on MAIN level on start and when you -skip intro- it opens next level (main menu level, gameplay, whatever)…and then you just go thru the levels as stream levels without opening MAIN level again. This way intro will play just once. Another option is using a bool variable in gameinstance (gameinstance values persists even you re open a level) and when open the level that autoplays the intro you can check in gameinstance if intro was played to decide what to do

Best,
Dany

Thank you…
i was trying to keep everything in the same level because of a script that only runs in the main level (script that helps me to deploy the project)
I will try this another option with gameinstance!
Thanks again!

1 Like