Search found 3799 matches

by Imperf3kt
Thu Jul 25, 2024 3:44 am
Forum: Ren'Py Questions and Announcements
Topic: Custom font not working
Replies: 3
Views: 149

Re: Custom font not working

Your files are all named "file name.extension" and Windows has an option to either display or hide the extension. Going by the fact all the other files have the extension hidden, I am led to assume "breach.ttf" is actually called "breach.ttf.ttf" All you should need to ...
by Imperf3kt
Wed Jul 10, 2024 12:18 am
Forum: Ren'Py Questions and Announcements
Topic: House-cleaning [solved]
Replies: 2
Views: 422

Re: House-cleaning

The launcher has a few handy tools for checking files, folders, labels, #TODOs etc.
I run through those to see if I've missed anything or left something in I shouldn't have
by Imperf3kt
Wed Jul 10, 2024 12:11 am
Forum: Creator Discussion
Topic: A creative use of AI rendering for VNs
Replies: 3
Views: 704

Re: A creative use of AI rendering for VNs

One thing to note about this is that many store fronts, steam especially, require you to declare any use of AI in your game, even if it's just redrawing your own art
by Imperf3kt
Thu Jul 04, 2024 7:38 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Making small changes to tooltip text
Replies: 5
Views: 325

Re: Making small changes to tooltip text

I believe just adding it as a variable should work init -2 python: like = "???" ###### imagebutton: focus_mask True xpos 444 ypos 107 idle "inventory/inventory_button_character_sheet.png" action NullAction() tooltip ("Likes : {}").format("like") And somewhere ...
by Imperf3kt
Tue Jul 02, 2024 8:57 am
Forum: Ren'Py Questions and Announcements
Topic: Duration of an mp3-file.
Replies: 9
Views: 438

Re: Duration of an mp3-file.

suno offers the ability to download files as lossless wav, you could use that as your editing master
by Imperf3kt
Sun Jun 30, 2024 8:09 am
Forum: Ren'Py Questions and Announcements
Topic: Duration of an mp3-file.
Replies: 9
Views: 438

Re: Duration of an mp3-file.

Converting to .ogg (vorbis) would be an easy way to do it - for example using Audacity. It's the better file format anyway, because it's open source and has better compression strength at the same quality level. I just want to point out that this is only true if you start with a lossless file to be...
by Imperf3kt
Mon Jun 17, 2024 5:01 am
Forum: Ren'Py Questions and Announcements
Topic: Android APKs created with 8.2.2.24061201 failing to launch on Android 14
Replies: 3
Views: 255

Re: Android APKs created with 8.2.2.24061201 failing to launch on Android 14

Is there anything I should check to figure out why this is happening? You may wanna have a look inside the log files, like "errors.txt", "log.txt" and "traceback.txt". Yes but I am unsure how to do that on Android. The documentation does not mention it and the options ...
by Imperf3kt
Sun Jun 16, 2024 5:28 pm
Forum: Ren'Py Questions and Announcements
Topic: "[Errno 44] No such file or directory" Help?
Replies: 1
Views: 205

Re: "[Errno 44] No such file or directory" Help?

What specifically are you uploading to itch?
It should be the zip file itself and nothing else.
(not game.zip, but the compressed file containing everything)
by Imperf3kt
Sun Jun 16, 2024 3:52 pm
Forum: Ren'Py Questions and Announcements
Topic: Android APKs created with 8.2.2.24061201 failing to launch on Android 14
Replies: 3
Views: 255

Android APKs created with 8.2.2.24061201 failing to launch on Android 14

After updating to the latest Ren'Py release, I can't seem to get any Android builds to launch on my device, they were working in the previous release build. I first noticed this last night when I finished a large update to a project and built an apk to test while I lay in bed, but given that it was ...
by Imperf3kt
Sun May 26, 2024 3:58 pm
Forum: Ren'Py Questions and Announcements
Topic: Help with renpy.variant function
Replies: 9
Views: 401

Re: Help with renpy.variant function

For Web checks, try the variant "renpy.emscripten" rather than "Web"
https://www.renpy.org/doc/html/other.ht ... emscripten
by Imperf3kt
Tue May 21, 2024 4:17 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Game is stuck in a Screen scene?
Replies: 5
Views: 410

Re: Game is stuck in a Screen scene?

I wouldn't bother with any of that, just don't call the screen, instead use show screen.

Code: Select all

label start:

    scene credits
    show screen discord_hover
by Imperf3kt
Mon May 20, 2024 8:31 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Need help creating an undo function for drawing function
Replies: 7
Views: 515

Re: [Solved] Need help creating an undo function for drawing function

Okay, I went over everything again, something had to be wrong that I just wasn't catching and it turns out there was one extra space on line 169 if self.children: self.old_children = self.children Should be if self.children: self.old_children = self.children Thank you again for the help. This had me...
by Imperf3kt
Mon May 20, 2024 1:49 am
Forum: Ren'Py Questions and Announcements
Topic: Problems updating certain projects to Renpy 8 from Renpy ~7.5
Replies: 7
Views: 654

Re: Problems updating certain projects to Renpy 8 from Renpy ~7.5

If I understand the explanation given, you're trying to sort a dictionary action If (i == -1, SetDict(numbers_buttons[each_b["b_number"] ], "b_to_show", False), If (numbers_buttons[i]["b_to_show"] == False, SetDict(numbers_buttons[each_b["b_number"] ], "b...
by Imperf3kt
Sun May 19, 2024 11:08 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Need help creating an undo function for drawing function
Replies: 7
Views: 515

Re: Need help creating an undo function for drawing function

Yes, I tried twice with a brand new project and it doesn't do anything for me.

I have no idea how to check if the buttons are creating an event, how could I do that?