瀏覽代碼

Comments removed

pull/703/head
Ray 6 年之前
父節點
當前提交
5ef4661216
共有 2 個檔案被更改,包括 0 行新增4 行删除
  1. +0
    -2
      src/core.c
  2. +0
    -2
      src/models.c

+ 0
- 2
src/core.c 查看文件

@ -1221,8 +1221,6 @@ Ray GetMouseRay(Vector2 mousePosition, Camera camera)
// Store values in a vector // Store values in a vector
Vector3 deviceCoords = { x, y, z }; Vector3 deviceCoords = { x, y, z };
TraceLog(LOG_DEBUG, "Device coordinates: (%f, %f, %f)", deviceCoords.x, deviceCoords.y, deviceCoords.z);
// Calculate view matrix from camera look at // Calculate view matrix from camera look at
Matrix matView = MatrixLookAt(camera.position, camera.target, camera.up); Matrix matView = MatrixLookAt(camera.position, camera.target, camera.up);

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

@ -2525,8 +2525,6 @@ static Material LoadMTL(const char *fileName)
{ {
// TODO: Support multiple materials in a single .mtl // TODO: Support multiple materials in a single .mtl
sscanf(buffer, "newmtl %127s", mapFileName); sscanf(buffer, "newmtl %127s", mapFileName);
TraceLog(LOG_INFO, "[%s] Loading material...", mapFileName);
} }
case 'i': // illum int Illumination model case 'i': // illum int Illumination model
{ {

Loading…
取消
儲存