Update raylib_api.* by CI
This commit is contained in:
parent
8a5a95c13a
commit
0a26d9a26f
4 changed files with 8 additions and 8 deletions
|
@ -9801,7 +9801,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "TextToInteger",
|
"name": "TextToInteger",
|
||||||
"description": "Get integer value from text (negative values not supported)",
|
"description": "Get integer value from text",
|
||||||
"returnType": "int",
|
"returnType": "int",
|
||||||
"params": [
|
"params": [
|
||||||
{
|
{
|
||||||
|
@ -9812,7 +9812,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "TextToFloat",
|
"name": "TextToFloat",
|
||||||
"description": "Get float value from text (negative values not supported)",
|
"description": "Get float value from text",
|
||||||
"returnType": "float",
|
"returnType": "float",
|
||||||
"params": [
|
"params": [
|
||||||
{
|
{
|
||||||
|
|
|
@ -6969,7 +6969,7 @@ return {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name = "TextToInteger",
|
name = "TextToInteger",
|
||||||
description = "Get integer value from text (negative values not supported)",
|
description = "Get integer value from text",
|
||||||
returnType = "int",
|
returnType = "int",
|
||||||
params = {
|
params = {
|
||||||
{type = "const char *", name = "text"}
|
{type = "const char *", name = "text"}
|
||||||
|
@ -6977,7 +6977,7 @@ return {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name = "TextToFloat",
|
name = "TextToFloat",
|
||||||
description = "Get float value from text (negative values not supported)",
|
description = "Get float value from text",
|
||||||
returnType = "float",
|
returnType = "float",
|
||||||
params = {
|
params = {
|
||||||
{type = "const char *", name = "text"}
|
{type = "const char *", name = "text"}
|
||||||
|
|
|
@ -3757,12 +3757,12 @@ Function 438: TextToCamel() (1 input parameters)
|
||||||
Function 439: TextToInteger() (1 input parameters)
|
Function 439: TextToInteger() (1 input parameters)
|
||||||
Name: TextToInteger
|
Name: TextToInteger
|
||||||
Return type: int
|
Return type: int
|
||||||
Description: Get integer value from text (negative values not supported)
|
Description: Get integer value from text
|
||||||
Param[1]: text (type: const char *)
|
Param[1]: text (type: const char *)
|
||||||
Function 440: TextToFloat() (1 input parameters)
|
Function 440: TextToFloat() (1 input parameters)
|
||||||
Name: TextToFloat
|
Name: TextToFloat
|
||||||
Return type: float
|
Return type: float
|
||||||
Description: Get float value from text (negative values not supported)
|
Description: Get float value from text
|
||||||
Param[1]: text (type: const char *)
|
Param[1]: text (type: const char *)
|
||||||
Function 441: DrawLine3D() (3 input parameters)
|
Function 441: DrawLine3D() (3 input parameters)
|
||||||
Name: DrawLine3D
|
Name: DrawLine3D
|
||||||
|
|
|
@ -2487,10 +2487,10 @@
|
||||||
<Function name="TextToCamel" retType="const char *" paramCount="1" desc="Get Camel case notation version of provided string">
|
<Function name="TextToCamel" retType="const char *" paramCount="1" desc="Get Camel case notation version of provided string">
|
||||||
<Param type="const char *" name="text" desc="" />
|
<Param type="const char *" name="text" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
<Function name="TextToInteger" retType="int" paramCount="1" desc="Get integer value from text (negative values not supported)">
|
<Function name="TextToInteger" retType="int" paramCount="1" desc="Get integer value from text">
|
||||||
<Param type="const char *" name="text" desc="" />
|
<Param type="const char *" name="text" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
<Function name="TextToFloat" retType="float" paramCount="1" desc="Get float value from text (negative values not supported)">
|
<Function name="TextToFloat" retType="float" paramCount="1" desc="Get float value from text">
|
||||||
<Param type="const char *" name="text" desc="" />
|
<Param type="const char *" name="text" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
<Function name="DrawLine3D" retType="void" paramCount="3" desc="Draw a line in 3D world space">
|
<Function name="DrawLine3D" retType="void" paramCount="3" desc="Draw a line in 3D world space">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue