|
@@ -403,7 +403,7 @@ Struct 14: Camera2D (4 fields)
|
|
|
Field[2]: Vector2 target // Camera target (rotation and zoom origin)
|
|
|
Field[3]: float rotation // Camera rotation in degrees
|
|
|
Field[4]: float zoom // Camera zoom (scaling), should be 1.0f by default
|
|
|
-Struct 15: Mesh (15 fields)
|
|
|
+Struct 15: Mesh (17 fields)
|
|
|
Name: Mesh
|
|
|
Description: Mesh, vertex data and vao/vbo
|
|
|
Field[1]: int vertexCount // Number of vertices stored in arrays
|
|
@@ -417,10 +417,12 @@ Struct 15: Mesh (15 fields)
|
|
|
Field[9]: unsigned short * indices // Vertex indices (in case vertex data comes indexed)
|
|
|
Field[10]: float * animVertices // Animated vertex positions (after bones transformations)
|
|
|
Field[11]: float * animNormals // Animated normals (after bones transformations)
|
|
|
- Field[12]: unsigned char * boneIds // Vertex bone ids, max 255 bone ids, up to 4 bones influence by vertex (skinning)
|
|
|
- Field[13]: float * boneWeights // Vertex bone weight, up to 4 bones influence by vertex (skinning)
|
|
|
- Field[14]: unsigned int vaoId // OpenGL Vertex Array Object id
|
|
|
- Field[15]: unsigned int * vboId // OpenGL Vertex Buffer Objects id (default vertex data)
|
|
|
+ Field[12]: unsigned char * boneIds // Vertex bone ids, max 255 bone ids, up to 4 bones influence by vertex (skinning) (shader-location = 6)
|
|
|
+ Field[13]: float * boneWeights // Vertex bone weight, up to 4 bones influence by vertex (skinning) (shader-location = 7)
|
|
|
+ Field[14]: Matrix * boneMatrices // Bones animated transformation matrices
|
|
|
+ Field[15]: int boneCount // Number of bones
|
|
|
+ Field[16]: unsigned int vaoId // OpenGL Vertex Array Object id
|
|
|
+ Field[17]: unsigned int * vboId // OpenGL Vertex Buffer Objects id (default vertex data)
|
|
|
Struct 16: Shader (2 fields)
|
|
|
Name: Shader
|
|
|
Description: Shader
|
|
@@ -793,7 +795,7 @@ Enum 08: MaterialMapIndex (11 values)
|
|
|
Value[MATERIAL_MAP_IRRADIANCE]: 8
|
|
|
Value[MATERIAL_MAP_PREFILTER]: 9
|
|
|
Value[MATERIAL_MAP_BRDF]: 10
|
|
|
-Enum 09: ShaderLocationIndex (26 values)
|
|
|
+Enum 09: ShaderLocationIndex (29 values)
|
|
|
Name: ShaderLocationIndex
|
|
|
Description: Shader location index
|
|
|
Value[SHADER_LOC_VERTEX_POSITION]: 0
|
|
@@ -822,6 +824,9 @@ Enum 09: ShaderLocationIndex (26 values)
|
|
|
Value[SHADER_LOC_MAP_IRRADIANCE]: 23
|
|
|
Value[SHADER_LOC_MAP_PREFILTER]: 24
|
|
|
Value[SHADER_LOC_MAP_BRDF]: 25
|
|
|
+ Value[SHADER_LOC_VERTEX_BONEIDS]: 26
|
|
|
+ Value[SHADER_LOC_VERTEX_BONEWEIGHTS]: 27
|
|
|
+ Value[SHADER_LOC_BONE_MATRICES]: 28
|
|
|
Enum 10: ShaderUniformDataType (9 values)
|
|
|
Name: ShaderUniformDataType
|
|
|
Description: Shader uniform data type
|
|
@@ -984,7 +989,7 @@ Callback 006: AudioCallback() (2 input parameters)
|
|
|
Param[1]: bufferData (type: void *)
|
|
|
Param[2]: frames (type: unsigned int)
|
|
|
|
|
|
-Functions found: 576
|
|
|
+Functions found: 577
|
|
|
|
|
|
Function 001: InitWindow() (3 input parameters)
|
|
|
Name: InitWindow
|
|
@@ -4217,7 +4222,14 @@ Function 502: IsModelAnimationValid() (2 input parameters)
|
|
|
Description: Check model animation skeleton match
|
|
|
Param[1]: model (type: Model)
|
|
|
Param[2]: anim (type: ModelAnimation)
|
|
|
-Function 503: CheckCollisionSpheres() (4 input parameters)
|
|
|
+Function 503: UpdateModelAnimationBoneMatrices() (3 input parameters)
|
|
|
+ Name: UpdateModelAnimationBoneMatrices
|
|
|
+ Return type: void
|
|
|
+ Description: Update model animation mesh bone matrices
|
|
|
+ Param[1]: model (type: Model)
|
|
|
+ Param[2]: anim (type: ModelAnimation)
|
|
|
+ Param[3]: frame (type: int)
|
|
|
+Function 504: CheckCollisionSpheres() (4 input parameters)
|
|
|
Name: CheckCollisionSpheres
|
|
|
Return type: bool
|
|
|
Description: Check collision between two spheres
|
|
@@ -4225,40 +4237,40 @@ Function 503: CheckCollisionSpheres() (4 input parameters)
|
|
|
Param[2]: radius1 (type: float)
|
|
|
Param[3]: center2 (type: Vector3)
|
|
|
Param[4]: radius2 (type: float)
|
|
|
-Function 504: CheckCollisionBoxes() (2 input parameters)
|
|
|
+Function 505: CheckCollisionBoxes() (2 input parameters)
|
|
|
Name: CheckCollisionBoxes
|
|
|
Return type: bool
|
|
|
Description: Check collision between two bounding boxes
|
|
|
Param[1]: box1 (type: BoundingBox)
|
|
|
Param[2]: box2 (type: BoundingBox)
|
|
|
-Function 505: CheckCollisionBoxSphere() (3 input parameters)
|
|
|
+Function 506: CheckCollisionBoxSphere() (3 input parameters)
|
|
|
Name: CheckCollisionBoxSphere
|
|
|
Return type: bool
|
|
|
Description: Check collision between box and sphere
|
|
|
Param[1]: box (type: BoundingBox)
|
|
|
Param[2]: center (type: Vector3)
|
|
|
Param[3]: radius (type: float)
|
|
|
-Function 506: GetRayCollisionSphere() (3 input parameters)
|
|
|
+Function 507: GetRayCollisionSphere() (3 input parameters)
|
|
|
Name: GetRayCollisionSphere
|
|
|
Return type: RayCollision
|
|
|
Description: Get collision info between ray and sphere
|
|
|
Param[1]: ray (type: Ray)
|
|
|
Param[2]: center (type: Vector3)
|
|
|
Param[3]: radius (type: float)
|
|
|
-Function 507: GetRayCollisionBox() (2 input parameters)
|
|
|
+Function 508: GetRayCollisionBox() (2 input parameters)
|
|
|
Name: GetRayCollisionBox
|
|
|
Return type: RayCollision
|
|
|
Description: Get collision info between ray and box
|
|
|
Param[1]: ray (type: Ray)
|
|
|
Param[2]: box (type: BoundingBox)
|
|
|
-Function 508: GetRayCollisionMesh() (3 input parameters)
|
|
|
+Function 509: GetRayCollisionMesh() (3 input parameters)
|
|
|
Name: GetRayCollisionMesh
|
|
|
Return type: RayCollision
|
|
|
Description: Get collision info between ray and mesh
|
|
|
Param[1]: ray (type: Ray)
|
|
|
Param[2]: mesh (type: Mesh)
|
|
|
Param[3]: transform (type: Matrix)
|
|
|
-Function 509: GetRayCollisionTriangle() (4 input parameters)
|
|
|
+Function 510: GetRayCollisionTriangle() (4 input parameters)
|
|
|
Name: GetRayCollisionTriangle
|
|
|
Return type: RayCollision
|
|
|
Description: Get collision info between ray and triangle
|
|
@@ -4266,7 +4278,7 @@ Function 509: GetRayCollisionTriangle() (4 input parameters)
|
|
|
Param[2]: p1 (type: Vector3)
|
|
|
Param[3]: p2 (type: Vector3)
|
|
|
Param[4]: p3 (type: Vector3)
|
|
|
-Function 510: GetRayCollisionQuad() (5 input parameters)
|
|
|
+Function 511: GetRayCollisionQuad() (5 input parameters)
|
|
|
Name: GetRayCollisionQuad
|
|
|
Return type: RayCollision
|
|
|
Description: Get collision info between ray and quad
|
|
@@ -4275,158 +4287,158 @@ Function 510: GetRayCollisionQuad() (5 input parameters)
|
|
|
Param[3]: p2 (type: Vector3)
|
|
|
Param[4]: p3 (type: Vector3)
|
|
|
Param[5]: p4 (type: Vector3)
|
|
|
-Function 511: InitAudioDevice() (0 input parameters)
|
|
|
+Function 512: InitAudioDevice() (0 input parameters)
|
|
|
Name: InitAudioDevice
|
|
|
Return type: void
|
|
|
Description: Initialize audio device and context
|
|
|
No input parameters
|
|
|
-Function 512: CloseAudioDevice() (0 input parameters)
|
|
|
+Function 513: CloseAudioDevice() (0 input parameters)
|
|
|
Name: CloseAudioDevice
|
|
|
Return type: void
|
|
|
Description: Close the audio device and context
|
|
|
No input parameters
|
|
|
-Function 513: IsAudioDeviceReady() (0 input parameters)
|
|
|
+Function 514: IsAudioDeviceReady() (0 input parameters)
|
|
|
Name: IsAudioDeviceReady
|
|
|
Return type: bool
|
|
|
Description: Check if audio device has been initialized successfully
|
|
|
No input parameters
|
|
|
-Function 514: SetMasterVolume() (1 input parameters)
|
|
|
+Function 515: SetMasterVolume() (1 input parameters)
|
|
|
Name: SetMasterVolume
|
|
|
Return type: void
|
|
|
Description: Set master volume (listener)
|
|
|
Param[1]: volume (type: float)
|
|
|
-Function 515: GetMasterVolume() (0 input parameters)
|
|
|
+Function 516: GetMasterVolume() (0 input parameters)
|
|
|
Name: GetMasterVolume
|
|
|
Return type: float
|
|
|
Description: Get master volume (listener)
|
|
|
No input parameters
|
|
|
-Function 516: LoadWave() (1 input parameters)
|
|
|
+Function 517: LoadWave() (1 input parameters)
|
|
|
Name: LoadWave
|
|
|
Return type: Wave
|
|
|
Description: Load wave data from file
|
|
|
Param[1]: fileName (type: const char *)
|
|
|
-Function 517: LoadWaveFromMemory() (3 input parameters)
|
|
|
+Function 518: LoadWaveFromMemory() (3 input parameters)
|
|
|
Name: LoadWaveFromMemory
|
|
|
Return type: Wave
|
|
|
Description: Load wave from memory buffer, fileType refers to extension: i.e. '.wav'
|
|
|
Param[1]: fileType (type: const char *)
|
|
|
Param[2]: fileData (type: const unsigned char *)
|
|
|
Param[3]: dataSize (type: int)
|
|
|
-Function 518: IsWaveReady() (1 input parameters)
|
|
|
+Function 519: IsWaveReady() (1 input parameters)
|
|
|
Name: IsWaveReady
|
|
|
Return type: bool
|
|
|
Description: Checks if wave data is ready
|
|
|
Param[1]: wave (type: Wave)
|
|
|
-Function 519: LoadSound() (1 input parameters)
|
|
|
+Function 520: LoadSound() (1 input parameters)
|
|
|
Name: LoadSound
|
|
|
Return type: Sound
|
|
|
Description: Load sound from file
|
|
|
Param[1]: fileName (type: const char *)
|
|
|
-Function 520: LoadSoundFromWave() (1 input parameters)
|
|
|
+Function 521: LoadSoundFromWave() (1 input parameters)
|
|
|
Name: LoadSoundFromWave
|
|
|
Return type: Sound
|
|
|
Description: Load sound from wave data
|
|
|
Param[1]: wave (type: Wave)
|
|
|
-Function 521: LoadSoundAlias() (1 input parameters)
|
|
|
+Function 522: LoadSoundAlias() (1 input parameters)
|
|
|
Name: LoadSoundAlias
|
|
|
Return type: Sound
|
|
|
Description: Create a new sound that shares the same sample data as the source sound, does not own the sound data
|
|
|
Param[1]: source (type: Sound)
|
|
|
-Function 522: IsSoundReady() (1 input parameters)
|
|
|
+Function 523: IsSoundReady() (1 input parameters)
|
|
|
Name: IsSoundReady
|
|
|
Return type: bool
|
|
|
Description: Checks if a sound is ready
|
|
|
Param[1]: sound (type: Sound)
|
|
|
-Function 523: UpdateSound() (3 input parameters)
|
|
|
+Function 524: UpdateSound() (3 input parameters)
|
|
|
Name: UpdateSound
|
|
|
Return type: void
|
|
|
Description: Update sound buffer with new data
|
|
|
Param[1]: sound (type: Sound)
|
|
|
Param[2]: data (type: const void *)
|
|
|
Param[3]: sampleCount (type: int)
|
|
|
-Function 524: UnloadWave() (1 input parameters)
|
|
|
+Function 525: UnloadWave() (1 input parameters)
|
|
|
Name: UnloadWave
|
|
|
Return type: void
|
|
|
Description: Unload wave data
|
|
|
Param[1]: wave (type: Wave)
|
|
|
-Function 525: UnloadSound() (1 input parameters)
|
|
|
+Function 526: UnloadSound() (1 input parameters)
|
|
|
Name: UnloadSound
|
|
|
Return type: void
|
|
|
Description: Unload sound
|
|
|
Param[1]: sound (type: Sound)
|
|
|
-Function 526: UnloadSoundAlias() (1 input parameters)
|
|
|
+Function 527: UnloadSoundAlias() (1 input parameters)
|
|
|
Name: UnloadSoundAlias
|
|
|
Return type: void
|
|
|
Description: Unload a sound alias (does not deallocate sample data)
|
|
|
Param[1]: alias (type: Sound)
|
|
|
-Function 527: ExportWave() (2 input parameters)
|
|
|
+Function 528: ExportWave() (2 input parameters)
|
|
|
Name: ExportWave
|
|
|
Return type: bool
|
|
|
Description: Export wave data to file, returns true on success
|
|
|
Param[1]: wave (type: Wave)
|
|
|
Param[2]: fileName (type: const char *)
|
|
|
-Function 528: ExportWaveAsCode() (2 input parameters)
|
|
|
+Function 529: ExportWaveAsCode() (2 input parameters)
|
|
|
Name: ExportWaveAsCode
|
|
|
Return type: bool
|
|
|
Description: Export wave sample data to code (.h), returns true on success
|
|
|
Param[1]: wave (type: Wave)
|
|
|
Param[2]: fileName (type: const char *)
|
|
|
-Function 529: PlaySound() (1 input parameters)
|
|
|
+Function 530: PlaySound() (1 input parameters)
|
|
|
Name: PlaySound
|
|
|
Return type: void
|
|
|
Description: Play a sound
|
|
|
Param[1]: sound (type: Sound)
|
|
|
-Function 530: StopSound() (1 input parameters)
|
|
|
+Function 531: StopSound() (1 input parameters)
|
|
|
Name: StopSound
|
|
|
Return type: void
|
|
|
Description: Stop playing a sound
|
|
|
Param[1]: sound (type: Sound)
|
|
|
-Function 531: PauseSound() (1 input parameters)
|
|
|
+Function 532: PauseSound() (1 input parameters)
|
|
|
Name: PauseSound
|
|
|
Return type: void
|
|
|
Description: Pause a sound
|
|
|
Param[1]: sound (type: Sound)
|
|
|
-Function 532: ResumeSound() (1 input parameters)
|
|
|
+Function 533: ResumeSound() (1 input parameters)
|
|
|
Name: ResumeSound
|
|
|
Return type: void
|
|
|
Description: Resume a paused sound
|
|
|
Param[1]: sound (type: Sound)
|
|
|
-Function 533: IsSoundPlaying() (1 input parameters)
|
|
|
+Function 534: IsSoundPlaying() (1 input parameters)
|
|
|
Name: IsSoundPlaying
|
|
|
Return type: bool
|
|
|
Description: Check if a sound is currently playing
|
|
|
Param[1]: sound (type: Sound)
|
|
|
-Function 534: SetSoundVolume() (2 input parameters)
|
|
|
+Function 535: SetSoundVolume() (2 input parameters)
|
|
|
Name: SetSoundVolume
|
|
|
Return type: void
|
|
|
Description: Set volume for a sound (1.0 is max level)
|
|
|
Param[1]: sound (type: Sound)
|
|
|
Param[2]: volume (type: float)
|
|
|
-Function 535: SetSoundPitch() (2 input parameters)
|
|
|
+Function 536: SetSoundPitch() (2 input parameters)
|
|
|
Name: SetSoundPitch
|
|
|
Return type: void
|
|
|
Description: Set pitch for a sound (1.0 is base level)
|
|
|
Param[1]: sound (type: Sound)
|
|
|
Param[2]: pitch (type: float)
|
|
|
-Function 536: SetSoundPan() (2 input parameters)
|
|
|
+Function 537: SetSoundPan() (2 input parameters)
|
|
|
Name: SetSoundPan
|
|
|
Return type: void
|
|
|
Description: Set pan for a sound (0.5 is center)
|
|
|
Param[1]: sound (type: Sound)
|
|
|
Param[2]: pan (type: float)
|
|
|
-Function 537: WaveCopy() (1 input parameters)
|
|
|
+Function 538: WaveCopy() (1 input parameters)
|
|
|
Name: WaveCopy
|
|
|
Return type: Wave
|
|
|
Description: Copy a wave to a new wave
|
|
|
Param[1]: wave (type: Wave)
|
|
|
-Function 538: WaveCrop() (3 input parameters)
|
|
|
+Function 539: WaveCrop() (3 input parameters)
|
|
|
Name: WaveCrop
|
|
|
Return type: void
|
|
|
Description: Crop a wave to defined frames range
|
|
|
Param[1]: wave (type: Wave *)
|
|
|
Param[2]: initFrame (type: int)
|
|
|
Param[3]: finalFrame (type: int)
|
|
|
-Function 539: WaveFormat() (4 input parameters)
|
|
|
+Function 540: WaveFormat() (4 input parameters)
|
|
|
Name: WaveFormat
|
|
|
Return type: void
|
|
|
Description: Convert wave data to desired format
|
|
@@ -4434,203 +4446,203 @@ Function 539: WaveFormat() (4 input parameters)
|
|
|
Param[2]: sampleRate (type: int)
|
|
|
Param[3]: sampleSize (type: int)
|
|
|
Param[4]: channels (type: int)
|
|
|
-Function 540: LoadWaveSamples() (1 input parameters)
|
|
|
+Function 541: LoadWaveSamples() (1 input parameters)
|
|
|
Name: LoadWaveSamples
|
|
|
Return type: float *
|
|
|
Description: Load samples data from wave as a 32bit float data array
|
|
|
Param[1]: wave (type: Wave)
|
|
|
-Function 541: UnloadWaveSamples() (1 input parameters)
|
|
|
+Function 542: UnloadWaveSamples() (1 input parameters)
|
|
|
Name: UnloadWaveSamples
|
|
|
Return type: void
|
|
|
Description: Unload samples data loaded with LoadWaveSamples()
|
|
|
Param[1]: samples (type: float *)
|
|
|
-Function 542: LoadMusicStream() (1 input parameters)
|
|
|
+Function 543: LoadMusicStream() (1 input parameters)
|
|
|
Name: LoadMusicStream
|
|
|
Return type: Music
|
|
|
Description: Load music stream from file
|
|
|
Param[1]: fileName (type: const char *)
|
|
|
-Function 543: LoadMusicStreamFromMemory() (3 input parameters)
|
|
|
+Function 544: LoadMusicStreamFromMemory() (3 input parameters)
|
|
|
Name: LoadMusicStreamFromMemory
|
|
|
Return type: Music
|
|
|
Description: Load music stream from data
|
|
|
Param[1]: fileType (type: const char *)
|
|
|
Param[2]: data (type: const unsigned char *)
|
|
|
Param[3]: dataSize (type: int)
|
|
|
-Function 544: IsMusicReady() (1 input parameters)
|
|
|
+Function 545: IsMusicReady() (1 input parameters)
|
|
|
Name: IsMusicReady
|
|
|
Return type: bool
|
|
|
Description: Checks if a music stream is ready
|
|
|
Param[1]: music (type: Music)
|
|
|
-Function 545: UnloadMusicStream() (1 input parameters)
|
|
|
+Function 546: UnloadMusicStream() (1 input parameters)
|
|
|
Name: UnloadMusicStream
|
|
|
Return type: void
|
|
|
Description: Unload music stream
|
|
|
Param[1]: music (type: Music)
|
|
|
-Function 546: PlayMusicStream() (1 input parameters)
|
|
|
+Function 547: PlayMusicStream() (1 input parameters)
|
|
|
Name: PlayMusicStream
|
|
|
Return type: void
|
|
|
Description: Start music playing
|
|
|
Param[1]: music (type: Music)
|
|
|
-Function 547: IsMusicStreamPlaying() (1 input parameters)
|
|
|
+Function 548: IsMusicStreamPlaying() (1 input parameters)
|
|
|
Name: IsMusicStreamPlaying
|
|
|
Return type: bool
|
|
|
Description: Check if music is playing
|
|
|
Param[1]: music (type: Music)
|
|
|
-Function 548: UpdateMusicStream() (1 input parameters)
|
|
|
+Function 549: UpdateMusicStream() (1 input parameters)
|
|
|
Name: UpdateMusicStream
|
|
|
Return type: void
|
|
|
Description: Updates buffers for music streaming
|
|
|
Param[1]: music (type: Music)
|
|
|
-Function 549: StopMusicStream() (1 input parameters)
|
|
|
+Function 550: StopMusicStream() (1 input parameters)
|
|
|
Name: StopMusicStream
|
|
|
Return type: void
|
|
|
Description: Stop music playing
|
|
|
Param[1]: music (type: Music)
|
|
|
-Function 550: PauseMusicStream() (1 input parameters)
|
|
|
+Function 551: PauseMusicStream() (1 input parameters)
|
|
|
Name: PauseMusicStream
|
|
|
Return type: void
|
|
|
Description: Pause music playing
|
|
|
Param[1]: music (type: Music)
|
|
|
-Function 551: ResumeMusicStream() (1 input parameters)
|
|
|
+Function 552: ResumeMusicStream() (1 input parameters)
|
|
|
Name: ResumeMusicStream
|
|
|
Return type: void
|
|
|
Description: Resume playing paused music
|
|
|
Param[1]: music (type: Music)
|
|
|
-Function 552: SeekMusicStream() (2 input parameters)
|
|
|
+Function 553: SeekMusicStream() (2 input parameters)
|
|
|
Name: SeekMusicStream
|
|
|
Return type: void
|
|
|
Description: Seek music to a position (in seconds)
|
|
|
Param[1]: music (type: Music)
|
|
|
Param[2]: position (type: float)
|
|
|
-Function 553: SetMusicVolume() (2 input parameters)
|
|
|
+Function 554: SetMusicVolume() (2 input parameters)
|
|
|
Name: SetMusicVolume
|
|
|
Return type: void
|
|
|
Description: Set volume for music (1.0 is max level)
|
|
|
Param[1]: music (type: Music)
|
|
|
Param[2]: volume (type: float)
|
|
|
-Function 554: SetMusicPitch() (2 input parameters)
|
|
|
+Function 555: SetMusicPitch() (2 input parameters)
|
|
|
Name: SetMusicPitch
|
|
|
Return type: void
|
|
|
Description: Set pitch for a music (1.0 is base level)
|
|
|
Param[1]: music (type: Music)
|
|
|
Param[2]: pitch (type: float)
|
|
|
-Function 555: SetMusicPan() (2 input parameters)
|
|
|
+Function 556: SetMusicPan() (2 input parameters)
|
|
|
Name: SetMusicPan
|
|
|
Return type: void
|
|
|
Description: Set pan for a music (0.5 is center)
|
|
|
Param[1]: music (type: Music)
|
|
|
Param[2]: pan (type: float)
|
|
|
-Function 556: GetMusicTimeLength() (1 input parameters)
|
|
|
+Function 557: GetMusicTimeLength() (1 input parameters)
|
|
|
Name: GetMusicTimeLength
|
|
|
Return type: float
|
|
|
Description: Get music time length (in seconds)
|
|
|
Param[1]: music (type: Music)
|
|
|
-Function 557: GetMusicTimePlayed() (1 input parameters)
|
|
|
+Function 558: GetMusicTimePlayed() (1 input parameters)
|
|
|
Name: GetMusicTimePlayed
|
|
|
Return type: float
|
|
|
Description: Get current music time played (in seconds)
|
|
|
Param[1]: music (type: Music)
|
|
|
-Function 558: LoadAudioStream() (3 input parameters)
|
|
|
+Function 559: LoadAudioStream() (3 input parameters)
|
|
|
Name: LoadAudioStream
|
|
|
Return type: AudioStream
|
|
|
Description: Load audio stream (to stream raw audio pcm data)
|
|
|
Param[1]: sampleRate (type: unsigned int)
|
|
|
Param[2]: sampleSize (type: unsigned int)
|
|
|
Param[3]: channels (type: unsigned int)
|
|
|
-Function 559: IsAudioStreamReady() (1 input parameters)
|
|
|
+Function 560: IsAudioStreamReady() (1 input parameters)
|
|
|
Name: IsAudioStreamReady
|
|
|
Return type: bool
|
|
|
Description: Checks if an audio stream is ready
|
|
|
Param[1]: stream (type: AudioStream)
|
|
|
-Function 560: UnloadAudioStream() (1 input parameters)
|
|
|
+Function 561: UnloadAudioStream() (1 input parameters)
|
|
|
Name: UnloadAudioStream
|
|
|
Return type: void
|
|
|
Description: Unload audio stream and free memory
|
|
|
Param[1]: stream (type: AudioStream)
|
|
|
-Function 561: UpdateAudioStream() (3 input parameters)
|
|
|
+Function 562: UpdateAudioStream() (3 input parameters)
|
|
|
Name: UpdateAudioStream
|
|
|
Return type: void
|
|
|
Description: Update audio stream buffers with data
|
|
|
Param[1]: stream (type: AudioStream)
|
|
|
Param[2]: data (type: const void *)
|
|
|
Param[3]: frameCount (type: int)
|
|
|
-Function 562: IsAudioStreamProcessed() (1 input parameters)
|
|
|
+Function 563: IsAudioStreamProcessed() (1 input parameters)
|
|
|
Name: IsAudioStreamProcessed
|
|
|
Return type: bool
|
|
|
Description: Check if any audio stream buffers requires refill
|
|
|
Param[1]: stream (type: AudioStream)
|
|
|
-Function 563: PlayAudioStream() (1 input parameters)
|
|
|
+Function 564: PlayAudioStream() (1 input parameters)
|
|
|
Name: PlayAudioStream
|
|
|
Return type: void
|
|
|
Description: Play audio stream
|
|
|
Param[1]: stream (type: AudioStream)
|
|
|
-Function 564: PauseAudioStream() (1 input parameters)
|
|
|
+Function 565: PauseAudioStream() (1 input parameters)
|
|
|
Name: PauseAudioStream
|
|
|
Return type: void
|
|
|
Description: Pause audio stream
|
|
|
Param[1]: stream (type: AudioStream)
|
|
|
-Function 565: ResumeAudioStream() (1 input parameters)
|
|
|
+Function 566: ResumeAudioStream() (1 input parameters)
|
|
|
Name: ResumeAudioStream
|
|
|
Return type: void
|
|
|
Description: Resume audio stream
|
|
|
Param[1]: stream (type: AudioStream)
|
|
|
-Function 566: IsAudioStreamPlaying() (1 input parameters)
|
|
|
+Function 567: IsAudioStreamPlaying() (1 input parameters)
|
|
|
Name: IsAudioStreamPlaying
|
|
|
Return type: bool
|
|
|
Description: Check if audio stream is playing
|
|
|
Param[1]: stream (type: AudioStream)
|
|
|
-Function 567: StopAudioStream() (1 input parameters)
|
|
|
+Function 568: StopAudioStream() (1 input parameters)
|
|
|
Name: StopAudioStream
|
|
|
Return type: void
|
|
|
Description: Stop audio stream
|
|
|
Param[1]: stream (type: AudioStream)
|
|
|
-Function 568: SetAudioStreamVolume() (2 input parameters)
|
|
|
+Function 569: SetAudioStreamVolume() (2 input parameters)
|
|
|
Name: SetAudioStreamVolume
|
|
|
Return type: void
|
|
|
Description: Set volume for audio stream (1.0 is max level)
|
|
|
Param[1]: stream (type: AudioStream)
|
|
|
Param[2]: volume (type: float)
|
|
|
-Function 569: SetAudioStreamPitch() (2 input parameters)
|
|
|
+Function 570: SetAudioStreamPitch() (2 input parameters)
|
|
|
Name: SetAudioStreamPitch
|
|
|
Return type: void
|
|
|
Description: Set pitch for audio stream (1.0 is base level)
|
|
|
Param[1]: stream (type: AudioStream)
|
|
|
Param[2]: pitch (type: float)
|
|
|
-Function 570: SetAudioStreamPan() (2 input parameters)
|
|
|
+Function 571: SetAudioStreamPan() (2 input parameters)
|
|
|
Name: SetAudioStreamPan
|
|
|
Return type: void
|
|
|
Description: Set pan for audio stream (0.5 is centered)
|
|
|
Param[1]: stream (type: AudioStream)
|
|
|
Param[2]: pan (type: float)
|
|
|
-Function 571: SetAudioStreamBufferSizeDefault() (1 input parameters)
|
|
|
+Function 572: SetAudioStreamBufferSizeDefault() (1 input parameters)
|
|
|
Name: SetAudioStreamBufferSizeDefault
|
|
|
Return type: void
|
|
|
Description: Default size for new audio streams
|
|
|
Param[1]: size (type: int)
|
|
|
-Function 572: SetAudioStreamCallback() (2 input parameters)
|
|
|
+Function 573: SetAudioStreamCallback() (2 input parameters)
|
|
|
Name: SetAudioStreamCallback
|
|
|
Return type: void
|
|
|
Description: Audio thread callback to request new data
|
|
|
Param[1]: stream (type: AudioStream)
|
|
|
Param[2]: callback (type: AudioCallback)
|
|
|
-Function 573: AttachAudioStreamProcessor() (2 input parameters)
|
|
|
+Function 574: AttachAudioStreamProcessor() (2 input parameters)
|
|
|
Name: AttachAudioStreamProcessor
|
|
|
Return type: void
|
|
|
Description: Attach audio stream processor to stream, receives the samples as 'float'
|
|
|
Param[1]: stream (type: AudioStream)
|
|
|
Param[2]: processor (type: AudioCallback)
|
|
|
-Function 574: DetachAudioStreamProcessor() (2 input parameters)
|
|
|
+Function 575: DetachAudioStreamProcessor() (2 input parameters)
|
|
|
Name: DetachAudioStreamProcessor
|
|
|
Return type: void
|
|
|
Description: Detach audio stream processor from stream
|
|
|
Param[1]: stream (type: AudioStream)
|
|
|
Param[2]: processor (type: AudioCallback)
|
|
|
-Function 575: AttachAudioMixedProcessor() (1 input parameters)
|
|
|
+Function 576: AttachAudioMixedProcessor() (1 input parameters)
|
|
|
Name: AttachAudioMixedProcessor
|
|
|
Return type: void
|
|
|
Description: Attach audio stream processor to the entire audio pipeline, receives the samples as 'float'
|
|
|
Param[1]: processor (type: AudioCallback)
|
|
|
-Function 576: DetachAudioMixedProcessor() (1 input parameters)
|
|
|
+Function 577: DetachAudioMixedProcessor() (1 input parameters)
|
|
|
Name: DetachAudioMixedProcessor
|
|
|
Return type: void
|
|
|
Description: Detach audio stream processor from the entire audio pipeline
|