aboutsummaryrefslogtreecommitdiffstats
path: root/Scripts/car_behaviour.gd
diff options
context:
space:
mode:
Diffstat (limited to 'Scripts/car_behaviour.gd')
-rw-r--r--Scripts/car_behaviour.gd3
1 files changed, 3 insertions, 0 deletions
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()