Skip to content

Commit

Permalink
Release 2024-01-08
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 8, 2024
1 parent 05a3251 commit 5c46f55
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs-gen/native-cam.def.lua
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,10 @@ function SetFirstPersonCamNearClip(distance) end
--- StopGameplayCamShaking
---
--- @hash [0x0EF93E9F3D08C178](https://docs.fivem.net/natives/?_0x0EF93E9F3D08C178)
--- @param p0 boolean
--- @param bStopImmediately boolean
--- @return void
--- @overload fun(p0: boolean): void
function StopGameplayCamShaking(p0) end
--- @overload fun(bStopImmediately: boolean): void
function StopGameplayCamShaking(bStopImmediately) end


--- Takes a camera and uses the information from it as a camera spline node.
Expand Down
19 changes: 18 additions & 1 deletion docs-gen/native-graphics.def.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6586,12 +6586,29 @@ function DrawSpotLight(posX, posY, posZ, dirX, dirY, dirZ, colorR, colorG, color
function N_0xd1c55b110e4df534(p0) end


--- N_0xd1c7cb175e012964
--- Passes keyboard input to scaleform. You must call this native every frame. Once an input occurs, this native will return true and call `SET_PC_KEY` scaleform movie method with the key that has been inputted.
---
--- The key parameter which is passed to the scaleform can also be: "BACKSPACE", "ENTER" or "\x1b" (Which is ESC).
--- This native is only used in `web_browser.c` as of game build 2944.
---
--- @hash [0xD1C7CB175E012964](https://docs.fivem.net/natives/?_0xD1C7CB175E012964)
--- @param scaleformHandle number (int)
--- @return boolean
--- @overload fun(scaleformHandle: number): boolean
function PassKeyboardInputToScaleform(scaleformHandle) end


--- # New Name: PassKeyboardInputToScaleform
--- Passes keyboard input to scaleform. You must call this native every frame. Once an input occurs, this native will return true and call `SET_PC_KEY` scaleform movie method with the key that has been inputted.
---
--- The key parameter which is passed to the scaleform can also be: "BACKSPACE", "ENTER" or "\x1b" (Which is ESC).
--- This native is only used in `web_browser.c` as of game build 2944.
---
--- @hash [0xD1C7CB175E012964](https://docs.fivem.net/natives/?_0xD1C7CB175E012964)
--- @param scaleformHandle number (int)
--- @return boolean
--- @overload fun(scaleformHandle: number): boolean
--- @deprecated
function N_0xd1c7cb175e012964(scaleformHandle) end


Expand Down

0 comments on commit 5c46f55

Please sign in to comment.