|
@@ -53,9 +53,9 @@ func _physics_process(delta):
|
|
if !alive:
|
|
if !alive:
|
|
return
|
|
return
|
|
|
|
|
|
- if Input.is_action_just_pressed("ui_left") and !rayLeft.is_colliding():
|
|
|
|
|
|
+ if Input.is_action_just_pressed("ui_left"):
|
|
dire_delta = -1
|
|
dire_delta = -1
|
|
- elif Input.is_action_just_pressed("ui_right") and !rayRight.is_colliding():
|
|
|
|
|
|
+ elif Input.is_action_just_pressed("ui_right"):
|
|
dire_delta = 1
|
|
dire_delta = 1
|
|
|
|
|
|
if is_moving:
|
|
if is_moving:
|
|
@@ -63,15 +63,17 @@ func _physics_process(delta):
|
|
|
|
|
|
grid.set_cell(posix - dirx, posiy - diry, 1)
|
|
grid.set_cell(posix - dirx, posiy - diry, 1)
|
|
|
|
|
|
- dire += dire_delta
|
|
|
|
-
|
|
|
|
- if dire_delta == -1:
|
|
|
|
|
|
+ if dire_delta == -1 and !rayLeft.is_colliding():
|
|
tween.rotate_char(self, rotation_degrees - 90)
|
|
tween.rotate_char(self, rotation_degrees - 90)
|
|
|
|
+
|
|
|
|
+ dire += dire_delta
|
|
if dire < 0:
|
|
if dire < 0:
|
|
dire = 3
|
|
dire = 3
|
|
|
|
|
|
- elif dire_delta == 1:
|
|
|
|
|
|
+ elif dire_delta == 1 and !rayRight.is_colliding():
|
|
tween.rotate_char(self, rotation_degrees + 90)
|
|
tween.rotate_char(self, rotation_degrees + 90)
|
|
|
|
+
|
|
|
|
+ dire += dire_delta
|
|
if dire > 3:
|
|
if dire > 3:
|
|
dire = 0
|
|
dire = 0
|
|
|
|
|