Bitwise operations API update.
This commit is contained in:
8
API.md
8
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 )
|
> result = RL.Clamp( float value, float min, float max )
|
||||||
|
|
||||||
Clamp float value
|
Clamp float value
|
||||||
|
|||||||
@@ -5389,6 +5389,12 @@ function RL.GetMusicTimePlayed( music ) end
|
|||||||
---@return any result
|
---@return any result
|
||||||
function RL.Round( value ) end
|
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
|
---Clamp float value
|
||||||
---- Success return float
|
---- Success return float
|
||||||
---@param value number
|
---@param value number
|
||||||
|
|||||||
Reference in New Issue
Block a user