diff options
| author | tslil clingman <> | 2021-09-05 20:45:43 -0400 |
|---|---|---|
| committer | tslil clingman <> | 2021-09-05 20:45:43 -0400 |
| commit | e95d2bd264df2682f05db4a5873594af52a7583a (patch) | |
| tree | 62a9b720b4377b67f05a88c728157282c246274f /src/map.zig | |
| parent | 1c4874c9f2855ee776bf8d5c35aef3d245c0519d (diff) | |
Changed map scaling, texture indexing, finished object rendering!
Diffstat (limited to 'src/map.zig')
| -rw-r--r-- | src/map.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map.zig b/src/map.zig index 92ca5be..b73fd36 100644 --- a/src/map.zig +++ b/src/map.zig @@ -18,7 +18,7 @@ const std = @import("std"); // Let's pretend that our units are meters -pub const MAX_HEIGHT: f32 = 2.5; +pub const MAX_HEIGHT: f32 = 1; pub const Object = struct { height : f32, |
