summaryrefslogtreecommitdiff
path: root/doc_parser.lua
diff options
context:
space:
mode:
authorjussi2022-02-22 19:09:57 +0200
committerjussi2022-02-22 19:09:57 +0200
commit30ae308c9b26b18096f3f993f4b6ad50ea6bfd76 (patch)
tree4d44d290e078ff09ff848134d3e0f31ca9c5134d /doc_parser.lua
parenta7f58b3261565b59e508c659ae3a7f1964a5bad5 (diff)
downloadreilua-enhanced-30ae308c9b26b18096f3f993f4b6ad50ea6bfd76.tar.gz
reilua-enhanced-30ae308c9b26b18096f3f993f4b6ad50ea6bfd76.tar.bz2
reilua-enhanced-30ae308c9b26b18096f3f993f4b6ad50ea6bfd76.zip
Documentation, heightmap example and custom begin and end draw.
Diffstat (limited to 'doc_parser.lua')
-rw-r--r--doc_parser.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc_parser.lua b/doc_parser.lua
index 848577c..80fa490 100644
--- a/doc_parser.lua
+++ b/doc_parser.lua
@@ -30,7 +30,8 @@ apiFile:write( "\n> function process( delta )\n\
This function will be called every frame during execution. It will get time duration from last frame on argument 'delta'\n\n---\n" )
apiFile:write( "\n> function draw()\n\
This function will be called every frame after process and it should have all rendering related functions.\
-Note: Engine will call Raylib functions 'BeginDrawing()' before this function call and 'EndDrawing()' after it\n\n---\n" )
+Note: Engine will call Raylib functions 'BeginDrawing()' before this function call and 'EndDrawing()' after it.\
+You can still use RL_BeginDrawing() and RL_EndDrawing() manually from anywhere.\n\n---\n" )
-- Globals.