Search found 15547 matches

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: 609

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: 484

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: 484

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?
by PyTom
Fri Feb 09, 2024 8:54 pm
Forum: Ren'Py Questions and Announcements
Topic: [RESOLVED] Save Files with no Stack?
Replies: 3
Views: 609

Re: Save Files with no Stack?

Can you send me the game and a save file? This could be a bug, or it could be something else. I'd like to debug this in-engine and see what's going on.
by PyTom
Mon Feb 05, 2024 11:21 am
Forum: Ren'Py Questions and Announcements
Topic: Problem: Buttons wont click in 8.2.0
Replies: 5
Views: 678

Re: Problem: Buttons wont click in 8.2.0

If you figure out what caused the problem, let me know. It's hard to think of anything that could cause this, but it's clearly happening, so I'd like to fix it.
by PyTom
Wed Jan 31, 2024 10:50 pm
Forum: Ren'Py Questions and Announcements
Topic: Random Number Won't Reroll
Replies: 2
Views: 422

Re: Random Number Won't Reroll

d6 == 5 or 6

Isn't correct. It is _valid_ Python, which is why the game runs. But parenthesized, it reads:

(d6 == 5) or 6

Since 6 is non-zero, it's true, and this will always be true.

Yo probably want to write:

(d6 == 5) or (d6 == 6)

and similar for the 2 or 3 construct.
by PyTom
Wed Jan 31, 2024 10:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Problem: Buttons wont click in 8.2.0
Replies: 5
Views: 678

Re: Problem: Buttons wont click in 8.2.0

Can you put together a demo of the problem? Buttons work in most places.
by PyTom
Wed Jan 31, 2024 1:22 am
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py @ 20
Replies: 4
Views: 618

Ren'Py @ 20

Ren'Py is 20 years old!

Some forum threads about the first versions of Ren'Py:
by PyTom
Wed Jan 31, 2024 1:16 am
Forum: Ren'Py Questions and Announcements
Topic: Problem with the caption in the choices
Replies: 2
Views: 495

Re: Problem with config.narrator.menu

You aren't allowed to change config variables while the game is running.
by PyTom
Wed Jan 31, 2024 1:11 am
Forum: Ren'Py Questions and Announcements
Topic: Trouble with audio that has if_changed attribute
Replies: 2
Views: 754

Re: Trouble with audio that has if_changed attribute

Try 8.2 I think this is fixed there.
by PyTom
Wed Jan 31, 2024 1:09 am
Forum: Ren'Py Questions and Announcements
Topic: Error when trying to instal Android SDK
Replies: 1
Views: 816

Re: Error when trying to instal Android SDK

You want to make sure you have a jdk installed.
by PyTom
Wed Jan 31, 2024 1:08 am
Forum: Ren'Py Questions and Announcements
Topic: [solved]How to clean rapt folder?this folder is about 8GB
Replies: 2
Views: 465

Re: How to clean rapt folder?this folder is about 8GB

You should be able to delete all of project/ , and Ren'Py will re-create it as needed.
by PyTom
Wed Jan 31, 2024 1:07 am
Forum: Ren'Py Questions and Announcements
Topic: Live 2D model that defined differently share the same update_function
Replies: 2
Views: 471

Re: Live 2D model that defined differently share the same update_function

Not, but there isn't a great fix for this. Live2D objects that share the same path share everything. You'll need two copies to do this.
by PyTom
Sat Jan 27, 2024 10:45 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py 8.2 and Ren'Py 7.7 Releases
Replies: 3
Views: 3584

Ren'Py 8.2 and Ren'Py 7.7 Releases

I'm happy to announce Ren'Py 8.2.0 and Ren'Py 7.7.0, the latest releases of Ren'Py, the results of months of work by many contributors. Ren'Py 8.2 is a major release of Ren'Py, containing new features, fixes, and improvements. It is recommended for all new games, and it's strongly recommended that e...