From 7051a1a31135b6fccdbd944c283d3bdb84b3c2d9 Mon Sep 17 00:00:00 2001 From: Ichicoro Date: Sun, 8 Jan 2023 14:48:47 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=AB=A1=20Reset=20player=20velocity=20on?= =?UTF-8?q?=20splash?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- player/SplashController.gd | 1 + 1 file changed, 1 insertion(+) diff --git a/player/SplashController.gd b/player/SplashController.gd index 4b1cdc4..ce91f96 100644 --- a/player/SplashController.gd +++ b/player/SplashController.gd @@ -10,3 +10,4 @@ func _process(_delta): if player.position.y < 0: splash_sound.play() player.position = spawn_point + player.velocity = Vector3.ZERO