Browse Source

Put the camera between the two players

One single camera for two players.
DricomDragon 5 years ago
parent
commit
0bf0f53b16
2 changed files with 20 additions and 4 deletions
  1. 13 0
      Game.gd
  2. 7 4
      Game.tscn

+ 13 - 0
Game.gd

@@ -0,0 +1,13 @@
+extends Node2D
+
+var cam
+var p1
+var p2
+
+func _ready():
+	cam = $Grid/Camera1
+	p1 = $Grid/Player1
+	p2 = $Grid/Player2
+
+func _process(d):
+	cam.position = 0.5 * (p1.position + p2.position)

File diff suppressed because it is too large
+ 7 - 4
Game.tscn