diff options
| author | Dane Madsen <[email protected]> | 2023-05-21 19:33:47 +1000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-05-21 11:33:47 +0200 |
| commit | e96dc46d38fcc73cc278ef7a1ad95ce63c6ce989 (patch) | |
| tree | dce80cf3f5d6b9cff2486da6e0f0e3ea6df02f01 /parser/output/raylib_api.json | |
| parent | 1b4634702ca9f1e76477833618ccfea9093f03e5 (diff) | |
| download | raylib-e96dc46d38fcc73cc278ef7a1ad95ce63c6ce989.tar.gz raylib-e96dc46d38fcc73cc278ef7a1ad95ce63c6ce989.zip | |
Replaced GenImageGradientH and GenImageGradientV with GenImageLinearGradient (#3074)
* Replaced GenImageGradientH and GenImageGradientV with GenImageLinearGradient
* renamed GenImageLinearGradient to GenImageGradientLinear
Diffstat (limited to 'parser/output/raylib_api.json')
| -rw-r--r-- | parser/output/raylib_api.json | 38 |
1 files changed, 12 insertions, 26 deletions
diff --git a/parser/output/raylib_api.json b/parser/output/raylib_api.json index 62d9f440..5af2b9ae 100644 --- a/parser/output/raylib_api.json +++ b/parser/output/raylib_api.json @@ -15,7 +15,7 @@ { "name": "RAYLIB_VERSION_MINOR", "type": "INT", - "value": 5, + "value": 6, "description": "" }, { @@ -27,7 +27,7 @@ { "name": "RAYLIB_VERSION", "type": "STRING", - "value": "4.5", + "value": "4.6-dev", "description": "" }, { @@ -1032,6 +1032,11 @@ "type": "Transform **", "name": "framePoses", "description": "Poses array by frame" + }, + { + "type": "char[32]", + "name": "name", + "description": "Animation name" } ] }, @@ -6236,8 +6241,8 @@ ] }, { - "name": "GenImageGradientV", - "description": "Generate image: vertical gradient", + "name": "GenImageGradientLinear", + "description": "Generate image: linear gradient", "returnType": "Image", "params": [ { @@ -6249,35 +6254,16 @@ "name": "height" }, { - "type": "Color", - "name": "top" - }, - { - "type": "Color", - "name": "bottom" - } - ] - }, - { - "name": "GenImageGradientH", - "description": "Generate image: horizontal gradient", - "returnType": "Image", - "params": [ - { - "type": "int", - "name": "width" - }, - { "type": "int", - "name": "height" + "name": "direction" }, { "type": "Color", - "name": "left" + "name": "start" }, { "type": "Color", - "name": "right" + "name": "end" } ] }, |
