Search found 9 matches

by 5ugarcrash
Sun Dec 27, 2020 6:07 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Imagebuttons not working in Main Menu?
Replies: 2
Views: 659

Re: Imagebuttons not working in Main Menu?

rayminator wrote: Sun Dec 27, 2020 10:26 am delete the style_prefix "main_menu" as well and delete from ## This empty frame darkens the main menu. to # properties gui.text_properties("version")
Worked like a charm, thank you so much for responding!! :D
by 5ugarcrash
Sun Dec 27, 2020 5:59 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Imagebuttons not working in Main Menu?
Replies: 2
Views: 659

[SOLVED] Imagebuttons not working in Main Menu?

Hi! I have spent easily 5 hours on this and am at a complete loss haha, maybe I'm just overlooking something simple because I'm still new to renpy. I'm trying to replace the text buttons in the main menu with image buttons, and based my code off of this thread https://lemmasoft.renai.us/forums/viewt...
by 5ugarcrash
Sun Dec 27, 2020 4:30 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Different Menu Custom Backgrounds?
Replies: 4
Views: 1580

Re: Different Menu Custom Backgrounds?

OMG you're a lifesaver, all of it works !!!! Thank you soooo so so much, I've been spending hours on this LOL XD
by 5ugarcrash
Sun Dec 27, 2020 4:18 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Different Menu Custom Backgrounds?
Replies: 4
Views: 1580

Re: Different Menu Custom Backgrounds?

EDIT: understood. You want to change the overall background, not just the frame. 'Right. Try change the game_menu like below: screen game_menu(title, scroll=None): style_prefix "game_menu" if main_menu: add gui.main_menu_background elif renpy.get_screen("about"): add "about...
by 5ugarcrash
Sun Dec 27, 2020 2:07 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Different Menu Custom Backgrounds?
Replies: 4
Views: 1580

[SOLVED] Different Menu Custom Backgrounds?

Hi! I'm fairly new to renpy and have looked at forum posts both on here and reddit but nothing seems to be working. I am trying to set a different custom background for each screen in my menu (load, preferences, about, help) instead of having just one background for all of them. I've mainly been mes...
by 5ugarcrash
Sat Dec 26, 2020 3:48 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Text blip sound effect not working
Replies: 2
Views: 787

Re: Text blip sound effect not working

Thank you so much for your help! Turns out the issue was that I forgot to enable slow text but the page you sent me was very useful :D
by 5ugarcrash
Fri Dec 25, 2020 11:37 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Text blip sound effect not working
Replies: 2
Views: 787

[SOLVED] Text blip sound effect not working

Hi! I'm trying to make text blips similar to this forum post https://lemmasoft.renai.us/forums/viewtopic.php?f=8&t=23755 but the sounds won't play no matter what I do. I don't have any error messages, so I'm kind of at a loss for why the text keeps playing normally. Thank you for any help in adv...
by 5ugarcrash
Tue Dec 22, 2020 7:20 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Using mouse to "look" around background by panning in that direction?
Replies: 2
Views: 405

Re: Using mouse to "look" around background by panning in that direction?

Thank you so much !! I will mess around with making a parallax effect and see how it goes
by 5ugarcrash
Tue Dec 22, 2020 2:08 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Using mouse to "look" around background by panning in that direction?
Replies: 2
Views: 405

[SOLVED] Using mouse to "look" around background by panning in that direction?

Hi! I'm brand new to Ren'Py so I honestly don't know where to start with this, but I'm a big fan of the visual novel Butterfly Soup and wanted to implement a similar "looking around" system in my game where the user can move the camera in a certain direction by moving their mouse. Here's a...