Search found 15573 matches

by PyTom
Sun Oct 06, 2024 2:02 am
Forum: Ren'Py Questions and Announcements
Topic: Quick Menu textbutton Function action blocking other actions
Replies: 5
Views: 271

Re: Quick Menu textbutton Function action blocking other actions

I tracked this down to a bug, will be fixed in the 2024-10-06 nightly fix build.

Function is better - it will restart the interaction when it finishes, which is necessary for the function above. You should also be using the Python global statement.
by PyTom
Mon Sep 09, 2024 9:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Problem about after build - No HTML tag for game.zip
Replies: 5
Views: 1187

Re: Problem about after build - No HTML tag for game.zip

I have no idea. Ren'Py does expect all the tags it started with to be there, so if you comment tags out, there's likely to be some breakage. The presplash is especially suspect, as Ren'Py expects to be able to remove that tag as the game starts. At this point, it's up to freem to fix thier website, ...
by PyTom
Sat Sep 07, 2024 8:08 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py 8.3 and Ren'Py 7.8 Released
Replies: 12
Views: 2852

Re: Ren'Py 8.3 and Ren'Py 7.8 Released

I'm happy to announce the release of Ren'Py 8.3.1, a fix release that improves earlier versions of Ren'Py 8.3, and should be used for all new games. I've also released Ren'Py 7.8.1, which mirrors it while still using Python 2. For a list of the most important fixes in these releases, please see the ...
by PyTom
Sat Sep 07, 2024 9:29 am
Forum: Ren'Py Questions and Announcements
Topic: How to Load Cython-compiled Package into Ren'py
Replies: 8
Views: 767

Re: How to Load Cython-compiled Package into Ren'py

You'll need to rebuild Ren'Py with your cython module included. There are instructions at:

https://github.com/renpy/renpy-build
https://github.com/renpy/renpy-build/tr ... extensions
by PyTom
Fri Sep 06, 2024 10:15 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py 8.3 and Ren'Py 7.8 Released
Replies: 12
Views: 2852

Re: Ren'Py 8.3 and Ren'Py 7.8 Released

It seems like this : show iBlack at Position(xpos=0.0,xanchor=0.0,ypos=0.0,yanchor=0.0),zorder ZORDER_FTB_IMAGE: is no longer valid when compiling (although Lint doesn't detect a problem) There are two problems here. The first is a problem with Ren'Py, which is that in: show iBlack at Position(xpos...
by PyTom
Fri Sep 06, 2024 8:50 pm
Forum: Ren'Py Cookbook
Topic: Portrait System
Replies: 22
Views: 18700

Re: Portrait System

There are some clipping issues in 8.3.0 that are fixed in 8.3.1.
by PyTom
Thu Sep 05, 2024 9:02 am
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py 8.3 and Ren'Py 7.8 Prereleases
Replies: 4
Views: 3083

Re: Ren'Py 8.3 and Ren'Py 7.8 Prereleases

Version 7.8.1.24090402 Version 8.3.1.24090402 More fixes to Ren'Py 8.3.1 and 7.8.1. Fixes include: * Using local shader variables by name in {shader} tags now works. * Textshaders now work with very large sizes and numbers of characters. * Lint avoids checking non-files as files. * More improvements...
by PyTom
Tue Sep 03, 2024 2:46 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Dict breaking after rollback or reload
Replies: 6
Views: 903

Re: Dict breaking after rollback or reload

Reassigning dict is a really bad idea.
by PyTom
Tue Sep 03, 2024 11:44 am
Forum: Ren'Py Questions and Announcements
Topic: warning: write error: FS error on web app
Replies: 4
Views: 804

Re: warning: write error: FS error on web app

This is fixed in the nightly and prerelease builds - please update.
by PyTom
Wed Aug 28, 2024 9:00 pm
Forum: Ren'Py Questions and Announcements
Topic: [SAID TO BE FIXED] Troubles with FontGroup in Ren'Py 8.3.0!
Replies: 3
Views: 746

Re: Troubles with FontGroup in Ren'Py 8.3.0!

This will be fixed in the August 29 nightly build (and later releases, like the final 8.3.1.)
by PyTom
Wed Aug 28, 2024 10:23 am
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py 8.3 and Ren'Py 7.8 Prereleases
Replies: 4
Views: 3083

Re: Ren'Py 8.3 and Ren'Py 7.8 Prereleases

Version 7.8.1.24082803 Version 8.3.1.24082803 These continue fixing issues in Ren'Py 8.3.1 and 7.8.1. Fixes include: * Adding support in subsurface for things drawn at negative offsets. * Spline transformation now works with inherited positions for all position properties. * Shader-based text will u...
by PyTom
Wed Aug 28, 2024 10:16 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Font Transform/ Accessibility with Japanese typeface
Replies: 2
Views: 522

Re: Font Transform/ Accessibility with Japanese typeface

You need to create a font transform, which is a function that takes a font and returns a font. Here's the setup for dejavusans:

Code: Select all

init python:
    def dejavusans(f):
        return "DejaVuSans.ttf"

    config.font_transforms["dejavusans"] = dejavusans
by PyTom
Mon Aug 26, 2024 7:46 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py 8.3 and Ren'Py 7.8 Released
Replies: 12
Views: 2852

Re: Ren'Py 8.3 and Ren'Py 7.8 Released

Addendum: uhoh something has changed regarding callbacks and "show_done" but I'm not sure what. I seemingly have to change things to "show", but that doesn't seem right, "show_done" *does* seem to still exist in character.py... I fixed that a few hours ago, will be in ...
by PyTom
Sat Aug 24, 2024 8:58 pm
Forum: Ren'Py Questions and Announcements
Topic: Problem about after build - No HTML tag for game.zip
Replies: 5
Views: 1187

Re: Problem about after build - No HTML tag for game.zip

I've changed Ren'Py to use game.data all the time. The change will be be in Ren'Py 8.3.1.
by PyTom
Sat Aug 24, 2024 8:33 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py 8.3 and Ren'Py 7.8 Released
Replies: 12
Views: 2852

Re: Ren'Py 8.3 and Ren'Py 7.8 Released

General shaders. Places that take shaders should take a list. But the problem was that variables weren't scoped, and so you could have conflicts. The new shader-local variables of the form a__name, u__name, and v__name mean that you can have similar variables in multiple shaders, without conflict.