Update raylib_api.* by CI
This commit is contained in:
parent
2072b4fa04
commit
c6a58d9744
4 changed files with 72 additions and 72 deletions
|
@ -27,7 +27,7 @@ return {
|
|||
{
|
||||
name = "RAYLIB_VERSION",
|
||||
type = "STRING",
|
||||
value = "5.5-dev",
|
||||
value = "5.5",
|
||||
description = ""
|
||||
},
|
||||
{
|
||||
|
@ -3129,22 +3129,22 @@ return {
|
|||
},
|
||||
{
|
||||
name = "IsWindowHidden",
|
||||
description = "Check if window is currently hidden (only PLATFORM_DESKTOP)",
|
||||
description = "Check if window is currently hidden",
|
||||
returnType = "bool"
|
||||
},
|
||||
{
|
||||
name = "IsWindowMinimized",
|
||||
description = "Check if window is currently minimized (only PLATFORM_DESKTOP)",
|
||||
description = "Check if window is currently minimized",
|
||||
returnType = "bool"
|
||||
},
|
||||
{
|
||||
name = "IsWindowMaximized",
|
||||
description = "Check if window is currently maximized (only PLATFORM_DESKTOP)",
|
||||
description = "Check if window is currently maximized",
|
||||
returnType = "bool"
|
||||
},
|
||||
{
|
||||
name = "IsWindowFocused",
|
||||
description = "Check if window is currently focused (only PLATFORM_DESKTOP)",
|
||||
description = "Check if window is currently focused",
|
||||
returnType = "bool"
|
||||
},
|
||||
{
|
||||
|
@ -3162,7 +3162,7 @@ return {
|
|||
},
|
||||
{
|
||||
name = "SetWindowState",
|
||||
description = "Set window configuration state using flags (only PLATFORM_DESKTOP)",
|
||||
description = "Set window configuration state using flags",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "unsigned int", name = "flags"}
|
||||
|
@ -3178,32 +3178,32 @@ return {
|
|||
},
|
||||
{
|
||||
name = "ToggleFullscreen",
|
||||
description = "Toggle window state: fullscreen/windowed [resizes monitor to match window resolution] (only PLATFORM_DESKTOP)",
|
||||
description = "Toggle window state: fullscreen/windowed, resizes monitor to match window resolution",
|
||||
returnType = "void"
|
||||
},
|
||||
{
|
||||
name = "ToggleBorderlessWindowed",
|
||||
description = "Toggle window state: borderless windowed [resizes window to match monitor resolution] (only PLATFORM_DESKTOP)",
|
||||
description = "Toggle window state: borderless windowed, resizes window to match monitor resolution",
|
||||
returnType = "void"
|
||||
},
|
||||
{
|
||||
name = "MaximizeWindow",
|
||||
description = "Set window state: maximized, if resizable (only PLATFORM_DESKTOP)",
|
||||
description = "Set window state: maximized, if resizable",
|
||||
returnType = "void"
|
||||
},
|
||||
{
|
||||
name = "MinimizeWindow",
|
||||
description = "Set window state: minimized, if resizable (only PLATFORM_DESKTOP)",
|
||||
description = "Set window state: minimized, if resizable",
|
||||
returnType = "void"
|
||||
},
|
||||
{
|
||||
name = "RestoreWindow",
|
||||
description = "Set window state: not minimized/maximized (only PLATFORM_DESKTOP)",
|
||||
description = "Set window state: not minimized/maximized",
|
||||
returnType = "void"
|
||||
},
|
||||
{
|
||||
name = "SetWindowIcon",
|
||||
description = "Set icon for window (single image, RGBA 32bit, only PLATFORM_DESKTOP)",
|
||||
description = "Set icon for window (single image, RGBA 32bit)",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "Image", name = "image"}
|
||||
|
@ -3211,7 +3211,7 @@ return {
|
|||
},
|
||||
{
|
||||
name = "SetWindowIcons",
|
||||
description = "Set icon for window (multiple images, RGBA 32bit, only PLATFORM_DESKTOP)",
|
||||
description = "Set icon for window (multiple images, RGBA 32bit)",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "Image *", name = "images"},
|
||||
|
@ -3220,7 +3220,7 @@ return {
|
|||
},
|
||||
{
|
||||
name = "SetWindowTitle",
|
||||
description = "Set title for window (only PLATFORM_DESKTOP and PLATFORM_WEB)",
|
||||
description = "Set title for window",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "const char *", name = "title"}
|
||||
|
@ -3228,7 +3228,7 @@ return {
|
|||
},
|
||||
{
|
||||
name = "SetWindowPosition",
|
||||
description = "Set window position on screen (only PLATFORM_DESKTOP)",
|
||||
description = "Set window position on screen",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "int", name = "x"},
|
||||
|
@ -3272,7 +3272,7 @@ return {
|
|||
},
|
||||
{
|
||||
name = "SetWindowOpacity",
|
||||
description = "Set window opacity [0.0f..1.0f] (only PLATFORM_DESKTOP)",
|
||||
description = "Set window opacity [0.0f..1.0f]",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "float", name = "opacity"}
|
||||
|
@ -3280,7 +3280,7 @@ return {
|
|||
},
|
||||
{
|
||||
name = "SetWindowFocused",
|
||||
description = "Set window focused (only PLATFORM_DESKTOP)",
|
||||
description = "Set window focused",
|
||||
returnType = "void"
|
||||
},
|
||||
{
|
||||
|
@ -4281,7 +4281,7 @@ return {
|
|||
},
|
||||
{
|
||||
name = "IsKeyPressedRepeat",
|
||||
description = "Check if a key has been pressed again (Only PLATFORM_DESKTOP)",
|
||||
description = "Check if a key has been pressed again",
|
||||
returnType = "bool",
|
||||
params = {
|
||||
{type = "int", name = "key"}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue