U
User_286102
Guest
Guest
Hi friends
I created a button to call a list, the list of characters in the game....
this list appears in a frame, vbox...
but now this list is too long.
I have several options....
1. put the rest of the list to be next to the top of the list... I don't like it
2. reduce the number of characters... no!!!!!
3. reduce the size of the text so that the list is shorter... I like it
I can reduce the text of the interface "in the gui.rpy file"but I don't like it, I only want to reduce this list.
So I created this:
don't work:
i ve an error say: style property text_size is not known.
text_size"red arrow" 16
i've try:
text_size = 16
and
text_size "16"
I created a button to call a list, the list of characters in the game....
this list appears in a frame, vbox...
but now this list is too long.
I have several options....
1. put the rest of the list to be next to the top of the list... I don't like it
2. reduce the number of characters... no!!!!!
3. reduce the size of the text so that the list is shorter... I like it
I can reduce the text of the interface "in the gui.rpy file"but I don't like it, I only want to reduce this list.
So I created this:
Code:
vbox:
style_prefix "yourtextstyle"
text "Characters"
null height 4
" the list apear here"
style yourtextstyle_text is gui_interface
style yourtextstyle_text:
text_size = 16
i ve an error say: style property text_size is not known.
text_size"red arrow" 16
i've try:
text_size = 16
and
text_size "16"