Search found 4 matches

by G00se
Tue Mar 11, 2025 2:53 am
Forum: Dialogue System for Unity
Topic: Enter response number in TMP Input Field
Replies: 7
Views: 1843

Re: Enter response number in TMP Input Field

Hi, Use TextInput(), similarly to how it's described in How To: Read Input From Player During Conversations . See the Terminal conversation used in DemoScene1 for an example. Thank you! The demo helped. I got it working by using a second TMP Input Field that holds a StandardUIInputField script comp...
by G00se
Mon Mar 10, 2025 12:59 pm
Forum: Dialogue System for Unity
Topic: Enter response number in TMP Input Field
Replies: 7
Views: 1843

Re: Enter response number in TMP Input Field

Ah, that makes sense. Changing the player name worked when I use that code outside of a dialogue (basically before any dialogue is started), like: public void GameStateChangedCallback(GameState state) { switch (state) { case GameState.STORY: //... PixelCrushers.DialogueSystem.DialogueManager.ChangeA...
by G00se
Mon Mar 10, 2025 9:27 am
Forum: Dialogue System for Unity
Topic: Enter response number in TMP Input Field
Replies: 7
Views: 1843

Re: Enter response number in TMP Input Field

Thanks! That really helped me! Another question: there are some cases where the player has to type in words, instead of just the numbers from the response menu, (player name, a specific word to further the dialogue, etc.). Is there anything special I should do or think about when using this system? ...
by G00se
Mon Mar 10, 2025 6:41 am
Forum: Dialogue System for Unity
Topic: Enter response number in TMP Input Field
Replies: 7
Views: 1843

Enter response number in TMP Input Field

Hi, Very impressed with the Dialogue System! There is, however, something that I just can't get my head around. I'm trying to create a sort of text adventure. The Dialogue System is used for every dialogue in the game, but also for navigating through menus. Here is the problem: I would like the play...