Login / Registrieren
DE EN FR ES IT CZ
Zurück Nach oben

Run On Scene Question

  • #1, by dionous 9 years ago Zitieren
    Hello to all,

    When using Run on Scene, the 'At Begin start following action' always applies. Is this normal behaviour? Because, every time we run a specific scene the intro logo, menu etc.. have to play (because we have included these in the start action). Would be nice to have an option to bypass the start action when using Run on Scene, otherwise we need to delete the start action for now.
  • #2, by sebastian 9 years ago Zitieren
    seems to be a normal behaviour. This action gets triggered when the scene is entered. No matter how. 
  • #3, by dionous 9 years ago Zitieren
    Thanks Sebastian,

    Just to be clear, i'm referring to the the action that gets triggered only once when the game begins (the one set in the Game Properties), not for any other scene start action.
  • #4, by Paupasia 9 years ago Zitieren
    I had already reported this problem. Though just remove only the video and it works.
     
  • #5, by afrlme 9 years ago Zitieren
    You have to wrap at begin of scene actions inside of an if query.

    Create a condition for it. Then inside of at begin of scene action you do something like this...

    if condition "example" is false
     execute some action parts
     ...
     change condition "example" to true
    end if


    That way it only triggers the actions inside of the if query if the condition is met.