Rest of the core misc functions.

This commit is contained in:
jussi
2022-06-11 22:13:59 +03:00
parent 403e59a0b0
commit 9dd3fa10ce
5 changed files with 93 additions and 1 deletions

27
API.md
View File

@@ -1355,6 +1355,24 @@ Get elapsed time in seconds since InitWindow()
---
> success = RL_TakeScreenshot( string fileName )
Takes a screenshot of current screen ( filename extension defines format )
- Failure return false
- Success return true
---
> success = RL_SetConfigFlags( int flags )
Setup init configuration flags ( view FLAGS )
- Failure return false
- Success return true
---
> success = RL_TraceLog( int logLevel, string text )
Show trace log messages ( LOG_DEBUG, LOG_INFO, LOG_WARNING, LOG_ERROR... )
@@ -1364,6 +1382,15 @@ Show trace log messages ( LOG_DEBUG, LOG_INFO, LOG_WARNING, LOG_ERROR... )
---
> success = RL_SetTraceLogLevel( int logLevel )
Set the current threshold ( minimum ) log level
- Failure return false
- Success return true
---
> success = RL_OpenURL( string url )
Open URL with default system browser ( If available )