浏览代码

GetCollisionRayMesh makes use of triangle count (#1688)

Co-authored-by: Carlos Hernandez Barbera <carloshdezbarbera@gmail.com>
pull/1689/head
Carlos Hernandez Barbera 4 年前
committed by GitHub
父节点
当前提交
7eaeffc8d9
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. +1
    -2
      src/models.c

+ 1
- 2
src/models.c 查看文件

@ -2987,8 +2987,7 @@ RayHitInfo GetCollisionRayMesh(Ray ray, Mesh mesh, Matrix transform)
// Check if mesh vertex data on CPU for testing
if (mesh.vertices != NULL)
{
// model->mesh.triangleCount may not be set, vertexCount is more reliable
int triangleCount = mesh.vertexCount / 3;
int triangleCount = mesh.triangleCount;
// Test against all triangles in mesh
for (int i = 0; i < triangleCount; i++)

正在加载...
取消
保存