Beta update available
A new build is available on the beta branch. The editor and Lua executables are updated, only on Windows at this time. Everything is updated, including the beta branch of Game Launcher, for Windows and Linux.
I believe I have fixed the crashing in the new light management code. I also added a small optimization that checks if a moved light has the same 4x4 matrix it did at the time of the last shadow render. This makes it so if you are standing still and nothing is moving, the flashlight shadow won't update unnecessarily, even though your code is repositioning it each frame. This is a very small improvement, but I want your games to run as fast as possible.
I've added experimental support for frame limiting. This works by passing a second optional parameters to the Context:Sync command specifying the max framerate. This can be used alone to cap the framerate without VSync:
context:Sync(false,60)
It can be used to cap the framerate at any arbitrary speed:
context:Sync(false,90)
Or it can be used together with VSync enabled to cap the framerate and prevent screen tearing:
context:Sync(true,60)
This is experimental, and may change before the final release of version 4.3.
- 10
12 Comments
Recommended Comments