diff options
author | David Thompson <dthompson2@worcester.edu> | 2021-05-08 10:40:36 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2021-05-08 10:41:02 -0400 |
commit | 8d2ff4adde8000e6c3175dd98941eba20ef6a1c8 (patch) | |
tree | 383685712d4bdc4cdc7b4e0fbf8c0efac7b72d8b | |
parent | 1e392ac7e19058a0cf280c6602d44a5ae3243560 (diff) |
graphics: pbr: Fix code indentation.
-rw-r--r-- | chickadee/graphics/pbr.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chickadee/graphics/pbr.scm b/chickadee/graphics/pbr.scm index d3401cb..7d8689a 100644 --- a/chickadee/graphics/pbr.scm +++ b/chickadee/graphics/pbr.scm @@ -122,8 +122,8 @@ blend:alpha blend:replace)) (g:cull-face-mode (if (pbr-material-double-sided? material) - no-cull-face-mode - back-cull-face-mode)) + no-cull-face-mode + back-cull-face-mode)) (g:texture-0 (pbr-material-base-color-texture material)) (g:texture-1 (pbr-material-normal-texture material)) (g:texture-2 (pbr-material-occlusion-texture material)) |