Search found 10 matches

by xavibell
Mon Sep 02, 2024 11:21 pm
Forum: Dialogue System for Unity
Topic: <align> tags don't seem to work with TMP typewriter effect
Replies: 3
Views: 78

<align> tags don't seem to work with TMP typewriter effect

As the title says, the typewriter effect breaks whenever a subtitle has the <align> tag in it. For some context, I'm using the scrolling dialogue UI, so all the text accumulates in a single text box. In OnConversationLine() I'm checking the name of the speaker and adding <align> tags. The player's r...
by xavibell
Thu May 02, 2024 8:45 pm
Forum: Dialogue System for Unity
Topic: OnConversationLine not being called when expected
Replies: 3
Views: 329

Re: OnConversationLine not being called when expected

That makes sense, but my problem remains, since I've got conversations with far more than two primary participants. Is there a way to manually update the primary actors and listeners at runtime? Or is there just another way I should be doing this altogether? For context, the reason this is a problem...
by xavibell
Wed May 01, 2024 9:51 pm
Forum: Dialogue System for Unity
Topic: OnConversationLine not being called when expected
Replies: 3
Views: 329

OnConversationLine not being called when expected

Hi, Tiny issue I've run into (that is driving me crazy). The OnConversationLine() event, to my understanding, should run every line. Problem is, it isn't being called when either the subtitle's Actor or Conversant fields aren't set to the player. This isn't ideal, since the project I'm working on ha...
by xavibell
Wed Aug 30, 2023 8:53 pm
Forum: Dialogue System for Unity
Topic: Accumulate text causes jitter
Replies: 3
Views: 289

Re: Accumulate text causes jitter

Thanks for the reply. All the subtitles are accumulated in the same string. Your blank line idea sounds like it could work, and it seems you were definitely right about it being tricky. I won't ask you to too much about how to do it, but could you point me in the right direction? I've done some sear...
by xavibell
Tue Aug 29, 2023 10:29 pm
Forum: Dialogue System for Unity
Topic: Accumulate text causes jitter
Replies: 3
Views: 289

Accumulate text causes jitter

Hi, I'm back with more problems. The issue this time is to do with the ScrollToBottom() function I've grabbed from the SMS Dialogue UI to use in my Scrolling Dialogue UI. Since all my dialogue is just written to a single text box with the Accumulate Text setting, I've had to keep the Max Lines value...
by xavibell
Sun Aug 27, 2023 5:10 am
Forum: Dialogue System for Unity
Topic: Scrolling Dialogue UI smooth scroll gradually speeding up
Replies: 6
Views: 326

Re: Scrolling Dialogue UI smooth scroll gradually speeding up

Looks like that solved it! Thanks for your help.
by xavibell
Sat Aug 26, 2023 4:23 am
Forum: Dialogue System for Unity
Topic: Scrolling Dialogue UI smooth scroll gradually speeding up
Replies: 6
Views: 326

Re: Scrolling Dialogue UI smooth scroll gradually speeding up

I tell a lie. That didn't quite fix it. I just wasn't looking close enough. I'm using the ScrollToBottom() function as you've suggested, but it still seems to have the exact same problem of the smooth scroll speed getting faster the longer the conversation is (or the the larger the height of the scr...
by xavibell
Sat Aug 26, 2023 12:19 am
Forum: Dialogue System for Unity
Topic: Scrolling Dialogue UI smooth scroll gradually speeding up
Replies: 6
Views: 326

Re: Scrolling Dialogue UI smooth scroll gradually speeding up

Thanks for the reply. That works, but with one issue. It seems that when the scroll content becomes larger and larger, it will only scroll smoothly for a brief period before quickly jumping down to the bottom. I fixed this by making a slight change to the ScrollToBottomCoroutine while loop. Initally...
by xavibell
Fri Aug 25, 2023 4:12 am
Forum: Dialogue System for Unity
Topic: Scrolling Dialogue UI smooth scroll gradually speeding up
Replies: 6
Views: 326

Scrolling Dialogue UI smooth scroll gradually speeding up

Hi, I have a scrolling dialogue UI that will smoothly scroll down as more text appears. The issue is that as a conversation progresses and more and more text is put into the subtitle text box, the smooth scroll effect for some reason speeds up to the point that it becomes instant. Obviously, I'd pre...