I want to change the font size of JRPG Dialogue UI with Continue Button

Announcements, support questions, and discussion for the Dialogue System.
minomod
Posts: 89
Joined: Mon Jun 19, 2017 9:17 am

I want to change the font size of JRPG Dialogue UI with Continue Button

Post by minomod »

1. I want to change the font size of JRPG Dialogue UI with Continue Button
Attachments
1.png
1.png (39.34 KiB) Viewed 2322 times
User avatar
Tony Li
Posts: 21050
Joined: Thu Jul 18, 2013 1:27 pm

Re: I want to change the font size of JRPG Dialogue UI with Continue Button

Post by Tony Li »

Hi,

If you're using JRPG Unity UI Dialogue UI (from Prefabs / Unity UI Prefabs), inspect Dialogue Panel > Text Panel > Subtitle Line and increase the Font Size.

If you're using the legacy GUI version (from Prefabs / Legacy Unity GUI Prefabs), inspect JRPG Dialogue GUI Skin in the Project view and increase the size of the style named "Top Left".
minomod
Posts: 89
Joined: Mon Jun 19, 2017 9:17 am

Re: I want to change the font size of JRPG Dialogue UI with Continue Button

Post by minomod »

font size I do not see the part to adjust.
Attachments
2.png
2.png (163.47 KiB) Viewed 2308 times
User avatar
Tony Li
Posts: 21050
Joined: Thu Jul 18, 2013 1:27 pm

Re: I want to change the font size of JRPG Dialogue UI with Continue Button

Post by Tony Li »

Hi,

Since you're using the legacy Unity GUI system, inspect JRPG Dialogue GUI Skin in the Project view and increase the size of the style named "Top Left".
minomod
Posts: 89
Joined: Mon Jun 19, 2017 9:17 am

Re: I want to change the font size of JRPG Dialogue UI with Continue Button

Post by minomod »

Top Left is not visible.
Attachments
3.png
3.png (97.13 KiB) Viewed 2307 times
User avatar
Tony Li
Posts: 21050
Joined: Thu Jul 18, 2013 1:27 pm

Re: I want to change the font size of JRPG Dialogue UI with Continue Button

Post by Tony Li »

It's under "Custom Styles".
minomod
Posts: 89
Joined: Mon Jun 19, 2017 9:17 am

Re: I want to change the font size of JRPG Dialogue UI with Continue Button

Post by minomod »

Resolved. Thank you.
User avatar
Tony Li
Posts: 21050
Joined: Thu Jul 18, 2013 1:27 pm

Re: I want to change the font size of JRPG Dialogue UI with Continue Button

Post by Tony Li »

Happy to help!
minomod
Posts: 89
Joined: Mon Jun 19, 2017 9:17 am

Re: I want to change the font size of JRPG Dialogue UI with Continue Button

Post by minomod »

Can the main character make 3 lines and the 1st and 2nd lines have 10 fonts and 3 fonts and 20 fonts?

The above method will set the font size unconditionally to fixed.
User avatar
Tony Li
Posts: 21050
Joined: Thu Jul 18, 2013 1:27 pm

Re: I want to change the font size of JRPG Dialogue UI with Continue Button

Post by Tony Li »

If you want that kind of control, I recommend using the Unity UI version of the JRPG dialogue UI. You can find it in Assets / Dialogue System / Prefabs / Unity UI Prefabs / JRPG.

You can also use rich text codes in your dialogue text, such as:

Code: Select all

<size=10>This is size 10.
This is also size 10.</size>
<size=20>This is size 20.</size>
Post Reply