Search found 67 matches

by rusicaria
Fri Dec 10, 2021 9:14 am
Forum: Ren'Py Questions and Announcements
Topic: Character colors stuck
Replies: 1
Views: 491

Character colors stuck

<r>Hello!<br/> <br/> So im aware to change the color of a characters name is to use define etc<br/> e.g <CODE><s>[code]</s>define y = Character ("You", color = "#9A6AEC")<e>[/code]</e></CODE> And it worked in the beginnings of writing my game, but just now I went to change the color and it's just st...
by rusicaria
Thu May 06, 2021 4:43 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Change 'About' Screen font?
Replies: 6
Views: 673

Re: Change 'About' Screen font?

Ocelot wrote:
Thu May 06, 2021 4:36 pm
The same way you changed font for about_label_text:

Code: Select all

style about_text:
    font "hurtm.ttf"
Thank youu!
by rusicaria
Thu May 06, 2021 4:29 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Change 'About' Screen font?
Replies: 6
Views: 673

Re: Change 'About' Screen font?

Ocelot wrote:
Thu May 06, 2021 4:02 pm
That should have changed first line of the about screen with your game name, as defined in config.name, because this is the only label in the screen, other lines are simply text.

You would need to change about_text for the rest.
How do I do that?
by rusicaria
Thu May 06, 2021 3:29 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Change 'About' Screen font?
Replies: 6
Views: 673

Re: Change 'About' Screen font?

Yes, just... set another font in about screen. Easiest way is to add font style statement in the about_label_text and about_text styles is screens.rpy Hello again! Do you mean change it from the gui_label/gui_label_text? I tried adding 'font' below 'size' but nothing changed. style about_label is g...
by rusicaria
Thu May 06, 2021 3:01 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Change 'About' Screen font?
Replies: 6
Views: 673

[SOLVED] Change 'About' Screen font?

Hello!

Is it possible to change the font on the about screen, without having to change the font for the start buttons etc?
by rusicaria
Wed May 05, 2021 6:52 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] CG Gallery help?
Replies: 3
Views: 660

Re: CG Gallery help?

Hi! I'd like to help you finish with your CG Gallery. I'd volunteer to do it for you since I have free time and I've done it before. Or if you want to do it yourself, it would be easier for me to help you if you upload the images as well. (You can add watermark if you don't feel comfortable uploadi...
by rusicaria
Wed May 05, 2021 12:49 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] CG Gallery help?
Replies: 3
Views: 660

[SOLVED] CG Gallery help?

Hello! I've got a few things that I need help with, if anyone knows anything about making a cg gallery? Before, when clicking on the cg button to open up the art scene, it would show the art scene PLUS a smaller size of it at the bottom of the screen. Screenshot 2021-05-03 19.42.40.png I'd really li...
by rusicaria
Wed May 05, 2021 12:40 pm
Forum: Ren'Py Questions and Announcements
Topic: CG Gallery error [SOLVED]
Replies: 12
Views: 1384

Re: CG Gallery error

---> ended up realising that the button .png's and the cg's had to be inside the image folder for this to work.
by rusicaria
Wed May 05, 2021 11:12 am
Forum: Ren'Py Questions and Announcements
Topic: CG Gallery error [SOLVED]
Replies: 12
Views: 1384

Re: CG Gallery error

I managed to sort out the background and kind of the cg's. The main problem right now is that whenever I click onto a cg there's a smaller version of it at the bottom center. Is there a way to get rid of this? I am not really familiar with gallery. It is possible that you are supposed to press 'H' ...
by rusicaria
Mon May 03, 2021 2:01 pm
Forum: Ren'Py Questions and Announcements
Topic: CG Gallery error [SOLVED]
Replies: 12
Views: 1384

Re: CG Gallery error

I would place image in the images directory and double check the name. And if it has double extention or not. Because this: https://i.imgur.com/PxhiEzF.png could actually be this: https://i.imgur.com/kncpHMZ.png And check if grind has exactly 16 children, including textbutton, which in your case we...
by rusicaria
Sun May 02, 2021 8:47 am
Forum: Ren'Py Questions and Announcements
Topic: CG Gallery error [SOLVED]
Replies: 12
Views: 1384

Re: CG Gallery error

grid 4 4: add g.make_button("thielart1","thielart1.jpg", locked = "lock.png", xalign=0.5, yalign=0.5) # 1 add g.make_button("jaylaart1", "jaylaart1.jpg", locked = "lock.png", xalign=0.5, yalign=0.5) # 2 add g.make_button("crisart1", "crisart1.jpg", locked = "lock.png", xalign=0.5, yalign=0.5) # 3 a...
by rusicaria
Sun May 02, 2021 8:42 am
Forum: Ren'Py Questions and Announcements
Topic: CG Gallery error [SOLVED]
Replies: 12
Views: 1384

Re: CG Gallery error

grid 4 4: add g.make_button("thielart1","thielart1.jpg", locked = "lock.png", xalign=0.5, yalign=0.5) # 1 add g.make_button("jaylaart1", "jaylaart1.jpg", locked = "lock.png", xalign=0.5, yalign=0.5) # 2 add g.make_button("crisart1", "crisart1.jpg", locked = "lock.png", xalign=0.5, yalign=0.5) # 3 a...
by rusicaria
Sat May 01, 2021 8:23 pm
Forum: Ren'Py Questions and Announcements
Topic: CG Gallery error [SOLVED]
Replies: 12
Views: 1384

Re: CG Gallery error

Ocelot wrote:
Sat May 01, 2021 3:34 pm
You can use Null() displayable as "no displayable" placeholder: https://www.renpy.org/doc/html/displayables.html#Null
I'm really sorry, how do I code this/do this? I tried pasting it and changing it but it didn't really work.
by rusicaria
Sat May 01, 2021 2:32 pm
Forum: Ren'Py Questions and Announcements
Topic: CG Gallery error [SOLVED]
Replies: 12
Views: 1384

Re: CG Gallery error

Ocelot wrote:
Sat May 01, 2021 2:10 pm
grid 4 4: 4×4=16. You have stated that there would be 16 displayables in the grid. You have supplied only 7. Hence "Exception: Grid not completely full.".
Oh I see, how should I fix this? I haven't made all of the CGS's yet, only 4 out of the intended 40
by rusicaria
Sat May 01, 2021 1:55 pm
Forum: Ren'Py Questions and Announcements
Topic: CG Gallery error [SOLVED]
Replies: 12
Views: 1384

CG Gallery error [SOLVED]

Hello, I've attempted to make a CG gallery in my game, and I got this error when I clicked on the gallery in-game: I'm sorry, but an uncaught exception occurred. While running game code: File "renpy/common/00gamemenu.rpy", line 173, in script $ ui.interact() File "renpy/common/00gamemenu.rpy", line...