Page 1 of 1

Ren'Py 7.4.5 Released

Posted: Wed May 26, 2021 11:19 pm
by PyTom
I'm happy to announce Ren'Py 7.4.5, the fifth patch release for the 7.4 series. This fix adds several features that take advantage of the model-based renderer, improves platform support, and adds other quality of life features, like a dark theme for the launcher.

Perhaps the biggest new feature is the 3D Stage system. This allows a creator to position images on a three dimensional stage, like the one a play takes place on. Images can be rotated and moved in three dimensions, and Ren'Py will take care of rendering them in a perspective-correct manner.

Other features that take advantage of the model-based renderer are new blend modes (including multiply), and a new transition, Swing, that rotates images in three dimensions. The model-based renderer is enabled by default in games released with Ren'Py 7.4.5.

This release also includes improvements for many platforms. The Android support allows new projects to be compiled after the bintray shutdown, while a rewritten splashscreen allows Ren'Py to start on more devices. This release also includes fixes for compiling on iOS, and for signing and notarizing macOS applications.

Ren'Py 7.4 is the the product of over a year of development, and one of the biggest releases of Ren'Py to date. This series of releases focuses on updating Ren'Py's internals so that Ren'Py is ready for its next 15 years.


Downloads of 7.4.5 can be found at:

https://www.renpy.org/release/7.4.5

A full list of changes to Ren'Py can be found at:

https://www.renpy.org/doc/html/changelog.html

A list of changes that may require you to update your game can be found at:

https://www.renpy.org/doc/html/incompatible.html

Please also check out the credits and sponsor list.

Re: Ren'Py 7.4.5 Released

Posted: Thu May 27, 2021 12:07 am
by Jackkel Dragon
I'll need to try out the 3D Stage stuff... It looks like a really cool addition, but I'm having trouble figuring out how to move the "camera" around. Right now, it really does feel like a stage in that the images can be rotated, but there's not really a way to pan the view. I'm also curious about whether this means that Ren'Py will eventually support actual 3D models.

The Android fixes are also very interesting, so I'll have to look into those. Hopefully the bootup process is smoother now.

Re: Ren'Py 7.4.5 Released

Posted: Tue Jun 01, 2021 4:41 am
by Clef
3D stage sounds like an incredibly cool feature.
I am already hoping tha someone will make a dungeon crawler tool out of it.
Hoping that it won't be too hard on the performance.

Re: Ren'Py 7.4.5 Released

Posted: Tue Jun 01, 2021 6:16 pm
by PyTom
Jackkel Dragon wrote: Thu May 27, 2021 12:07 am I'll need to try out the 3D Stage stuff... It looks like a really cool addition, but I'm having trouble figuring out how to move the "camera" around. Right now, it really does feel like a stage in that the images can be rotated, but there's not really a way to pan the view. I'm also curious about whether this means that Ren'Py will eventually support actual 3D models.

The Android fixes are also very interesting, so I'll have to look into those. Hopefully the bootup process is smoother now.
To pan the view, you'd adjust the later transform:

Code: Select all

show layer master:
    perspective True
    xpos 0.0
    linear 3.0 xpos 100.0
You're probably going it want a background a bit bigger than the window if you do this, even with zzoom.

Re: Ren'Py 7.4.5 Released

Posted: Wed Jun 02, 2021 9:56 pm
by Tayruu
I wonder if it would be possible to use the 3D stage stuff to give my "rotate around the room" point-and-click system more depth. It currently just scrolls images + screens (containing the interactable items), so if there would be a way to create 3D walls that all rotate around, and for the perspective to affect the screens too, that would work nicely.

Though I do suspect I'd need to at least manually define the angles of each wall, instead of being able to dynamically shape a room based on number of walls. The most likely scenario though is that there's no "rotation" to this system, so I'd have to not only define the angle of each visible wall, but the angles during rotation frames.

In the very least, more dynamic camera focus/depth using this would be nice for the casual VN dialogue parts of things.