satarics

Results 2 issues of satarics

How to create a constant if possible?

examples gui_portable_window.lua: ```lua #!/home/maik_ubn/raylib-lua/raylua_s local width, height = 1280, 720 rl.SetConfigFlags(rl.FLAG_WINDOW_UNDECORATED) rl.InitWindow(width, height, "raygui - portable window") rl.SetTargetFPS(75) local mouse_pos = rl.new("Vector2", 0, 0) local window_pos = rl.GetWindowPosition() local pan_offset...