Update raylib_api.* by CI
This commit is contained in:
parent
7bde76ca2c
commit
dfd8055270
@ -10366,6 +10366,60 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DrawModelPoints",
|
||||
"description": "Draw a model as points",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
"type": "Model",
|
||||
"name": "model"
|
||||
},
|
||||
{
|
||||
"type": "Vector3",
|
||||
"name": "position"
|
||||
},
|
||||
{
|
||||
"type": "float",
|
||||
"name": "scale"
|
||||
},
|
||||
{
|
||||
"type": "Color",
|
||||
"name": "tint"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DrawModelPointsEx",
|
||||
"description": "Draw a model as points with extended parameters",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
"type": "Model",
|
||||
"name": "model"
|
||||
},
|
||||
{
|
||||
"type": "Vector3",
|
||||
"name": "position"
|
||||
},
|
||||
{
|
||||
"type": "Vector3",
|
||||
"name": "rotationAxis"
|
||||
},
|
||||
{
|
||||
"type": "float",
|
||||
"name": "rotationAngle"
|
||||
},
|
||||
{
|
||||
"type": "Vector3",
|
||||
"name": "scale"
|
||||
},
|
||||
{
|
||||
"type": "Color",
|
||||
"name": "tint"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DrawBoundingBox",
|
||||
"description": "Draw bounding box (wires)",
|
||||
|
@ -7213,6 +7213,30 @@ return {
|
||||
{type = "Color", name = "tint"}
|
||||
}
|
||||
},
|
||||
{
|
||||
name = "DrawModelPoints",
|
||||
description = "Draw a model as points",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "Model", name = "model"},
|
||||
{type = "Vector3", name = "position"},
|
||||
{type = "float", name = "scale"},
|
||||
{type = "Color", name = "tint"}
|
||||
}
|
||||
},
|
||||
{
|
||||
name = "DrawModelPointsEx",
|
||||
description = "Draw a model as points with extended parameters",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "Model", name = "model"},
|
||||
{type = "Vector3", name = "position"},
|
||||
{type = "Vector3", name = "rotationAxis"},
|
||||
{type = "float", name = "rotationAngle"},
|
||||
{type = "Vector3", name = "scale"},
|
||||
{type = "Color", name = "tint"}
|
||||
}
|
||||
},
|
||||
{
|
||||
name = "DrawBoundingBox",
|
||||
description = "Draw bounding box (wires)",
|
||||
|
@ -984,7 +984,7 @@ Callback 006: AudioCallback() (2 input parameters)
|
||||
Param[1]: bufferData (type: void *)
|
||||
Param[2]: frames (type: unsigned int)
|
||||
|
||||
Functions found: 573
|
||||
Functions found: 575
|
||||
|
||||
Function 001: InitWindow() (3 input parameters)
|
||||
Name: InitWindow
|
||||
@ -3955,13 +3955,31 @@ Function 464: DrawModelWiresEx() (6 input parameters)
|
||||
Param[4]: rotationAngle (type: float)
|
||||
Param[5]: scale (type: Vector3)
|
||||
Param[6]: tint (type: Color)
|
||||
Function 465: DrawBoundingBox() (2 input parameters)
|
||||
Function 465: DrawModelPoints() (4 input parameters)
|
||||
Name: DrawModelPoints
|
||||
Return type: void
|
||||
Description: Draw a model as points
|
||||
Param[1]: model (type: Model)
|
||||
Param[2]: position (type: Vector3)
|
||||
Param[3]: scale (type: float)
|
||||
Param[4]: tint (type: Color)
|
||||
Function 466: DrawModelPointsEx() (6 input parameters)
|
||||
Name: DrawModelPointsEx
|
||||
Return type: void
|
||||
Description: Draw a model as points with extended parameters
|
||||
Param[1]: model (type: Model)
|
||||
Param[2]: position (type: Vector3)
|
||||
Param[3]: rotationAxis (type: Vector3)
|
||||
Param[4]: rotationAngle (type: float)
|
||||
Param[5]: scale (type: Vector3)
|
||||
Param[6]: tint (type: Color)
|
||||
Function 467: DrawBoundingBox() (2 input parameters)
|
||||
Name: DrawBoundingBox
|
||||
Return type: void
|
||||
Description: Draw bounding box (wires)
|
||||
Param[1]: box (type: BoundingBox)
|
||||
Param[2]: color (type: Color)
|
||||
Function 466: DrawBillboard() (5 input parameters)
|
||||
Function 468: DrawBillboard() (5 input parameters)
|
||||
Name: DrawBillboard
|
||||
Return type: void
|
||||
Description: Draw a billboard texture
|
||||
@ -3970,7 +3988,7 @@ Function 466: DrawBillboard() (5 input parameters)
|
||||
Param[3]: position (type: Vector3)
|
||||
Param[4]: scale (type: float)
|
||||
Param[5]: tint (type: Color)
|
||||
Function 467: DrawBillboardRec() (6 input parameters)
|
||||
Function 469: DrawBillboardRec() (6 input parameters)
|
||||
Name: DrawBillboardRec
|
||||
Return type: void
|
||||
Description: Draw a billboard texture defined by source
|
||||
@ -3980,7 +3998,7 @@ Function 467: DrawBillboardRec() (6 input parameters)
|
||||
Param[4]: position (type: Vector3)
|
||||
Param[5]: size (type: Vector2)
|
||||
Param[6]: tint (type: Color)
|
||||
Function 468: DrawBillboardPro() (9 input parameters)
|
||||
Function 470: DrawBillboardPro() (9 input parameters)
|
||||
Name: DrawBillboardPro
|
||||
Return type: void
|
||||
Description: Draw a billboard texture defined by source and rotation
|
||||
@ -3993,13 +4011,13 @@ Function 468: DrawBillboardPro() (9 input parameters)
|
||||
Param[7]: origin (type: Vector2)
|
||||
Param[8]: rotation (type: float)
|
||||
Param[9]: tint (type: Color)
|
||||
Function 469: UploadMesh() (2 input parameters)
|
||||
Function 471: UploadMesh() (2 input parameters)
|
||||
Name: UploadMesh
|
||||
Return type: void
|
||||
Description: Upload mesh vertex data in GPU and provide VAO/VBO ids
|
||||
Param[1]: mesh (type: Mesh *)
|
||||
Param[2]: dynamic (type: bool)
|
||||
Function 470: UpdateMeshBuffer() (5 input parameters)
|
||||
Function 472: UpdateMeshBuffer() (5 input parameters)
|
||||
Name: UpdateMeshBuffer
|
||||
Return type: void
|
||||
Description: Update mesh vertex data in GPU for a specific buffer index
|
||||
@ -4008,19 +4026,19 @@ Function 470: UpdateMeshBuffer() (5 input parameters)
|
||||
Param[3]: data (type: const void *)
|
||||
Param[4]: dataSize (type: int)
|
||||
Param[5]: offset (type: int)
|
||||
Function 471: UnloadMesh() (1 input parameters)
|
||||
Function 473: UnloadMesh() (1 input parameters)
|
||||
Name: UnloadMesh
|
||||
Return type: void
|
||||
Description: Unload mesh data from CPU and GPU
|
||||
Param[1]: mesh (type: Mesh)
|
||||
Function 472: DrawMesh() (3 input parameters)
|
||||
Function 474: DrawMesh() (3 input parameters)
|
||||
Name: DrawMesh
|
||||
Return type: void
|
||||
Description: Draw a 3d mesh with material and transform
|
||||
Param[1]: mesh (type: Mesh)
|
||||
Param[2]: material (type: Material)
|
||||
Param[3]: transform (type: Matrix)
|
||||
Function 473: DrawMeshInstanced() (4 input parameters)
|
||||
Function 475: DrawMeshInstanced() (4 input parameters)
|
||||
Name: DrawMeshInstanced
|
||||
Return type: void
|
||||
Description: Draw multiple mesh instances with material and different transforms
|
||||
@ -4028,35 +4046,35 @@ Function 473: DrawMeshInstanced() (4 input parameters)
|
||||
Param[2]: material (type: Material)
|
||||
Param[3]: transforms (type: const Matrix *)
|
||||
Param[4]: instances (type: int)
|
||||
Function 474: GetMeshBoundingBox() (1 input parameters)
|
||||
Function 476: GetMeshBoundingBox() (1 input parameters)
|
||||
Name: GetMeshBoundingBox
|
||||
Return type: BoundingBox
|
||||
Description: Compute mesh bounding box limits
|
||||
Param[1]: mesh (type: Mesh)
|
||||
Function 475: GenMeshTangents() (1 input parameters)
|
||||
Function 477: GenMeshTangents() (1 input parameters)
|
||||
Name: GenMeshTangents
|
||||
Return type: void
|
||||
Description: Compute mesh tangents
|
||||
Param[1]: mesh (type: Mesh *)
|
||||
Function 476: ExportMesh() (2 input parameters)
|
||||
Function 478: ExportMesh() (2 input parameters)
|
||||
Name: ExportMesh
|
||||
Return type: bool
|
||||
Description: Export mesh data to file, returns true on success
|
||||
Param[1]: mesh (type: Mesh)
|
||||
Param[2]: fileName (type: const char *)
|
||||
Function 477: ExportMeshAsCode() (2 input parameters)
|
||||
Function 479: ExportMeshAsCode() (2 input parameters)
|
||||
Name: ExportMeshAsCode
|
||||
Return type: bool
|
||||
Description: Export mesh as code file (.h) defining multiple arrays of vertex attributes
|
||||
Param[1]: mesh (type: Mesh)
|
||||
Param[2]: fileName (type: const char *)
|
||||
Function 478: GenMeshPoly() (2 input parameters)
|
||||
Function 480: GenMeshPoly() (2 input parameters)
|
||||
Name: GenMeshPoly
|
||||
Return type: Mesh
|
||||
Description: Generate polygonal mesh
|
||||
Param[1]: sides (type: int)
|
||||
Param[2]: radius (type: float)
|
||||
Function 479: GenMeshPlane() (4 input parameters)
|
||||
Function 481: GenMeshPlane() (4 input parameters)
|
||||
Name: GenMeshPlane
|
||||
Return type: Mesh
|
||||
Description: Generate plane mesh (with subdivisions)
|
||||
@ -4064,42 +4082,42 @@ Function 479: GenMeshPlane() (4 input parameters)
|
||||
Param[2]: length (type: float)
|
||||
Param[3]: resX (type: int)
|
||||
Param[4]: resZ (type: int)
|
||||
Function 480: GenMeshCube() (3 input parameters)
|
||||
Function 482: GenMeshCube() (3 input parameters)
|
||||
Name: GenMeshCube
|
||||
Return type: Mesh
|
||||
Description: Generate cuboid mesh
|
||||
Param[1]: width (type: float)
|
||||
Param[2]: height (type: float)
|
||||
Param[3]: length (type: float)
|
||||
Function 481: GenMeshSphere() (3 input parameters)
|
||||
Function 483: GenMeshSphere() (3 input parameters)
|
||||
Name: GenMeshSphere
|
||||
Return type: Mesh
|
||||
Description: Generate sphere mesh (standard sphere)
|
||||
Param[1]: radius (type: float)
|
||||
Param[2]: rings (type: int)
|
||||
Param[3]: slices (type: int)
|
||||
Function 482: GenMeshHemiSphere() (3 input parameters)
|
||||
Function 484: GenMeshHemiSphere() (3 input parameters)
|
||||
Name: GenMeshHemiSphere
|
||||
Return type: Mesh
|
||||
Description: Generate half-sphere mesh (no bottom cap)
|
||||
Param[1]: radius (type: float)
|
||||
Param[2]: rings (type: int)
|
||||
Param[3]: slices (type: int)
|
||||
Function 483: GenMeshCylinder() (3 input parameters)
|
||||
Function 485: GenMeshCylinder() (3 input parameters)
|
||||
Name: GenMeshCylinder
|
||||
Return type: Mesh
|
||||
Description: Generate cylinder mesh
|
||||
Param[1]: radius (type: float)
|
||||
Param[2]: height (type: float)
|
||||
Param[3]: slices (type: int)
|
||||
Function 484: GenMeshCone() (3 input parameters)
|
||||
Function 486: GenMeshCone() (3 input parameters)
|
||||
Name: GenMeshCone
|
||||
Return type: Mesh
|
||||
Description: Generate cone/pyramid mesh
|
||||
Param[1]: radius (type: float)
|
||||
Param[2]: height (type: float)
|
||||
Param[3]: slices (type: int)
|
||||
Function 485: GenMeshTorus() (4 input parameters)
|
||||
Function 487: GenMeshTorus() (4 input parameters)
|
||||
Name: GenMeshTorus
|
||||
Return type: Mesh
|
||||
Description: Generate torus mesh
|
||||
@ -4107,7 +4125,7 @@ Function 485: GenMeshTorus() (4 input parameters)
|
||||
Param[2]: size (type: float)
|
||||
Param[3]: radSeg (type: int)
|
||||
Param[4]: sides (type: int)
|
||||
Function 486: GenMeshKnot() (4 input parameters)
|
||||
Function 488: GenMeshKnot() (4 input parameters)
|
||||
Name: GenMeshKnot
|
||||
Return type: Mesh
|
||||
Description: Generate trefoil knot mesh
|
||||
@ -4115,84 +4133,84 @@ Function 486: GenMeshKnot() (4 input parameters)
|
||||
Param[2]: size (type: float)
|
||||
Param[3]: radSeg (type: int)
|
||||
Param[4]: sides (type: int)
|
||||
Function 487: GenMeshHeightmap() (2 input parameters)
|
||||
Function 489: GenMeshHeightmap() (2 input parameters)
|
||||
Name: GenMeshHeightmap
|
||||
Return type: Mesh
|
||||
Description: Generate heightmap mesh from image data
|
||||
Param[1]: heightmap (type: Image)
|
||||
Param[2]: size (type: Vector3)
|
||||
Function 488: GenMeshCubicmap() (2 input parameters)
|
||||
Function 490: GenMeshCubicmap() (2 input parameters)
|
||||
Name: GenMeshCubicmap
|
||||
Return type: Mesh
|
||||
Description: Generate cubes-based map mesh from image data
|
||||
Param[1]: cubicmap (type: Image)
|
||||
Param[2]: cubeSize (type: Vector3)
|
||||
Function 489: LoadMaterials() (2 input parameters)
|
||||
Function 491: LoadMaterials() (2 input parameters)
|
||||
Name: LoadMaterials
|
||||
Return type: Material *
|
||||
Description: Load materials from model file
|
||||
Param[1]: fileName (type: const char *)
|
||||
Param[2]: materialCount (type: int *)
|
||||
Function 490: LoadMaterialDefault() (0 input parameters)
|
||||
Function 492: LoadMaterialDefault() (0 input parameters)
|
||||
Name: LoadMaterialDefault
|
||||
Return type: Material
|
||||
Description: Load default material (Supports: DIFFUSE, SPECULAR, NORMAL maps)
|
||||
No input parameters
|
||||
Function 491: IsMaterialReady() (1 input parameters)
|
||||
Function 493: IsMaterialReady() (1 input parameters)
|
||||
Name: IsMaterialReady
|
||||
Return type: bool
|
||||
Description: Check if a material is ready
|
||||
Param[1]: material (type: Material)
|
||||
Function 492: UnloadMaterial() (1 input parameters)
|
||||
Function 494: UnloadMaterial() (1 input parameters)
|
||||
Name: UnloadMaterial
|
||||
Return type: void
|
||||
Description: Unload material from GPU memory (VRAM)
|
||||
Param[1]: material (type: Material)
|
||||
Function 493: SetMaterialTexture() (3 input parameters)
|
||||
Function 495: SetMaterialTexture() (3 input parameters)
|
||||
Name: SetMaterialTexture
|
||||
Return type: void
|
||||
Description: Set texture for a material map type (MATERIAL_MAP_DIFFUSE, MATERIAL_MAP_SPECULAR...)
|
||||
Param[1]: material (type: Material *)
|
||||
Param[2]: mapType (type: int)
|
||||
Param[3]: texture (type: Texture2D)
|
||||
Function 494: SetModelMeshMaterial() (3 input parameters)
|
||||
Function 496: SetModelMeshMaterial() (3 input parameters)
|
||||
Name: SetModelMeshMaterial
|
||||
Return type: void
|
||||
Description: Set material for a mesh
|
||||
Param[1]: model (type: Model *)
|
||||
Param[2]: meshId (type: int)
|
||||
Param[3]: materialId (type: int)
|
||||
Function 495: LoadModelAnimations() (2 input parameters)
|
||||
Function 497: LoadModelAnimations() (2 input parameters)
|
||||
Name: LoadModelAnimations
|
||||
Return type: ModelAnimation *
|
||||
Description: Load model animations from file
|
||||
Param[1]: fileName (type: const char *)
|
||||
Param[2]: animCount (type: int *)
|
||||
Function 496: UpdateModelAnimation() (3 input parameters)
|
||||
Function 498: UpdateModelAnimation() (3 input parameters)
|
||||
Name: UpdateModelAnimation
|
||||
Return type: void
|
||||
Description: Update model animation pose
|
||||
Param[1]: model (type: Model)
|
||||
Param[2]: anim (type: ModelAnimation)
|
||||
Param[3]: frame (type: int)
|
||||
Function 497: UnloadModelAnimation() (1 input parameters)
|
||||
Function 499: UnloadModelAnimation() (1 input parameters)
|
||||
Name: UnloadModelAnimation
|
||||
Return type: void
|
||||
Description: Unload animation data
|
||||
Param[1]: anim (type: ModelAnimation)
|
||||
Function 498: UnloadModelAnimations() (2 input parameters)
|
||||
Function 500: UnloadModelAnimations() (2 input parameters)
|
||||
Name: UnloadModelAnimations
|
||||
Return type: void
|
||||
Description: Unload animation array data
|
||||
Param[1]: animations (type: ModelAnimation *)
|
||||
Param[2]: animCount (type: int)
|
||||
Function 499: IsModelAnimationValid() (2 input parameters)
|
||||
Function 501: IsModelAnimationValid() (2 input parameters)
|
||||
Name: IsModelAnimationValid
|
||||
Return type: bool
|
||||
Description: Check model animation skeleton match
|
||||
Param[1]: model (type: Model)
|
||||
Param[2]: anim (type: ModelAnimation)
|
||||
Function 500: CheckCollisionSpheres() (4 input parameters)
|
||||
Function 502: CheckCollisionSpheres() (4 input parameters)
|
||||
Name: CheckCollisionSpheres
|
||||
Return type: bool
|
||||
Description: Check collision between two spheres
|
||||
@ -4200,40 +4218,40 @@ Function 500: CheckCollisionSpheres() (4 input parameters)
|
||||
Param[2]: radius1 (type: float)
|
||||
Param[3]: center2 (type: Vector3)
|
||||
Param[4]: radius2 (type: float)
|
||||
Function 501: CheckCollisionBoxes() (2 input parameters)
|
||||
Function 503: 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 502: CheckCollisionBoxSphere() (3 input parameters)
|
||||
Function 504: 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 503: GetRayCollisionSphere() (3 input parameters)
|
||||
Function 505: 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 504: GetRayCollisionBox() (2 input parameters)
|
||||
Function 506: 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 505: GetRayCollisionMesh() (3 input parameters)
|
||||
Function 507: 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 506: GetRayCollisionTriangle() (4 input parameters)
|
||||
Function 508: GetRayCollisionTriangle() (4 input parameters)
|
||||
Name: GetRayCollisionTriangle
|
||||
Return type: RayCollision
|
||||
Description: Get collision info between ray and triangle
|
||||
@ -4241,7 +4259,7 @@ Function 506: GetRayCollisionTriangle() (4 input parameters)
|
||||
Param[2]: p1 (type: Vector3)
|
||||
Param[3]: p2 (type: Vector3)
|
||||
Param[4]: p3 (type: Vector3)
|
||||
Function 507: GetRayCollisionQuad() (5 input parameters)
|
||||
Function 509: GetRayCollisionQuad() (5 input parameters)
|
||||
Name: GetRayCollisionQuad
|
||||
Return type: RayCollision
|
||||
Description: Get collision info between ray and quad
|
||||
@ -4250,158 +4268,158 @@ Function 507: GetRayCollisionQuad() (5 input parameters)
|
||||
Param[3]: p2 (type: Vector3)
|
||||
Param[4]: p3 (type: Vector3)
|
||||
Param[5]: p4 (type: Vector3)
|
||||
Function 508: InitAudioDevice() (0 input parameters)
|
||||
Function 510: InitAudioDevice() (0 input parameters)
|
||||
Name: InitAudioDevice
|
||||
Return type: void
|
||||
Description: Initialize audio device and context
|
||||
No input parameters
|
||||
Function 509: CloseAudioDevice() (0 input parameters)
|
||||
Function 511: CloseAudioDevice() (0 input parameters)
|
||||
Name: CloseAudioDevice
|
||||
Return type: void
|
||||
Description: Close the audio device and context
|
||||
No input parameters
|
||||
Function 510: IsAudioDeviceReady() (0 input parameters)
|
||||
Function 512: IsAudioDeviceReady() (0 input parameters)
|
||||
Name: IsAudioDeviceReady
|
||||
Return type: bool
|
||||
Description: Check if audio device has been initialized successfully
|
||||
No input parameters
|
||||
Function 511: SetMasterVolume() (1 input parameters)
|
||||
Function 513: SetMasterVolume() (1 input parameters)
|
||||
Name: SetMasterVolume
|
||||
Return type: void
|
||||
Description: Set master volume (listener)
|
||||
Param[1]: volume (type: float)
|
||||
Function 512: GetMasterVolume() (0 input parameters)
|
||||
Function 514: GetMasterVolume() (0 input parameters)
|
||||
Name: GetMasterVolume
|
||||
Return type: float
|
||||
Description: Get master volume (listener)
|
||||
No input parameters
|
||||
Function 513: LoadWave() (1 input parameters)
|
||||
Function 515: LoadWave() (1 input parameters)
|
||||
Name: LoadWave
|
||||
Return type: Wave
|
||||
Description: Load wave data from file
|
||||
Param[1]: fileName (type: const char *)
|
||||
Function 514: LoadWaveFromMemory() (3 input parameters)
|
||||
Function 516: 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 515: IsWaveReady() (1 input parameters)
|
||||
Function 517: IsWaveReady() (1 input parameters)
|
||||
Name: IsWaveReady
|
||||
Return type: bool
|
||||
Description: Checks if wave data is ready
|
||||
Param[1]: wave (type: Wave)
|
||||
Function 516: LoadSound() (1 input parameters)
|
||||
Function 518: LoadSound() (1 input parameters)
|
||||
Name: LoadSound
|
||||
Return type: Sound
|
||||
Description: Load sound from file
|
||||
Param[1]: fileName (type: const char *)
|
||||
Function 517: LoadSoundFromWave() (1 input parameters)
|
||||
Function 519: LoadSoundFromWave() (1 input parameters)
|
||||
Name: LoadSoundFromWave
|
||||
Return type: Sound
|
||||
Description: Load sound from wave data
|
||||
Param[1]: wave (type: Wave)
|
||||
Function 518: LoadSoundAlias() (1 input parameters)
|
||||
Function 520: 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 519: IsSoundReady() (1 input parameters)
|
||||
Function 521: IsSoundReady() (1 input parameters)
|
||||
Name: IsSoundReady
|
||||
Return type: bool
|
||||
Description: Checks if a sound is ready
|
||||
Param[1]: sound (type: Sound)
|
||||
Function 520: UpdateSound() (3 input parameters)
|
||||
Function 522: 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 521: UnloadWave() (1 input parameters)
|
||||
Function 523: UnloadWave() (1 input parameters)
|
||||
Name: UnloadWave
|
||||
Return type: void
|
||||
Description: Unload wave data
|
||||
Param[1]: wave (type: Wave)
|
||||
Function 522: UnloadSound() (1 input parameters)
|
||||
Function 524: UnloadSound() (1 input parameters)
|
||||
Name: UnloadSound
|
||||
Return type: void
|
||||
Description: Unload sound
|
||||
Param[1]: sound (type: Sound)
|
||||
Function 523: UnloadSoundAlias() (1 input parameters)
|
||||
Function 525: 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 524: ExportWave() (2 input parameters)
|
||||
Function 526: 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 525: ExportWaveAsCode() (2 input parameters)
|
||||
Function 527: 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 526: PlaySound() (1 input parameters)
|
||||
Function 528: PlaySound() (1 input parameters)
|
||||
Name: PlaySound
|
||||
Return type: void
|
||||
Description: Play a sound
|
||||
Param[1]: sound (type: Sound)
|
||||
Function 527: StopSound() (1 input parameters)
|
||||
Function 529: StopSound() (1 input parameters)
|
||||
Name: StopSound
|
||||
Return type: void
|
||||
Description: Stop playing a sound
|
||||
Param[1]: sound (type: Sound)
|
||||
Function 528: PauseSound() (1 input parameters)
|
||||
Function 530: PauseSound() (1 input parameters)
|
||||
Name: PauseSound
|
||||
Return type: void
|
||||
Description: Pause a sound
|
||||
Param[1]: sound (type: Sound)
|
||||
Function 529: ResumeSound() (1 input parameters)
|
||||
Function 531: ResumeSound() (1 input parameters)
|
||||
Name: ResumeSound
|
||||
Return type: void
|
||||
Description: Resume a paused sound
|
||||
Param[1]: sound (type: Sound)
|
||||
Function 530: IsSoundPlaying() (1 input parameters)
|
||||
Function 532: IsSoundPlaying() (1 input parameters)
|
||||
Name: IsSoundPlaying
|
||||
Return type: bool
|
||||
Description: Check if a sound is currently playing
|
||||
Param[1]: sound (type: Sound)
|
||||
Function 531: SetSoundVolume() (2 input parameters)
|
||||
Function 533: 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 532: SetSoundPitch() (2 input parameters)
|
||||
Function 534: 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 533: SetSoundPan() (2 input parameters)
|
||||
Function 535: 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 534: WaveCopy() (1 input parameters)
|
||||
Function 536: WaveCopy() (1 input parameters)
|
||||
Name: WaveCopy
|
||||
Return type: Wave
|
||||
Description: Copy a wave to a new wave
|
||||
Param[1]: wave (type: Wave)
|
||||
Function 535: WaveCrop() (3 input parameters)
|
||||
Function 537: 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 536: WaveFormat() (4 input parameters)
|
||||
Function 538: WaveFormat() (4 input parameters)
|
||||
Name: WaveFormat
|
||||
Return type: void
|
||||
Description: Convert wave data to desired format
|
||||
@ -4409,203 +4427,203 @@ Function 536: WaveFormat() (4 input parameters)
|
||||
Param[2]: sampleRate (type: int)
|
||||
Param[3]: sampleSize (type: int)
|
||||
Param[4]: channels (type: int)
|
||||
Function 537: LoadWaveSamples() (1 input parameters)
|
||||
Function 539: 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 538: UnloadWaveSamples() (1 input parameters)
|
||||
Function 540: UnloadWaveSamples() (1 input parameters)
|
||||
Name: UnloadWaveSamples
|
||||
Return type: void
|
||||
Description: Unload samples data loaded with LoadWaveSamples()
|
||||
Param[1]: samples (type: float *)
|
||||
Function 539: LoadMusicStream() (1 input parameters)
|
||||
Function 541: LoadMusicStream() (1 input parameters)
|
||||
Name: LoadMusicStream
|
||||
Return type: Music
|
||||
Description: Load music stream from file
|
||||
Param[1]: fileName (type: const char *)
|
||||
Function 540: LoadMusicStreamFromMemory() (3 input parameters)
|
||||
Function 542: 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 541: IsMusicReady() (1 input parameters)
|
||||
Function 543: IsMusicReady() (1 input parameters)
|
||||
Name: IsMusicReady
|
||||
Return type: bool
|
||||
Description: Checks if a music stream is ready
|
||||
Param[1]: music (type: Music)
|
||||
Function 542: UnloadMusicStream() (1 input parameters)
|
||||
Function 544: UnloadMusicStream() (1 input parameters)
|
||||
Name: UnloadMusicStream
|
||||
Return type: void
|
||||
Description: Unload music stream
|
||||
Param[1]: music (type: Music)
|
||||
Function 543: PlayMusicStream() (1 input parameters)
|
||||
Function 545: PlayMusicStream() (1 input parameters)
|
||||
Name: PlayMusicStream
|
||||
Return type: void
|
||||
Description: Start music playing
|
||||
Param[1]: music (type: Music)
|
||||
Function 544: IsMusicStreamPlaying() (1 input parameters)
|
||||
Function 546: IsMusicStreamPlaying() (1 input parameters)
|
||||
Name: IsMusicStreamPlaying
|
||||
Return type: bool
|
||||
Description: Check if music is playing
|
||||
Param[1]: music (type: Music)
|
||||
Function 545: UpdateMusicStream() (1 input parameters)
|
||||
Function 547: UpdateMusicStream() (1 input parameters)
|
||||
Name: UpdateMusicStream
|
||||
Return type: void
|
||||
Description: Updates buffers for music streaming
|
||||
Param[1]: music (type: Music)
|
||||
Function 546: StopMusicStream() (1 input parameters)
|
||||
Function 548: StopMusicStream() (1 input parameters)
|
||||
Name: StopMusicStream
|
||||
Return type: void
|
||||
Description: Stop music playing
|
||||
Param[1]: music (type: Music)
|
||||
Function 547: PauseMusicStream() (1 input parameters)
|
||||
Function 549: PauseMusicStream() (1 input parameters)
|
||||
Name: PauseMusicStream
|
||||
Return type: void
|
||||
Description: Pause music playing
|
||||
Param[1]: music (type: Music)
|
||||
Function 548: ResumeMusicStream() (1 input parameters)
|
||||
Function 550: ResumeMusicStream() (1 input parameters)
|
||||
Name: ResumeMusicStream
|
||||
Return type: void
|
||||
Description: Resume playing paused music
|
||||
Param[1]: music (type: Music)
|
||||
Function 549: SeekMusicStream() (2 input parameters)
|
||||
Function 551: 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 550: SetMusicVolume() (2 input parameters)
|
||||
Function 552: 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 551: SetMusicPitch() (2 input parameters)
|
||||
Function 553: 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 552: SetMusicPan() (2 input parameters)
|
||||
Function 554: 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 553: GetMusicTimeLength() (1 input parameters)
|
||||
Function 555: GetMusicTimeLength() (1 input parameters)
|
||||
Name: GetMusicTimeLength
|
||||
Return type: float
|
||||
Description: Get music time length (in seconds)
|
||||
Param[1]: music (type: Music)
|
||||
Function 554: GetMusicTimePlayed() (1 input parameters)
|
||||
Function 556: GetMusicTimePlayed() (1 input parameters)
|
||||
Name: GetMusicTimePlayed
|
||||
Return type: float
|
||||
Description: Get current music time played (in seconds)
|
||||
Param[1]: music (type: Music)
|
||||
Function 555: LoadAudioStream() (3 input parameters)
|
||||
Function 557: 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 556: IsAudioStreamReady() (1 input parameters)
|
||||
Function 558: IsAudioStreamReady() (1 input parameters)
|
||||
Name: IsAudioStreamReady
|
||||
Return type: bool
|
||||
Description: Checks if an audio stream is ready
|
||||
Param[1]: stream (type: AudioStream)
|
||||
Function 557: UnloadAudioStream() (1 input parameters)
|
||||
Function 559: UnloadAudioStream() (1 input parameters)
|
||||
Name: UnloadAudioStream
|
||||
Return type: void
|
||||
Description: Unload audio stream and free memory
|
||||
Param[1]: stream (type: AudioStream)
|
||||
Function 558: UpdateAudioStream() (3 input parameters)
|
||||
Function 560: 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 559: IsAudioStreamProcessed() (1 input parameters)
|
||||
Function 561: IsAudioStreamProcessed() (1 input parameters)
|
||||
Name: IsAudioStreamProcessed
|
||||
Return type: bool
|
||||
Description: Check if any audio stream buffers requires refill
|
||||
Param[1]: stream (type: AudioStream)
|
||||
Function 560: PlayAudioStream() (1 input parameters)
|
||||
Function 562: PlayAudioStream() (1 input parameters)
|
||||
Name: PlayAudioStream
|
||||
Return type: void
|
||||
Description: Play audio stream
|
||||
Param[1]: stream (type: AudioStream)
|
||||
Function 561: PauseAudioStream() (1 input parameters)
|
||||
Function 563: PauseAudioStream() (1 input parameters)
|
||||
Name: PauseAudioStream
|
||||
Return type: void
|
||||
Description: Pause audio stream
|
||||
Param[1]: stream (type: AudioStream)
|
||||
Function 562: ResumeAudioStream() (1 input parameters)
|
||||
Function 564: ResumeAudioStream() (1 input parameters)
|
||||
Name: ResumeAudioStream
|
||||
Return type: void
|
||||
Description: Resume audio stream
|
||||
Param[1]: stream (type: AudioStream)
|
||||
Function 563: IsAudioStreamPlaying() (1 input parameters)
|
||||
Function 565: IsAudioStreamPlaying() (1 input parameters)
|
||||
Name: IsAudioStreamPlaying
|
||||
Return type: bool
|
||||
Description: Check if audio stream is playing
|
||||
Param[1]: stream (type: AudioStream)
|
||||
Function 564: StopAudioStream() (1 input parameters)
|
||||
Function 566: StopAudioStream() (1 input parameters)
|
||||
Name: StopAudioStream
|
||||
Return type: void
|
||||
Description: Stop audio stream
|
||||
Param[1]: stream (type: AudioStream)
|
||||
Function 565: SetAudioStreamVolume() (2 input parameters)
|
||||
Function 567: 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 566: SetAudioStreamPitch() (2 input parameters)
|
||||
Function 568: 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 567: SetAudioStreamPan() (2 input parameters)
|
||||
Function 569: 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 568: SetAudioStreamBufferSizeDefault() (1 input parameters)
|
||||
Function 570: SetAudioStreamBufferSizeDefault() (1 input parameters)
|
||||
Name: SetAudioStreamBufferSizeDefault
|
||||
Return type: void
|
||||
Description: Default size for new audio streams
|
||||
Param[1]: size (type: int)
|
||||
Function 569: SetAudioStreamCallback() (2 input parameters)
|
||||
Function 571: 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 570: AttachAudioStreamProcessor() (2 input parameters)
|
||||
Function 572: 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 571: DetachAudioStreamProcessor() (2 input parameters)
|
||||
Function 573: 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 572: AttachAudioMixedProcessor() (1 input parameters)
|
||||
Function 574: 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 573: DetachAudioMixedProcessor() (1 input parameters)
|
||||
Function 575: DetachAudioMixedProcessor() (1 input parameters)
|
||||
Name: DetachAudioMixedProcessor
|
||||
Return type: void
|
||||
Description: Detach audio stream processor from the entire audio pipeline
|
||||
|
@ -670,7 +670,7 @@
|
||||
<Param type="unsigned int" name="frames" desc="" />
|
||||
</Callback>
|
||||
</Callbacks>
|
||||
<Functions count="573">
|
||||
<Functions count="575">
|
||||
<Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context">
|
||||
<Param type="int" name="width" desc="" />
|
||||
<Param type="int" name="height" desc="" />
|
||||
@ -2637,6 +2637,20 @@
|
||||
<Param type="Vector3" name="scale" desc="" />
|
||||
<Param type="Color" name="tint" desc="" />
|
||||
</Function>
|
||||
<Function name="DrawModelPoints" retType="void" paramCount="4" desc="Draw a model as points">
|
||||
<Param type="Model" name="model" desc="" />
|
||||
<Param type="Vector3" name="position" desc="" />
|
||||
<Param type="float" name="scale" desc="" />
|
||||
<Param type="Color" name="tint" desc="" />
|
||||
</Function>
|
||||
<Function name="DrawModelPointsEx" retType="void" paramCount="6" desc="Draw a model as points with extended parameters">
|
||||
<Param type="Model" name="model" desc="" />
|
||||
<Param type="Vector3" name="position" desc="" />
|
||||
<Param type="Vector3" name="rotationAxis" desc="" />
|
||||
<Param type="float" name="rotationAngle" desc="" />
|
||||
<Param type="Vector3" name="scale" desc="" />
|
||||
<Param type="Color" name="tint" desc="" />
|
||||
</Function>
|
||||
<Function name="DrawBoundingBox" retType="void" paramCount="2" desc="Draw bounding box (wires)">
|
||||
<Param type="BoundingBox" name="box" desc="" />
|
||||
<Param type="Color" name="color" desc="" />
|
||||
|
Loading…
Reference in New Issue
Block a user