aboutsummaryrefslogtreecommitdiff
path: root/client/map
diff options
context:
space:
mode:
authornokoe <nokoe@mailbox.org>2024-08-10 16:58:44 +0200
committernokoe <nokoe@mailbox.org>2024-08-10 16:59:22 +0200
commit8746fb2925250b6c7722ca6ed0b47df22cf7febf (patch)
tree15808cf8757c534185f1bfd60b46b1de5077180c /client/map
parent5925f47846bd34a6fc9d6324e443a3e60c10dd8b (diff)
downloadhurrycurry-8746fb2925250b6c7722ca6ed0b47df22cf7febf.tar
hurrycurry-8746fb2925250b6c7722ca6ed0b47df22cf7febf.tar.bz2
hurrycurry-8746fb2925250b6c7722ca6ed0b47df22cf7febf.tar.zst
free movement in spectating camera
Diffstat (limited to 'client/map')
-rw-r--r--client/map/map.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/map/map.gd b/client/map/map.gd
index 112ddbcc..7be1a102 100644
--- a/client/map/map.gd
+++ b/client/map/map.gd
@@ -81,7 +81,7 @@ func gi_bake_blocking():
voxelgi.visible = true
print("Bake done. elapsed=", Time.get_ticks_msec() - start)
-func extents() -> Array:
+func extents() -> Array[Vector2]:
var extent_min = Vector2(0,0)
var extent_max = Vector2(0,0)
for e in tile_by_pos.values():