Adventure Creator Switching Camera

Announcements, support questions, and discussion for the Dialogue System.
Post Reply
thehazard
Posts: 27
Joined: Sun Jul 23, 2017 9:56 am

Adventure Creator Switching Camera

Post 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?
User avatar
Tony Li
Posts: 22062
Joined: Thu Jul 18, 2013 1:27 pm

Re: Adventure Creator Switching Camera

Post 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.
thehazard
Posts: 27
Joined: Sun Jul 23, 2017 9:56 am

Re: Adventure Creator Switching Camera

Post by thehazard »

Thank you so much Tony for the fast reply.
User avatar
Tony Li
Posts: 22062
Joined: Thu Jul 18, 2013 1:27 pm

Re: Adventure Creator Switching Camera

Post by Tony Li »

Happy to help!
Post Reply