Ver código fonte

Update models_skybox.c

pull/1654/head
Ray 3 anos atrás
pai
commit
e5834210d3
1 arquivos alterados com 4 adições e 0 exclusões
  1. +4
    -0
      examples/models/models_skybox.c

+ 4
- 0
examples/models/models_skybox.c Ver arquivo

@ -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)

Carregando…
Cancelar
Salvar