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

Use variable scene name in Scenes[]

  • #1, by dionous 9 years ago Zitieren
    Hi all,

    I'm trying to use the following in the definition script: basically, i'd like to be able to check the current scene for any conditions named 'cutscene' and if they are set to true (so i can customize the skipping of the cutscene using keyhandlers). The problem is how can i use a variable name within the Scene[] ?

    Scenes[current_scene_name] is wrong apparently, is there any way to tell VS that this is a variable and not an actual scene name? 

        current_scene_name = game:getLink(VGameCurrentScene):getName()
    
        if getObject("Scenes[current_scene_name].SceneConditions[cutscene]") == true

    Thanks!

  • #2, by afrlme 9 years ago Zitieren
    if game.CurrentScene.SceneConditions["cutscene"].ConditionValue then
     -- is true
    else
     -- is false
    end
  • #3, by dionous 9 years ago Zitieren
    Well, simplicity is king i guess, thanks mate