Search found 15544 matches

by PyTom
Mon Apr 01, 2024 2:08 am
Forum: Development of Ren'Py
Topic: Change to syntax to compile?
Replies: 4
Views: 266

Re: Change to syntax to compile?

You probably need:

Code: Select all

init python:
    from typing import Optional
by PyTom
Mon Apr 01, 2024 2:04 am
Forum: Creator Discussion
Topic: The new renai.us/games.renpy.org support thread.
Replies: 257
Views: 415664

Re: The new renai.us/games.renpy.org support thread.

Honestly, the whole site needs to be decommissioned, as it hasn't been maintained for years.
by PyTom
Mon Apr 01, 2024 1:00 am
Forum: Ren'Py Questions and Announcements
Topic: Kinmoku Shark Support
Replies: 1
Views: 45

Kinmoku Shark Support

(As everyone might have guessed, this was the 2024 April Fools Joke.) I'm ready to announce a second project that I've been working on lately, this one during NaNoRenO. I've managed to successfully get Ren'Py running on the Kinmoku Shark video game console. It's now at the level where Ren'Py runs on...
by PyTom
Fri Mar 15, 2024 11:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py Downloader
Replies: 2
Views: 104

Re: Ren'Py Downloader

The downloader is meant for mobile - to turn one game into another. The updater is meant for pc/mac/linux - it's meant to update an existing game. The key.pem file is the public key. (IIRC, the file you shouldn't distribute, but should back up, is named private.pem.) It's fine to distribute, and mak...
by PyTom
Sat Mar 09, 2024 5:31 pm
Forum: Ren'Py Questions and Announcements
Topic: Android Game Freezes in "Downloading assets"
Replies: 11
Views: 726

Re: Android Game Freezes in "Downloading assets"

A couple things:

* Make sure you're on 8.2.1 or the fix branch, as there have been a lot of fixes to this.
* There's also a known problem with Google Play. Your best bet is to contact @GooglePlayBiz on X, and see if they can fix it.
by PyTom
Sat Mar 09, 2024 1:13 am
Forum: Ren'Py Questions and Announcements
Topic: Android Game Freezes in "Downloading assets"
Replies: 11
Views: 726

Re: Android Game Freezes in "Downloading assets"

The log comes out over logcat, so you can get access to it that way.
by PyTom
Thu Mar 07, 2024 4:19 pm
Forum: Ren'Py Questions and Announcements
Topic: [Closed] Graphic glitches since updating to 8.1
Replies: 8
Views: 751

Re: Graphic glitches since updating to 8.1

This is simply bad - with very few exceptions, Ren'Py functions can't be called outside of the main thread. (IIRC, renpy.queue_event is the only one, and you can also update data in the store.)
by PyTom
Mon Mar 04, 2024 11:39 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py 8.2 and Ren'Py 7.7 Releases
Replies: 3
Views: 2909

Re: Ren'Py 8.2 and Ren'Py 7.7 Releases

I've released Ren'Py 8.2.1 and Ren'Py 7.7.1. These are fix releases for Ren'Py 8.2 and Ren'Py 7.7, respectively. For a list of what's been fixed and changed, please take a look at the changelog . Downloads of Ren'Py 8.2.1 can be found at: https://www.renpy.org/release/8.2.1 Downloads of Ren'Py 7.7.1...
by PyTom
Thu Feb 29, 2024 12:54 pm
Forum: General Discussion
Topic: Please do not respond to the Spambots
Replies: 84
Views: 91536

Re: Please do not respond to the Spambots

I've cleaned things up, and also deactivated most accounts that have been inactive for 2+ years, so hopefully that will stop future spam.
by PyTom
Sat Feb 10, 2024 11:56 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Does renpy rollback support vars() ?
Replies: 2
Views: 345

Re: Does renpy rollback support vars() ?

No. Using:

Code: Select all

setattr(self, field, getattr(self, field) + num)
should work.
by PyTom
Sat Feb 10, 2024 11:09 pm
Forum: Ren'Py Questions and Announcements
Topic: [RESOLVED] Save Files with no Stack?
Replies: 3
Views: 513

Re: Save Files with no Stack?

So, the issue is something entirely different. In Ren'Py 8.1, a new Save Token Security system was implemented, which means that when someone is loading a save from a different computer, Ren'Py will notify the user and ask if they want to allow it. This is done by two new yesno prompts: gui.UNKNOWN_...
by PyTom
Fri Feb 09, 2024 11:49 pm
Forum: Ren'Py Questions and Announcements
Topic: MacOS Build Requesting Microphone Permission
Replies: 7
Views: 457

Re: MacOS Build Requesting Microphone Permission

At this point, I have no idea. Could be a problem on Apple's end.
by PyTom
Fri Feb 09, 2024 10:19 pm
Forum: Ren'Py Questions and Announcements
Topic: MacOS Build Requesting Microphone Permission
Replies: 7
Views: 457

Re: MacOS Build Requesting Microphone Permission

I don't know of anything that would cause this in stock Ren'Py, and after building an unsigned app, it doesn't seem to cause this.

Are you doing anything to get your game signed and notarized?