浏览代码

Add a second player

Still one camera, though.
DricomDragon 5 年之前
父节点
当前提交
cca6b16932
共有 3 个文件被更改,包括 26 次插入4 次删除
  1. 10 2
      Game.tscn
  2. 6 2
      Player.gd
  3. 10 0
      project.godot

文件差异内容过多而无法显示
+ 10 - 2
Game.tscn


+ 6 - 2
Player.gd

@@ -31,6 +31,10 @@ var dire_delta = 0
 var is_moving = false
 var target_pos
 
+# Controls
+export var turn_left_action:String
+export var turn_right_action:String
+
 func _ready():
 	grid = get_node(gridNode)
 	cell_size = int (grid.get_cell_size().x)
@@ -53,9 +57,9 @@ func _physics_process(delta):
 	if !alive:
 		return
 
-	if Input.is_action_just_pressed("player_1_turn_left"):
+	if Input.is_action_just_pressed(turn_left_action):
 		dire_delta = -1
-	elif Input.is_action_just_pressed("player_1_turn_right"):
+	elif Input.is_action_just_pressed(turn_right_action):
 		dire_delta = 1
 	
 	if is_moving:

+ 10 - 0
project.godot

@@ -39,6 +39,16 @@ player_1_turn_left={
 "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":79,"unicode":0,"echo":false,"script":null)
  ]
 }
+player_2_turn_left={
+"deadzone": 0.5,
+"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":72,"unicode":0,"echo":false,"script":null)
+ ]
+}
+player_2_turn_right={
+"deadzone": 0.5,
+"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":78,"unicode":0,"echo":false,"script":null)
+ ]
+}
 
 [rendering]