From 0c0674dc05d71ab156b7077f4415b78135d7c1cc Mon Sep 17 00:00:00 2001 From: perivesta <> Date: Sun, 9 Jul 2023 15:45:42 +0200 Subject: more sprites --- Scripts/car_behaviour.gd | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Scripts/car_behaviour.gd') diff --git a/Scripts/car_behaviour.gd b/Scripts/car_behaviour.gd index 8c22bf3..1a69b37 100644 --- a/Scripts/car_behaviour.gd +++ b/Scripts/car_behaviour.gd @@ -29,7 +29,10 @@ func _ready(): func _physics_process(delta): if not driving: + $Sprite2D.hide() return + + $Sprite2D.show() # Code for getting the next desired direction based on the environment set_interest() -- cgit