Forráskód Böngészése

Increase spawn transition time

DricomDragon 4 éve
szülő
commit
37c86fc20d
2 módosított fájl, 7 hozzáadás és 5 törlés
  1. 3 3
      CharTween.gd
  2. 4 2
      Player.gd

+ 3 - 3
CharTween.gd

@@ -1,6 +1,6 @@
 extends Tween
 
-export var duration = 0.1
+export var default_duration = 0.1
 
 # Called when the node enters the scene tree for the first time.
 func _ready():
@@ -10,10 +10,10 @@ func connect_into(o):
 	connect("tween_completed", o, "_on_tween_completed")
 	pass
 
-func move_char(c, t_pos):
+func move_char(c, t_pos, duration = default_duration):
 	interpolate_property(c, "position", c.get_position(), t_pos, duration, Tween.TRANS_LINEAR, Tween.EASE_OUT_IN)
 	pass
 
-func rotate_char(c, from, to):
+func rotate_char(c, from, to, duration = default_duration):
 	interpolate_property(c, "rotation_degrees", from, to, duration, Tween.TRANS_LINEAR, Tween.EASE_OUT)
 	pass

+ 4 - 2
Player.gd

@@ -33,6 +33,8 @@ var dire_delta = 0
 
 var target_pos
 
+const LEVEL_SPAWN_DURATION = 2
+
 # Controls
 export var turn_left_action:String
 export var turn_right_action:String
@@ -65,8 +67,8 @@ func spawn(newGrid, newPosition, newOrientation):
 	apply_turn()
 
 	# Animate spawning
-	tween.rotate_char(self, rotation_degrees, newOrientation)
-	tween.move_char(self, newPosition)
+	tween.rotate_char(self, rotation_degrees, newOrientation, LEVEL_SPAWN_DURATION)
+	tween.move_char(self, newPosition, LEVEL_SPAWN_DURATION)
 	tween.start()
 
 func _on_round_start():