mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-04-28 15:57:59 +03:00
Fixed #1536
This commit is contained in:
parent
6b2797ee2e
commit
505f666545
2 changed files with 2 additions and 1 deletions
|
@ -13,6 +13,7 @@ TombEngine releases are located in this repository (alongside with Tomb Editor):
|
||||||
|
|
||||||
### New Features
|
### New Features
|
||||||
* Added realtime shader reloading in debug mode by pressing F9 key.
|
* Added realtime shader reloading in debug mode by pressing F9 key.
|
||||||
|
* Increased particle limit from 1024 to 4096.
|
||||||
|
|
||||||
### Lua API changes
|
### Lua API changes
|
||||||
* Fixed Flow.FreezeMode.FULL drawing incorrect background.
|
* Fixed Flow.FreezeMode.FULL drawing incorrect background.
|
||||||
|
|
|
@ -19,7 +19,7 @@ constexpr auto MAX_NODE = 23;
|
||||||
constexpr auto MAX_DYNAMICS = 64;
|
constexpr auto MAX_DYNAMICS = 64;
|
||||||
constexpr auto MAX_SPLASHES = 8;
|
constexpr auto MAX_SPLASHES = 8;
|
||||||
|
|
||||||
constexpr auto MAX_PARTICLES = 1024;
|
constexpr auto MAX_PARTICLES = 4096;
|
||||||
constexpr auto MAX_PARTICLE_DYNAMICS = 8;
|
constexpr auto MAX_PARTICLE_DYNAMICS = 8;
|
||||||
|
|
||||||
extern int Wibble;
|
extern int Wibble;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue