diff --git a/cards/playing_card.tscn b/cards/playing_card.tscn index fac8401..9358ddd 100644 --- a/cards/playing_card.tscn +++ b/cards/playing_card.tscn @@ -24,6 +24,7 @@ collision_mask = 0 script = ExtResource("1_t6o5d") card_mesh = NodePath("Model/Cube") front_texture = ExtResource("3_jeoeb") +move_duration = 0.3 [node name="Model" parent="." instance=ExtResource("2_enav7")] diff --git a/elements/player_hand.gd b/elements/player_hand.gd index e1208ad..552e11c 100644 --- a/elements/player_hand.gd +++ b/elements/player_hand.gd @@ -28,7 +28,7 @@ func _ready() -> void: test_details.card_id = 2 card.card_details = test_details add_card(card) - await get_tree().create_timer(0.2).timeout + await get_tree().create_timer(0.16).timeout func add_card(card: PlayingCard) -> void: self.add_child(card)