Ver código fonte

Add custom dvorak turn binding for player 1

DricomDragon 5 anos atrás
pai
commit
fab9475314
2 arquivos alterados com 23 adições e 2 exclusões
  1. 2 2
      Player.gd
  2. 21 0
      project.godot

+ 2 - 2
Player.gd

@@ -53,9 +53,9 @@ func _physics_process(delta):
 	if !alive:
 		return
 
-	if Input.is_action_just_pressed("ui_left"):
+	if Input.is_action_just_pressed("player_1_turn_left"):
 		dire_delta = -1
-	elif Input.is_action_just_pressed("ui_right"):
+	elif Input.is_action_just_pressed("player_1_turn_right"):
 		dire_delta = 1
 	
 	if is_moving:

+ 21 - 0
project.godot

@@ -19,6 +19,27 @@ config/name="MightyLinersReborn"
 run/main_scene="res://Game.tscn"
 config/icon="res://icon.png"
 
+[input]
+
+ui_accept={
+"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":16777221,"unicode":0,"echo":false,"script":null)
+, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777222,"unicode":0,"echo":false,"script":null)
+, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":32,"unicode":0,"echo":false,"script":null)
+, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":11,"pressure":0.0,"pressed":false,"script":null)
+ ]
+}
+player_1_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":85,"unicode":0,"echo":false,"script":null)
+ ]
+}
+player_1_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":79,"unicode":0,"echo":false,"script":null)
+ ]
+}
+
 [rendering]
 
 quality/2d/use_pixel_snap=true