diff options
author | nokoe <nokoe@mailbox.org> | 2024-08-10 16:58:44 +0200 |
---|---|---|
committer | nokoe <nokoe@mailbox.org> | 2024-08-10 16:59:22 +0200 |
commit | 8746fb2925250b6c7722ca6ed0b47df22cf7febf (patch) | |
tree | 15808cf8757c534185f1bfd60b46b1de5077180c /client/map/map.gd | |
parent | 5925f47846bd34a6fc9d6324e443a3e60c10dd8b (diff) | |
download | hurrycurry-8746fb2925250b6c7722ca6ed0b47df22cf7febf.tar hurrycurry-8746fb2925250b6c7722ca6ed0b47df22cf7febf.tar.bz2 hurrycurry-8746fb2925250b6c7722ca6ed0b47df22cf7febf.tar.zst |
free movement in spectating camera
Diffstat (limited to 'client/map/map.gd')
-rw-r--r-- | client/map/map.gd | 2 |
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(): |