diff options
| author | Ray <[email protected]> | 2021-06-18 13:09:48 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-06-18 13:09:48 +0200 |
| commit | bbdb33e603760bde9e4f936df876cc4130cabefc (patch) | |
| tree | 181dad05feb7484297db2b07242cb22000f27241 /examples/web/models/models_mesh_picking.c | |
| parent | 41892992be9226d7a47b51b9ebf3118a9ee4934b (diff) | |
| parent | 73356e1356553a40ca34891afc7f82f9d5aaf086 (diff) | |
| download | raylib.com-bbdb33e603760bde9e4f936df876cc4130cabefc.tar.gz raylib.com-bbdb33e603760bde9e4f936df876cc4130cabefc.zip | |
Merge pull request #24 from PtitLuca/patch-1
Rename MeshBoundingBox to GetMeshBoundingBox
Diffstat (limited to 'examples/web/models/models_mesh_picking.c')
| -rw-r--r-- | examples/web/models/models_mesh_picking.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/web/models/models_mesh_picking.c b/examples/web/models/models_mesh_picking.c index 2751918..90105ef 100644 --- a/examples/web/models/models_mesh_picking.c +++ b/examples/web/models/models_mesh_picking.c @@ -72,7 +72,7 @@ int main(void) texture = LoadTexture("resources/models/turret_diffuse.png"); // Load model texture tower.materials[0].maps[MATERIAL_MAP_DIFFUSE].texture = texture; // Set model diffuse texture - towerBBox = MeshBoundingBox(tower.meshes[0]); // Get mesh bounding box + towerBBox = GetMeshBoundingBox(tower.meshes[0]); // Get mesh bounding box SetCameraMode(camera, CAMERA_FREE); // Set a free camera mode |
