소스 검색

Update models_skybox.c

pull/1654/head
Ray 3 년 전
부모
커밋
e5834210d3
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. +4
    -0
      examples/models/models_skybox.c

+ 4
- 0
examples/models/models_skybox.c 파일 보기

@ -127,12 +127,16 @@ int main(void)
ClearBackground(RAYWHITE);
BeginMode3D(camera);
// We are inside the cube, we need to disable backface culling!
rlDisableBackfaceCulling();
rlDisableDepthMask();
DrawModel(skybox, (Vector3){0, 0, 0}, 1.0f, WHITE);
rlEnableBackfaceCulling();
rlEnableDepthMask();
DrawGrid(10, 1.0f);
EndMode3D();
if (useHDR)

불러오는 중...
취소
저장