mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-06 06:13:10 +00:00
rlparser: update raylib_api.* by CI
This commit is contained in:
parent
30cd36a8a9
commit
8161475c28
@ -11897,7 +11897,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "SetSoundPan",
|
"name": "SetSoundPan",
|
||||||
"description": "Set pan for a sound (0.5 is center)",
|
"description": "Set pan for a sound (-1.0 left, 0.0 center, 1.0 right)",
|
||||||
"returnType": "void",
|
"returnType": "void",
|
||||||
"params": [
|
"params": [
|
||||||
{
|
{
|
||||||
@ -12150,7 +12150,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "SetMusicPan",
|
"name": "SetMusicPan",
|
||||||
"description": "Set pan for a music (0.5 is center)",
|
"description": "Set pan for a music (-1.0 left, 0.0 center, 1.0 right)",
|
||||||
"returnType": "void",
|
"returnType": "void",
|
||||||
"params": [
|
"params": [
|
||||||
{
|
{
|
||||||
|
|||||||
@ -8105,7 +8105,7 @@ return {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name = "SetSoundPan",
|
name = "SetSoundPan",
|
||||||
description = "Set pan for a sound (0.5 is center)",
|
description = "Set pan for a sound (-1.0 left, 0.0 center, 1.0 right)",
|
||||||
returnType = "void",
|
returnType = "void",
|
||||||
params = {
|
params = {
|
||||||
{type = "Sound", name = "sound"},
|
{type = "Sound", name = "sound"},
|
||||||
@ -8268,7 +8268,7 @@ return {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name = "SetMusicPan",
|
name = "SetMusicPan",
|
||||||
description = "Set pan for a music (0.5 is center)",
|
description = "Set pan for a music (-1.0 left, 0.0 center, 1.0 right)",
|
||||||
returnType = "void",
|
returnType = "void",
|
||||||
params = {
|
params = {
|
||||||
{type = "Music", name = "music"},
|
{type = "Music", name = "music"},
|
||||||
|
|||||||
@ -4554,7 +4554,7 @@ Function 556: SetSoundPitch() (2 input parameters)
|
|||||||
Function 557: SetSoundPan() (2 input parameters)
|
Function 557: SetSoundPan() (2 input parameters)
|
||||||
Name: SetSoundPan
|
Name: SetSoundPan
|
||||||
Return type: void
|
Return type: void
|
||||||
Description: Set pan for a sound (0.5 is center)
|
Description: Set pan for a sound (-1.0 left, 0.0 center, 1.0 right)
|
||||||
Param[1]: sound (type: Sound)
|
Param[1]: sound (type: Sound)
|
||||||
Param[2]: pan (type: float)
|
Param[2]: pan (type: float)
|
||||||
Function 558: WaveCopy() (1 input parameters)
|
Function 558: WaveCopy() (1 input parameters)
|
||||||
@ -4660,7 +4660,7 @@ Function 575: SetMusicPitch() (2 input parameters)
|
|||||||
Function 576: SetMusicPan() (2 input parameters)
|
Function 576: SetMusicPan() (2 input parameters)
|
||||||
Name: SetMusicPan
|
Name: SetMusicPan
|
||||||
Return type: void
|
Return type: void
|
||||||
Description: Set pan for a music (0.5 is center)
|
Description: Set pan for a music (-1.0 left, 0.0 center, 1.0 right)
|
||||||
Param[1]: music (type: Music)
|
Param[1]: music (type: Music)
|
||||||
Param[2]: pan (type: float)
|
Param[2]: pan (type: float)
|
||||||
Function 577: GetMusicTimeLength() (1 input parameters)
|
Function 577: GetMusicTimeLength() (1 input parameters)
|
||||||
|
|||||||
@ -3043,7 +3043,7 @@
|
|||||||
<Param type="Sound" name="sound" desc="" />
|
<Param type="Sound" name="sound" desc="" />
|
||||||
<Param type="float" name="pitch" desc="" />
|
<Param type="float" name="pitch" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
<Function name="SetSoundPan" retType="void" paramCount="2" desc="Set pan for a sound (0.5 is center)">
|
<Function name="SetSoundPan" retType="void" paramCount="2" desc="Set pan for a sound (-1.0 left, 0.0 center, 1.0 right)">
|
||||||
<Param type="Sound" name="sound" desc="" />
|
<Param type="Sound" name="sound" desc="" />
|
||||||
<Param type="float" name="pan" desc="" />
|
<Param type="float" name="pan" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
@ -3111,7 +3111,7 @@
|
|||||||
<Param type="Music" name="music" desc="" />
|
<Param type="Music" name="music" desc="" />
|
||||||
<Param type="float" name="pitch" desc="" />
|
<Param type="float" name="pitch" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
<Function name="SetMusicPan" retType="void" paramCount="2" desc="Set pan for a music (0.5 is center)">
|
<Function name="SetMusicPan" retType="void" paramCount="2" desc="Set pan for a music (-1.0 left, 0.0 center, 1.0 right)">
|
||||||
<Param type="Music" name="music" desc="" />
|
<Param type="Music" name="music" desc="" />
|
||||||
<Param type="float" name="pan" desc="" />
|
<Param type="float" name="pan" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user