Search found 337 matches

by henvu50
Thu Aug 23, 2018 3:34 am
Forum: Ren'Py Questions and Announcements
Topic: quick menu customization [solved]
Replies: 8
Views: 6071

Re: quick menu customization [solved]

How do you actually change the position of the quick menu? Like move it's position on the X and Y?
by henvu50
Wed Aug 22, 2018 8:21 am
Forum: Ren'Py Questions and Announcements
Topic: How to make the namebox bold?
Replies: 1
Views: 627

Re: How to make the namebox bold?

make namebox bold with a font ttf file define bill = Character('bill', who_font = 'font-name-bold.ttf') make namebox bold define bill = Character('bill', who_font = 'font-name-regular.ttf', who_bold=True) this changes the name box font text color, but this changes title color in the start of the pro...
by henvu50
Wed Aug 22, 2018 7:46 am
Forum: Ren'Py Questions and Announcements
Topic: Centering the Character Name inside the say_who_window
Replies: 3
Views: 987

Re: Centering the Character Name inside the say_who_window

Does anyone know how to make the namebox font text bold and change it's font color?
by henvu50
Wed Aug 22, 2018 7:42 am
Forum: Ren'Py Questions and Announcements
Topic: Customizing the namebox
Replies: 6
Views: 2845

Re: Customizing the namebox

How do you make the namebox bold and change it's color? I tried adding the following to options.rpy, at the bottom. The renpy game started fine when I launcehd it, but the following code had no effect. The size didn't change and the namebox didn't become bold. style say_who_window: bold True size 90
by henvu50
Wed Aug 22, 2018 6:53 am
Forum: Ren'Py Questions and Announcements
Topic: How to make the namebox bold?
Replies: 1
Views: 627

How to make the namebox bold?

How do I make the namebox bold? Not the characters say text, but the characters namebox? This changes the character say text to bold, but how do you make the namebox bold? define mrperson = Character('bill', what_bold = True) Does something like the following exist? define mrperson = Character('bill...
by henvu50
Wed Aug 22, 2018 3:26 am
Forum: Development of Ren'Py
Topic: Can you support tabs in code?
Replies: 3
Views: 715

Re: Can you support tabs in code?

Notepad++ has already set the language to Python under the language tab, yet it still does a tab instead of an indent. I have the latest version of notepad++. I create a new line with four spaces and then some code, when I press enter, the new line has a tab instead of indent. I'll look into the iss...
by henvu50
Wed Aug 22, 2018 1:40 am
Forum: Development of Ren'Py
Topic: Can you support tabs in code?
Replies: 3
Views: 715

Can you support tabs in code?

I just started using Ren'py and find it odd that tab characters are not supported. Using tab spaces is widely used in many programming languages. Can you guys add this feature? I never imagined I'd be requesting something like this. Kind of funny actually. I'm using notepad++ and it automatically pl...