DrawBillboardPro and rlglGetVersion.

This commit is contained in:
jussi
2023-05-10 21:21:40 +03:00
parent 1e58f551bb
commit b387742850
10 changed files with 233 additions and 2 deletions

View File

@@ -39,3 +39,20 @@ int lrlglGetLineWidth( lua_State *L ) {
return 1;
}
/*
## RLGL - Initialization functions
*/
/*
> version = RL.rlGetVersion()
Get current OpenGL version
- Success return int
*/
int lrlglGetVersion( lua_State *L ) {
lua_pushinteger( L, rlGetVersion() );
return 1;
}