diff options
author | iurii <[email protected]> | 2024-09-08 01:41:19 +0200 |
---|---|---|
committer | iurii <[email protected]> | 2024-09-08 01:41:19 +0200 |
commit | 54c16a561d077d09b56c57ddf728b364fc255991 (patch) | |
tree | 4374b2e782bc50ce59fcbf9f9bf2b55c41d8878b /src/cubes.odin | |
parent | e5448ede7f1e3b13dc2041819bdc75effb08708c (diff) | |
download | funhalla-54c16a561d077d09b56c57ddf728b364fc255991.tar.gz |
more lights
Diffstat (limited to '')
-rw-r--r-- | src/cubes.odin | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/cubes.odin b/src/cubes.odin index b6bcd1c..d96bbc3 100644 --- a/src/cubes.odin +++ b/src/cubes.odin @@ -56,3 +56,10 @@ cube_positions : []Vec3 : { Vec3{ 1.5, 0.2, -1.5}, Vec3{-1.3, 1.0, -1.5} } + +point_light_positions : []Vec3 : { + Vec3{0.7, 0.2, 2.0}, + Vec3{2.3, -3.3, -4.0}, + Vec3{-4.0, 2.0, -12.0}, + Vec3{0.0, 0.0, -3.0} +} |