This commit is contained in:
Lwmte 2024-12-27 09:34:11 +01:00
parent 6b2797ee2e
commit 505f666545
2 changed files with 2 additions and 1 deletions

View file

@ -13,6 +13,7 @@ TombEngine releases are located in this repository (alongside with Tomb Editor):
### New Features
* Added realtime shader reloading in debug mode by pressing F9 key.
* Increased particle limit from 1024 to 4096.
### Lua API changes
* Fixed Flow.FreezeMode.FULL drawing incorrect background.

View file

@ -19,7 +19,7 @@ constexpr auto MAX_NODE = 23;
constexpr auto MAX_DYNAMICS = 64;
constexpr auto MAX_SPLASHES = 8;
constexpr auto MAX_PARTICLES = 1024;
constexpr auto MAX_PARTICLES = 4096;
constexpr auto MAX_PARTICLE_DYNAMICS = 8;
extern int Wibble;