diff options
Diffstat (limited to 'ReiLua_API.lua')
| -rw-r--r-- | ReiLua_API.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ReiLua_API.lua b/ReiLua_API.lua index 97edbde..0063eba 100644 --- a/ReiLua_API.lua +++ b/ReiLua_API.lua @@ -2127,6 +2127,15 @@ function RL.GenImageChecked( size, checks, col1, col2 ) end ---@return any image function RL.GenImageWhiteNoise( size, factor ) end +---Generate image: perlin noise +---- Failure return -1 +---- Success return int +---@param size table +---@param offset table +---@param factor number +---@return any image +function RL.GenImagePerlinNoise( size, offset, factor ) end + ---Generate image: cellular algorithm. Bigger tileSize means bigger cells ---- Failure return -1 ---- Success return int @@ -2135,6 +2144,14 @@ function RL.GenImageWhiteNoise( size, factor ) end ---@return any image function RL.GenImageCellular( size, tileSize ) end +---Generate image: grayscale image from text data +---- Failure return -1 +---- Success return int +---@param size table +---@param text string +---@return any image +function RL.GenImageText( size, text ) end + -- Textures - Image Manipulation Functions ---Create an image duplicate ( useful for transformations ) |
