Graphics

 View Only
  • 1.  Scene Trigger

    Posted 08-13-2015 17:54
    Is there a way to trigger a scene director within the same scene or does it have to be a different scene?


  • 2.  RE: Scene Trigger

    Posted 08-13-2015 19:32
    If you are referring to the Scene Trigger event on the scene director; it can trigger a scene director in the same scene. It uses a name based lookup, so it will trigger it for every scene on the output with a matching name.

    You can also do it through visual logic or scripting.

    e.g. (here is a script you can add as an event onto one scene director to trigger another in the same scene)

    `dim sd as xpSceneDirector

    self.GetSceneDirectorByName("my other scene dir", sd)

    sd.Position = 0

    sd.Play

    `

    #XPression


  • 3.  RE: Scene Trigger

    Posted 08-14-2015 02:01
    Thanks for this - invaluable.

    I was referring to both transition logic and as an event in scene director.

    If I need it to pause at the scene trigger - I'm guessing I need to use the script. I'll play around.

    #XPression


  • 4.  RE: Scene Trigger

    Posted 08-17-2015 21:23
    change sd.play to sd.pause

    #XPression