3 коммитов

6 измененных файлов: 10 добавлений и 14 удалений
  1. +2
    -2
      parser/output/raylib_api.json
  2. +2
    -2
      parser/output/raylib_api.lua
  3. +2
    -2
      parser/output/raylib_api.txt
  4. +2
    -2
      parser/output/raylib_api.xml
  5. +0
    -4
      projects/VS2022/raylib.sln
  6. +2
    -2
      src/raylib.h

+ 2
- 2
parser/output/raylib_api.json Просмотреть файл

@ -9801,7 +9801,7 @@
},
{
"name": "TextToInteger",
"description": "Get integer value from text (negative values not supported)",
"description": "Get integer value from text",
"returnType": "int",
"params": [
{
@ -9812,7 +9812,7 @@
},
{
"name": "TextToFloat",
"description": "Get float value from text (negative values not supported)",
"description": "Get float value from text",
"returnType": "float",
"params": [
{

+ 2
- 2
parser/output/raylib_api.lua Просмотреть файл

@ -6969,7 +6969,7 @@ return {
},
{
name = "TextToInteger",
description = "Get integer value from text (negative values not supported)",
description = "Get integer value from text",
returnType = "int",
params = {
{type = "const char *", name = "text"}
@ -6977,7 +6977,7 @@ return {
},
{
name = "TextToFloat",
description = "Get float value from text (negative values not supported)",
description = "Get float value from text",
returnType = "float",
params = {
{type = "const char *", name = "text"}

+ 2
- 2
parser/output/raylib_api.txt Просмотреть файл

@ -3757,12 +3757,12 @@ Function 438: TextToCamel() (1 input parameters)
Function 439: TextToInteger() (1 input parameters)
Name: TextToInteger
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 *)
Function 440: TextToFloat() (1 input parameters)
Name: TextToFloat
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 *)
Function 441: DrawLine3D() (3 input parameters)
Name: DrawLine3D

+ 2
- 2
parser/output/raylib_api.xml Просмотреть файл

@ -2487,10 +2487,10 @@
<Function name="TextToCamel" retType="const char *" paramCount="1" desc="Get Camel case notation version of provided string">
<Param type="const char *" name="text" desc="" />
</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="" />
</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="" />
</Function>
<Function name="DrawLine3D" retType="void" paramCount="3" desc="Draw a line in 3D world space">

+ 0
- 4
projects/VS2022/raylib.sln Просмотреть файл

@ -693,16 +693,12 @@ Global
{F026020F-7B00-40C8-91C3-5DE85EC45A95}.Debug.DLL|x86.ActiveCfg = Debug.DLL|Win32
{F026020F-7B00-40C8-91C3-5DE85EC45A95}.Debug.DLL|x86.Build.0 = Debug.DLL|Win32
{F026020F-7B00-40C8-91C3-5DE85EC45A95}.Debug|x64.ActiveCfg = Debug|x64
{F026020F-7B00-40C8-91C3-5DE85EC45A95}.Debug|x64.Build.0 = Debug|x64
{F026020F-7B00-40C8-91C3-5DE85EC45A95}.Debug|x86.ActiveCfg = Debug|Win32
{F026020F-7B00-40C8-91C3-5DE85EC45A95}.Debug|x86.Build.0 = Debug|Win32
{F026020F-7B00-40C8-91C3-5DE85EC45A95}.Release.DLL|x64.ActiveCfg = Release.DLL|x64
{F026020F-7B00-40C8-91C3-5DE85EC45A95}.Release.DLL|x86.ActiveCfg = Release.DLL|Win32
{F026020F-7B00-40C8-91C3-5DE85EC45A95}.Release.DLL|x86.Build.0 = Release.DLL|Win32
{F026020F-7B00-40C8-91C3-5DE85EC45A95}.Release|x64.ActiveCfg = Release|x64
{F026020F-7B00-40C8-91C3-5DE85EC45A95}.Release|x64.Build.0 = Release|x64
{F026020F-7B00-40C8-91C3-5DE85EC45A95}.Release|x86.ActiveCfg = Release|Win32
{F026020F-7B00-40C8-91C3-5DE85EC45A95}.Release|x86.Build.0 = Release|Win32
{6B8BAAF1-75C7-4C68-80B8-0E2A9EABBD9A}.Debug.DLL|x64.ActiveCfg = Debug.DLL|x64
{6B8BAAF1-75C7-4C68-80B8-0E2A9EABBD9A}.Debug.DLL|x64.Build.0 = Debug.DLL|x64
{6B8BAAF1-75C7-4C68-80B8-0E2A9EABBD9A}.Debug.DLL|x86.ActiveCfg = Debug.DLL|Win32

+ 2
- 2
src/raylib.h Просмотреть файл

@ -1520,8 +1520,8 @@ RLAPI const char *TextToPascal(const char *text);
RLAPI const char *TextToSnake(const char *text); // Get Snake case notation version of provided string
RLAPI const char *TextToCamel(const char *text); // Get Camel case notation version of provided string
RLAPI int TextToInteger(const char *text); // Get integer value from text (negative values not supported)
RLAPI float TextToFloat(const char *text); // Get float value from text (negative values not supported)
RLAPI int TextToInteger(const char *text); // Get integer value from text
RLAPI float TextToFloat(const char *text); // Get float value from text
//------------------------------------------------------------------------------------
// Basic 3d Shapes Drawing Functions (Module: models)

Загрузка…
Отмена
Сохранить