summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorjussi2024-02-05 22:40:31 +0200
committerjussi2024-02-05 22:40:31 +0200
commiteda4eacfce4f62ca09fb4f6559f9b7aeabe3cc31 (patch)
tree110cf3da59fb0b646272c28a2df7570527f4ddb6 /README.md
parentd21512d88c2e24cf8cb230d29fb253fb5efd1661 (diff)
downloadreilua-enhanced-eda4eacfce4f62ca09fb4f6559f9b7aeabe3cc31.tar.gz
reilua-enhanced-eda4eacfce4f62ca09fb4f6559f9b7aeabe3cc31.tar.bz2
reilua-enhanced-eda4eacfce4f62ca09fb4f6559f9b7aeabe3cc31.zip
Raygui styles include properties, texture and font.
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/README.md b/README.md
index 61489c0..cc796da 100644
--- a/README.md
+++ b/README.md
@@ -74,6 +74,10 @@ Application should now start successfully from executable. All functionality can
ReiLua_API.lua can be put into project folder to provide annotations when using "Lua Language Server".
+## Object unloading
+
+Some objects allocate memory that needs to be freed when object is no longer needed. By default objects like Textures are unloaded by the Lua garbage collector. It is generatty however recommended to handle this manually in more complex projects. You can change the behavior with SetGCUnload.
+
## Interpreter Mode
ReiLua can also be used to run single lua file using interpreter mode with arguments -i or --interpret. Given file will be called with dofile. Usage example: