Howdy,
Is it possible to delay the reveal of the response menu or just hide/show it??
Hide response menu
Re: Hide response menu
The easiest way is to use the previous node's Sequence field. For example:
If you want to show the subtitle text for 2 seconds and then keep it hidden for the remaining 3 seconds, you can use a Sequence like this:
- NPC: "Would you rather... be a ninja or be a pirate? Think about it for a few seconds."
Sequence: Delay(5)- Player: "A ninja!"
- Player: "A pirate! Yarr!"
If you want to show the subtitle text for 2 seconds and then keep it hidden for the remaining 3 seconds, you can use a Sequence like this:
- NPC: "Would you rather... be a ninja or be a pirate? Think about it for a few seconds."
Sequence: Delay(5); SetActive(NPC Subtitle Line,false)@2- Player: "A ninja!"
- Player: "A pirate! Yarr!"