diff options
| author | jussi | 2023-10-30 22:40:20 +0200 |
|---|---|---|
| committer | jussi | 2023-10-30 22:40:20 +0200 |
| commit | c3295e014d979c0213b3fb7e4837b5356bc8fdb4 (patch) | |
| tree | 66ee22c7140761a17bf174d71fecfb94c1378b1d /changelog | |
| parent | 6e0d577d63b221797cdc7f392718dd1c4fb384b4 (diff) | |
| download | reilua-enhanced-c3295e014d979c0213b3fb7e4837b5356bc8fdb4.tar.gz reilua-enhanced-c3295e014d979c0213b3fb7e4837b5356bc8fdb4.tar.bz2 reilua-enhanced-c3295e014d979c0213b3fb7e4837b5356bc8fdb4.zip | |
Reintroducing Unload functions. Is*Ready functions. GC_UNLOAD setting and check function.
Diffstat (limited to 'changelog')
| -rw-r--r-- | changelog | 21 |
1 files changed, 11 insertions, 10 deletions
@@ -3,25 +3,26 @@ Release: ReiLua version 0.6.0 Using Raylib 4.5 ------------------------------------------------------------------------ KEY CHANGES: - CHANGED: Switch from ID based objects to userdata. - - REMOVED: Unload* functions since unloading is now handled by Lua garbage collection. + - CHANGED: Object unloading is handled by Lua garbage collection by default. - CHANGED: Rely mostly on luaL_check* functions for arg checking. - CHANGED: ModelAnimations are changed to separate ModelAnimation types as in Raylib. - - ADDED: LoadTextureFromData. - - ADDED: LoadRenderTextureFromData. - ADDED: Userdata objects can be referenced with lightuserdata. + - ADDED: GC_UNLOAD build time define for enabling/disabling Lua garbage collection for objects. + Can be checked with IsGCUnloadEnabled DETAILED CHANGES: - CHANGED: GenImageColor now takes Vector2 as size. - - REMOVED: UnloadImage. - - REMOVED: UnloadTexture. - - REMOVED: GetTextureType and texture type DEFINES. + - REMOVED: GetTextureType and texture type enums. - ADDED: GetRenderTextureTexture and GetRenderTextureDepthTexture. - REMOVED: UnloadCamera2D and UnloadCamera3D. - - REMOVED: UnloadShader. - - REMOVED: UnloadFont. - ADDED: LoadFontEx takes also fontChars. - - REMOVED: UnloadWave and UnloadSound. - - REMOVED: UnloadMesh, UnloadMaterial, UnloadModel and UnloadModelAnimations. + - ADDED: LoadTextureFromData. + - ADDED: LoadRenderTextureFromData. + - ADDED: IsRenderTextureReady, IsMaterialReady, IsFontReady, IsModelReady, IsShaderReady, + IsImageReady, IsWaveReady, IsSoundReady and IsMusicReady. + - ADDED: UnloadBuffer. + - ADDED: GetMaterialDefault returns lightuserdata reference to default material. + - REMOVED: Some examples. ------------------------------------------------------------------------ Release: ReiLua version 0.5.0 Using Raylib 4.5 |
