Search found 4 matches

by shootingaeros
Sat Nov 18, 2017 11:47 am
Forum: Ren'Py Questions and Announcements
Topic: Stats Screen, Bars Non-Uniform? [SOLVED]
Replies: 5
Views: 671

Re: Stats Screen, Bars Non-Uniform?

That works perfectly - I ended up using the vboxes like you specified and it worked just like I wanted it to. Thank you so much!
by shootingaeros
Sat Nov 18, 2017 1:14 am
Forum: Ren'Py Questions and Announcements
Topic: Stats Screen, Bars Non-Uniform? [SOLVED]
Replies: 5
Views: 671

Re: Stats Screen, Bars Non-Uniform?

The current code: screen stats(): tag menu use navigation frame: style_group "multi_entry" grid 3 5: label "Guts:" if guts<6: label "Rank 1 - Milquetoast" bar range 6 value guts xmaximum 400 elif guts<16: label "Rank 2 - Bold" bar range 16 value guts xmaximum ...
by shootingaeros
Sat Nov 18, 2017 1:08 am
Forum: Ren'Py Questions and Announcements
Topic: Stats Screen, Bars Non-Uniform? [SOLVED]
Replies: 5
Views: 671

Re: Stats Screen, Bars Non-Uniform?

Okay, the grid works pretty well - the only problem is I can't find anything on how to change how wide in the x direction. Such as the first column to be 100, second 150, third 250 or something like that.
by shootingaeros
Fri Nov 17, 2017 11:39 pm
Forum: Ren'Py Questions and Announcements
Topic: Stats Screen, Bars Non-Uniform? [SOLVED]
Replies: 5
Views: 671

Stats Screen, Bars Non-Uniform? [SOLVED]

Basically I want the bars to start at the same position after the 'rank', and the bars after 'Diligence' are different than the two prior - They have borders and the other two do not. How can I make it so I can have the bars line up and look all the same? screen stats(): tag menu use navigation fram...