|
@@ -30,25 +30,23 @@ func _process(d):
|
|
center_camera()
|
|
center_camera()
|
|
|
|
|
|
func center_camera():
|
|
func center_camera():
|
|
- var living_players = []
|
|
|
|
var position_accumulator = Vector2(0.0, 0.0)
|
|
var position_accumulator = Vector2(0.0, 0.0)
|
|
var players = get_tree().get_nodes_in_group("players")
|
|
var players = get_tree().get_nodes_in_group("players")
|
|
|
|
+ var living = get_tree().get_nodes_in_group("living")
|
|
|
|
|
|
- for p in players:
|
|
|
|
- if (p.is_alive()):
|
|
|
|
- living_players.append(p)
|
|
|
|
- position_accumulator += p.position
|
|
|
|
-
|
|
|
|
- if living_players.size() == 0:
|
|
|
|
|
|
+ if living.size() == 0:
|
|
# Keep camera in the last position
|
|
# Keep camera in the last position
|
|
return
|
|
return
|
|
|
|
|
|
- cam.position = position_accumulator / living_players.size()
|
|
|
|
|
|
+ for p in living:
|
|
|
|
+ position_accumulator += p.position
|
|
|
|
+
|
|
|
|
+ cam.position = position_accumulator / living.size()
|
|
|
|
|
|
var dist = 0
|
|
var dist = 0
|
|
- for i in range(living_players.size() - 1):
|
|
|
|
- for j in range(i + 1, living_players.size()):
|
|
|
|
- dist = max(dist, living_players[i].position.distance_to(living_players[j].position))
|
|
|
|
|
|
+ for i in range(living.size() - 1):
|
|
|
|
+ for j in range(i + 1, living.size()):
|
|
|
|
+ dist = max(dist, living[i].position.distance_to(living[j].position))
|
|
|
|
|
|
# Extend camera zoom if liners are far from each other
|
|
# Extend camera zoom if liners are far from each other
|
|
var zoom = 1.0
|
|
var zoom = 1.0
|