Page 1 of 1

Adventure Creator Switching Camera

Posted: Mon Aug 28, 2017 12:33 pm
by thehazard
Hi
I'm using both adventure creator and dialogue system in my game. Once I trigger a dialogue system conversation from adventure creator, I'd like to be able to switch to another adventure creator's camera. Can this feature be controlled while in dialogue system in the middle of the conversation?

Re: Adventure Creator Switching Camera

Posted: Mon Aug 28, 2017 3:07 pm
by Tony Li
Hi,

Yes, there are two ways. The first is to use the ACCam() sequencer command in your dialogue entry node's Sequence field. For example, to switch to a camera named Stage Left:

Code: Select all

ACCam(Stage Left)
The second is to set up an Adventure Creator cutscene that switches the camera, and then use the AC() sequencer command to run that cutscene:

Code: Select all

AC(My Cutscene)
Each of these commands accepts extra options, too. You can get more details by clicking on their links in this reply.

Re: Adventure Creator Switching Camera

Posted: Mon Aug 28, 2017 3:27 pm
by thehazard
Thank you so much Tony for the fast reply.

Re: Adventure Creator Switching Camera

Posted: Mon Aug 28, 2017 4:03 pm
by Tony Li
Happy to help!