At the end of my game, there's a point where I want to switch it so that one of the NPC's asks my player character questions using the dialog options. Is there a way to do that?
Do you want the player to be able to select the questions, or the answers?
Either way, couldn't you just make it a normal dialog, and just script it so the NPC does the asking? A series of dialogues might make more sense for answering questions - one for each set of possible answers.
Alternatively, you could make the NPC the player temporarily.
I want the player to be able to select the questions. What I can't get is how to get the NPC to animate the speech when you click on the option instead of the player character.
Well, like I said you could make the NPC the player before you run the dialog, then switch them back at the end.
Or, you could un-check the 'Say' box for those options, which will stop the line from being 'spoken' by the player. Then you'll need to add a line to the script to make the NPC say it instead.
Okay, I'll try those suggestions. Thanks.