wait-time ( seconds -- )


Vocabulary
raylib

Inputs
secondsa double


Outputs
None

Word description
Wait for some milliseconds (halt program execution)

Warning
Those functions are intended for advance users that want full control over the frame processing. By default EndDrawing() does this job: - draws everything - swap-screen-buffer - manage frame timming - poll-input-events. To avoid that behavior and control frame processes manually, enable in config.h: SUPPORT_CUSTOM_FRAME_CONTROL


Definition