Skip to content

raylib.SetConfigFlags

JoeStrout edited this page Apr 29, 2026 · 2 revisions

Setup window configuration flags (view FLAGS) NOTE: This function is expected to be called before window creation, because it sets up some flags for the window creation process To configure window states after creation, use SetWindowState()

Parameters

Parameter Default Value Note
flags

Return value

None.

Notes

Example

// Must be called before InitWindow
raylib.SetConfigFlags raylib.FLAG_WINDOW_RESIZABLE
raylib.InitWindow 800, 600, "Resizable Window"

Clone this wiki locally