summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--API.md8
-rw-r--r--ReiLua_API.lua6
2 files changed, 14 insertions, 0 deletions
diff --git a/API.md b/API.md
index 283fbdc..09ffda3 100644
--- a/API.md
+++ b/API.md
@@ -8301,6 +8301,14 @@ Round float value
---
+> result = RL.Sign( float value )
+
+Sign of value
+
+- Success return int
+
+---
+
> result = RL.Clamp( float value, float min, float max )
Clamp float value
diff --git a/ReiLua_API.lua b/ReiLua_API.lua
index 8dad18d..3c076f3 100644
--- a/ReiLua_API.lua
+++ b/ReiLua_API.lua
@@ -5389,6 +5389,12 @@ function RL.GetMusicTimePlayed( music ) end
---@return any result
function RL.Round( value ) end
+---Sign of value
+---- Success return int
+---@param value number
+---@return any result
+function RL.Sign( value ) end
+
---Clamp float value
---- Success return float
---@param value number