Search found 7 matches

by AnnieJuraski
Tue Mar 19, 2024 10:55 pm
Forum: Ren'Py Questions and Announcements
Topic: How to create a transition that is like flip/turning a page?
Replies: 4
Views: 550

Re: How to create a transition that is like flip/turning a page?

Yes, that's how it's supposed to work. "flipbook" transform dissolves the part of the target image, starting from the pixels that are white in the "overlay" image (or what should I call it), "1.png". https://renpy.org/doc/html/transitions.html#ImageDissolve It is combi...
by AnnieJuraski
Mon Mar 18, 2024 5:29 pm
Forum: Ren'Py Questions and Announcements
Topic: How to add different styles to diffrent menu?
Replies: 3
Views: 231

Re: How to add different styles to diffrent menu?

I want main_menu to have different font effect from preferences menu... How to achieve that? I tried change this, but it change all menu: define gui.button_text_font = "KOMIKAHB.ttf" define gui.button_text_outlines = [ (4, "#00000034", 7, 7), (4, "#a30000ff", 3, 3) ] A...
by AnnieJuraski
Sun Mar 17, 2024 1:41 pm
Forum: Ren'Py Questions and Announcements
Topic: How to hide main_menu when I open any other menu?
Replies: 1
Views: 155

How to hide main_menu when I open any other menu?

As you can see in the print bellow, the main_menu keeps appearing when I open game_menu or any other menu. How to hide when I open any other menu?
by AnnieJuraski
Sun Mar 17, 2024 1:28 pm
Forum: Ren'Py Questions and Announcements
Topic: How to add different styles to diffrent menu?
Replies: 3
Views: 231

How to add different styles to diffrent menu?

I want main_menu to have different font effect from preferences menu... How to achieve that? I tried change this, but it change all menu: define gui.button_text_font = "KOMIKAHB.ttf" define gui.button_text_outlines = [ (4, "#00000034", 7, 7), (4, "#a30000ff", 3, 3) ] An...
by AnnieJuraski
Fri Mar 15, 2024 2:59 pm
Forum: Ren'Py Questions and Announcements
Topic: How to create a transition that is like flip/turning a page?
Replies: 4
Views: 550

How to create a transition that is like flip/turning a page?

I wanna to create a trasition between sscenes that looks like we are turning the page. I found this post on Reddit, but it is now well explained and I have some issues Link: https://www.reddit.com/r/RenPy/comments/13k8kn8/a_little_page_turning_animation_made_entirely/ My issue is that it only works ...
by AnnieJuraski
Fri Mar 15, 2024 9:28 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Using icons in quick menu instead of text and changing border at the same time...
Replies: 2
Views: 173

Re: Using icons in quick menu instead of text and changing border at the same time...

Borders are a different property than what you want, you're looking for some spacing between the textbuttons if quick_menu: vbox: style_prefix "quick" $ tooltip = GetTooltip() if tooltip: text "[tooltip]" xalign 0.01 yalign 1.0 spacing 25 #adjust this number to increase or decre...
by AnnieJuraski
Thu Mar 14, 2024 8:08 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Using icons in quick menu instead of text and changing border at the same time...
Replies: 2
Views: 173

[SOLVED]Using icons in quick menu instead of text and changing border at the same time...

I watched a video where a guy explained how to add icons in quick menu instead of text. So I created a rpy file, name quickmenu.rpy, with this code: init: transform buttonZoom: zoom 0.06 #backbutton ################################## image backidle: "gui/quickmenu/back.png" image backhover...