Search found 4 matches
- Fri Jul 16, 2021 10:21 am
- Forum: Dialogue System for Unity
- Topic: Execute change scene script during conversation
- Replies: 3
- Views: 252
Re: Execute change scene script during conversation
Works good thanks !
- Fri Jul 16, 2021 9:51 am
- Forum: Dialogue System for Unity
- Topic: Execute change scene script during conversation
- Replies: 3
- Views: 252
Execute change scene script during conversation
Hello, I would like to know how to make a script work during a conversation. For example I have a script that change scene. And I would like the script to function when the player choose the answer. Example : NPC : Do you want to go there ? Player ; Yes (Execute the script to change scene) Player : ...
- Sat Jul 03, 2021 8:29 am
- Forum: Dialogue System for Unity
- Topic: Cursor disapear after first answer
- Replies: 3
- Views: 220
Re: Cursor disapear after first answer
Thank you !
Yes another script was stopping it.
BTW for people who have this problem, add this in your code in case the problem appear in game you can always show the cursor.
if (Input.GetKeyUp(KeyCode.L))
{
SetCursorVisibility(Visibility.Visible);
}
Yes another script was stopping it.
BTW for people who have this problem, add this in your code in case the problem appear in game you can always show the cursor.
if (Input.GetKeyUp(KeyCode.L))
{
SetCursorVisibility(Visibility.Visible);
}
- Fri Jul 02, 2021 4:03 pm
- Forum: Dialogue System for Unity
- Topic: Cursor disapear after first answer
- Replies: 3
- Views: 220
Cursor disapear after first answer
Hello :) My problem is that when I have a dialogue the cursor appear and I can select an answer, but then it disapear and if there is another question I can't continue the dialogue because the cursor is not there anymore. (I have "show cursor during conversation" ticked) What mistake am I ...