Przeglądaj źródła

Merge branch 'exp/save-turning-decision'

DricomDragon 5 lat temu
rodzic
commit
ba9a4b3902
1 zmienionych plików z 13 dodań i 9 usunięć
  1. 13 9
      Player.gd

+ 13 - 9
Player.gd

@@ -20,6 +20,7 @@ var dirx = 0
 var diry = 0
 
 export var dire = DIR_UP
+var dire_delta = 0
 
 var is_moving = false
 var target_pos
@@ -40,26 +41,29 @@ func _ready():
 	rayRight = $RayRight
 
 func _physics_process(delta):
+
+	if Input.is_action_pressed("ui_left"):
+		dire_delta = -1
+	elif Input.is_action_pressed("ui_right"):
+		dire_delta = 1
 	
 	if is_moving:
 		return
 
-	if Input.is_action_pressed("ui_left"):
-		dire -= 1
-		if dire < 0:
-			dire = 3
+	dire += dire_delta
 
+	if dire_delta == -1:
 		tween.rotate_char(self, rotation_degrees - 90)
+		if dire < 0:
+			dire = 3
 
-	elif Input.is_action_pressed("ui_right"):
-		dire += 1
+	elif dire_delta == 1:
+		tween.rotate_char(self, rotation_degrees + 90)
 		if dire > 3:
 			dire = 0
 
-		tween.rotate_char(self, rotation_degrees + 90)
-
-
 	turn(dire)
+	dire_delta = 0
 
 	posix += dirx
 	posiy += diry