diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-06-15 17:59:02 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-06-15 17:59:02 +1000 |
commit | b3b19f081231c7c13322c7b0d577afb6084d48df (patch) | |
tree | 0bec011f39175c3f168571dd135f3c653f91a21e /examples/cube/ex_cube.c | |
parent | c5808488875484aca814bfc8e526f37f3f447166 (diff) |
point lights for pbr example
Diffstat (limited to 'examples/cube/ex_cube.c')
-rw-r--r-- | examples/cube/ex_cube.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/cube/ex_cube.c b/examples/cube/ex_cube.c index 26e6b71..2cd0a51 100644 --- a/examples/cube/ex_cube.c +++ b/examples/cube/ex_cube.c @@ -18,10 +18,10 @@ extern core g_core; // Scene / light setup const vec3 pointlight_positions[4] = { - { -10.0, 10.0, 10.0}, - { 10.0, 10.0, 10.0}, - { -10.0, -10.0, 10.0}, - { 10.0, -10.0, 10.0}, + { -10.0, 10.0, 10.0 }, + { 10.0, 10.0, 10.0 }, + { -10.0, -10.0, 10.0 }, + { 10.0, -10.0, 10.0 }, }; point_light point_lights[4]; |