Search found 3766 matches

by Imperf3kt
Thu Mar 28, 2024 2:26 am
Forum: Ren'Py Questions and Announcements
Topic: [solved] Using videos as button?
Replies: 4
Views: 124

Re: [solved] Using videos as button?

I personally would have just created a frame displaying the video, then placed an invisible button over top of that. With a little tweaking, this is also an option.
by Imperf3kt
Sun Mar 17, 2024 7:27 pm
Forum: General Discussion
Topic: How to disable saving temporarily?
Replies: 2
Views: 235

Re: How to disable saving temporarily?

During the part you want to disable saving, set the variable "_game_menu" to None and disable keybinds for the escape key, and probably disable the quick menu also with $quick_menu = False Then once the player is past the point you want to disable saving, re-enable them. The default _game_...
by Imperf3kt
Sun Mar 17, 2024 7:22 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py update 8.2.1 broke scrolling on a viewport
Replies: 3
Views: 153

Re: Ren'Py update 8.2.1 broke scrolling on a viewport

viewports work great for me on 8.2

What happens if you delete this part

Code: Select all

if ymax is not None:
            ymaximum ymax
by Imperf3kt
Thu Mar 14, 2024 8:48 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: 107

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 decrea...
by Imperf3kt
Sat Mar 02, 2024 10:49 am
Forum: Development of Ren'Py
Topic: Android Build error [Solved]
Replies: 4
Views: 359

Re: Android Build error

I believe the link the launcher gives you is all you should need. Maybe make sure you're up to date
by Imperf3kt
Sat Mar 02, 2024 10:45 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] File not found update.pem
Replies: 12
Views: 1033

Re: File not found update.pem

I also ran into this. I think it probably only happens when you have "Build Updates" checked. I can't find any code in renpy to generate it, but something did in one of my projects, so I just copied it into my other project so it could be used there as well. I'm just testing stuff at this...
by Imperf3kt
Wed Feb 28, 2024 7:06 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] File not found update.pem
Replies: 12
Views: 1033

Re: File not found update.pem

I also ran into this. I think it probably only happens when you have "Build Updates" checked. I can't find any code in renpy to generate it, but something did in one of my projects, so I just copied it into my other project so it could be used there as well. I'm just testing stuff at this...
by Imperf3kt
Wed Feb 28, 2024 6:56 am
Forum: Creator Discussion
Topic: I lost code for a minigame and can't find it ANYWHERE!
Replies: 5
Views: 692

Re: I lost code for a minigame and can't find it ANYWHERE!

Might it be any of the games listed in this thread?
viewtopic.php?t=47820
by Imperf3kt
Wed Feb 28, 2024 4:41 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] File not found update.pem
Replies: 12
Views: 1033

Re: File not found update.pem

Thanks for the tips. I was going into android.rpy looking for any references I could, but I never thought to check distribute_gui All I can say is that PEM is a container file format often used to store cryptographic keys. Like those used for SSL certificates (for "https" web connections)....
by Imperf3kt
Tue Feb 27, 2024 5:31 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] File not found update.pem
Replies: 12
Views: 1033

Re: File not found update.pem

I have checked other, older projects, and they build an android distribution just fine, so I am completely confused what is happening with this project. The project in question is considerably larger and more complex than the others I built, but I haven't changed anything significant since last rele...
by Imperf3kt
Fri Feb 16, 2024 12:19 am
Forum: Ren'Py Questions and Announcements
Topic: vpunch annoying white borders
Replies: 3
Views: 269

Re: vpunch annoying white borders

The documentation suggests ATL might be a viable option for imitating vpunch and changing it to your liking
Are you familiar with ATL at all?
by Imperf3kt
Fri Feb 16, 2024 12:16 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] File not found update.pem
Replies: 12
Views: 1033

Re: File not found update.pem

Today I got around to installing the correct JDK. I clicked "Install SDK" and it says "It looks like you're ready to start packaging games." so I started trying to build a universal APK which appeared to work fine, at first, but it still fails with the same error. I'm sorry, but ...
by Imperf3kt
Tue Feb 13, 2024 10:41 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] File not found update.pem
Replies: 12
Views: 1033

Re: File not found update.pem

I believe I am using Java 8 still and Ren'Py is telling me I should have JDK21. That might be my issue I mean, Java 8 is from 2014. Man... :lol: How about trying that first? I made the thread before considering that may be the issue. I'll update when I get a chance to try. For what it's worth, ren'...
by Imperf3kt
Tue Feb 13, 2024 10:38 pm
Forum: Ren'Py Cookbook
Topic: A Tooltip whose x/y position follows the mouse's.
Replies: 13
Views: 8446

Re: A Tooltip whose x/y position follows the mouse's.

Ordinarily, you simply need to unfocus / unhover the button that is supplying the tooltip

Hiding the screen should be more than enough
by Imperf3kt
Mon Feb 12, 2024 9:15 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] File not found update.pem
Replies: 12
Views: 1033

[Solved] File not found update.pem

I recently updated Ren'Py to 8.2.0.25012702 and tried to build an Android version of my project (universal apk) but upon building the package, I am met with the following error I'm sorry, but an uncaught exception occurred. While running game code: File "game/android.rpy", line 539, in <mo...