|
@@ -24,6 +24,11 @@ var dire = DIR_UP
|
|
|
|
|
|
var grid
|
|
|
|
|
|
+var is_moving = false
|
|
|
+
|
|
|
+var tween
|
|
|
+
|
|
|
+var target_pos = Vector2()
|
|
|
var blocks = []
|
|
|
var is_blocked:bool = false
|
|
|
export (NodePath) var rayU
|
|
@@ -37,12 +42,16 @@ func _ready():
|
|
|
|
|
|
posix = int (position.x / 64)
|
|
|
posiy = int (position.y / 64)
|
|
|
-
|
|
|
+
|
|
|
turn(DIR_UP)
|
|
|
+
|
|
|
+ tween = $Tween
|
|
|
+ tween.connect_into(self)
|
|
|
+
|
|
|
pass
|
|
|
|
|
|
func _physics_process(delta):
|
|
|
-
|
|
|
+
|
|
|
if Input.is_action_pressed("ui_left"):
|
|
|
dire -= 1
|
|
|
if dire < 0:
|
|
@@ -56,13 +65,20 @@ func _physics_process(delta):
|
|
|
update_avatar_dir()
|
|
|
|
|
|
if Input.is_action_pressed("ui_up"):
|
|
|
-
|
|
|
+
|
|
|
turn(dire)
|
|
|
-
|
|
|
- if !raycast.is_colliding():
|
|
|
+
|
|
|
+ if !is_moving and !raycast.is_colliding():
|
|
|
posix += dirx
|
|
|
posiy += diry
|
|
|
- position = Vector2(posix * 64 + 32, posiy * 64 + 32)
|
|
|
+
|
|
|
+ target_pos = Vector2(posix * 64 + 32, posiy * 64 + 32)
|
|
|
+ tween.move_char(self, target_pos)
|
|
|
+ is_moving = true
|
|
|
+
|
|
|
+
|
|
|
+func _on_tween_completed(o, k):
|
|
|
+ is_moving = false
|
|
|
pass
|
|
|
|
|
|
func _on_area_entered(a):
|
|
@@ -76,7 +92,7 @@ func _on_area_exited(a):
|
|
|
blocks.erase(a)
|
|
|
is_blocked = blocks.size()
|
|
|
pass
|
|
|
-
|
|
|
+
|
|
|
func turn(dir:int):
|
|
|
dirx = 0
|
|
|
diry = 0
|