Page 1 of 1
Camera
Posted: Mon Feb 22, 2021 2:39 pm
by maximuz24
How i can show the camera to NPC when starting a conversattion. Please find attached invector template.do u have video tutorial for dialouge system quest for playmaker and also have discord?
Thanks in advance
Re: Camera
Posted: Mon Feb 22, 2021 3:00 pm
by Tony Li
Hi,
The _README.txt file has a link to the discord server. The discord server is for discussion, not support. Use this forum to get support help.
The
Tutorials page has quest tutorials.
Here is the PlayMaker page:
PlayMaker Support
Here is the Invector page:
Invector Support
Here is an easy way to handle the camera with Invector:
- Create a new camera. Set its Depth higher than the Invector camera depth. Set the camera inactive. Assign the camera to the Dialogue Manager's Display Settings > Camera & Cutscene Settings > Sequencer Camera.
- Set the Default Sequence to:
Code: Select all
Camera(Closeup,,1); Delay({{end}})
Re: Camera
Posted: Mon Feb 22, 2021 3:37 pm
by maximuz24
Thanks for the quick reply i added an extra camera and added as per your information but i am getting the below error.
Dialogue System: Sequencer: Camera subject '' wasn't found.
UnityEngine.Debug:LogWarning(Object)
PixelCrushers.DialogueSystem.SequencerCommands.SequencerCommandCamera:Start() (at Assets/Plugins/Pixel Crushers/Dialogue System/Scripts/MVC/Sequencer/Commands/SequencerCommandCamera.cs:61)
Re: Camera
Posted: Mon Feb 22, 2021 3:40 pm
by Tony Li
Try assigning the player GameObject to the Dialogue System Trigger's Conversation Actor field and the NPC to the Conversation Conversant.
Re: Camera
Posted: Mon Feb 22, 2021 3:49 pm
by maximuz24
Thanks it worked is there any video tutorial for quest using playmaker.
Re: Camera
Posted: Mon Feb 22, 2021 3:58 pm
by Tony Li
Hi,
No. There's info for PlayMaker and info for quests, but no single tutorial that combines quests and PlayMaker in a single tutorial. In most cases, you won't need to use PlayMaker at all to control quests since the Dialogue System doesn't require scripting for most things. In the few times when you do want to use PlayMaker, just see the PlayMaker Support page for details on the quest actions.
Re: Camera
Posted: Wed Mar 10, 2021 3:21 pm
by maximuz24
I added NPC to FSM AI character and add v trigger generic action to FSM ai character to activate by pressing action key but the character falls from the ground please let me know what to do. Also when i press conversation while dialogue is on it will perform action and the NPC runs
.
Re: Camera
Posted: Wed Mar 10, 2021 4:05 pm
by Tony Li
maximuz24 wrote: ↑Wed Mar 10, 2021 3:21 pmI added NPC to FSM AI character and add v trigger generic action to FSM ai character to activate by pressing action key but the character falls from the ground please let me know what to do.
Which character? Player or NPC? Make sure to set up your player according to the
documentation. For the NPC, see below.
maximuz24 wrote: ↑Wed Mar 10, 2021 3:21 pmAlso when i press conversation while dialogue is on it will perform action and the NPC runs
.
Use a
Dialogue System Events component to disable the NPC's AI during conversations. See the second half of the Interaction Tutorial for information about using Dialogue System Events.
Re: Camera
Posted: Fri Mar 12, 2021 2:30 pm
by maximuz24
Thanks, i solved. Now 2 doubts
1, Using playmaker i can save invector character position and inventory I have added invector status saver and position saver.But can find an inventory saver. also, i been confused on using invector saver
2,How i can add audio to the conversation.
Re: Camera
Posted: Fri Mar 12, 2021 2:57 pm
by Tony Li
Hi,
maximuz24 wrote: ↑Fri Mar 12, 2021 2:30 pm1, Using playmaker i can save invector character position and inventory I have added invector status saver and position saver.But can find an inventory saver. also, i been confused on using invector saver
No need for PlayMaker. Use InvectorStatSaver and InvectorInventorySaver as described
here.
maximuz24 wrote: ↑Fri Mar 12, 2021 2:30 pm2,How i can add audio to the conversation.
Please see the
Cutscene Tutorials 1-4. They will step you through how to add audio.