small racing game im working on
Diffstat (limited to 'ui/gears.gd')
| -rw-r--r-- | ui/gears.gd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gears.gd b/ui/gears.gd index 54ba49a..aa54b08 100644 --- a/ui/gears.gd +++ b/ui/gears.gd @@ -6,5 +6,5 @@ extends RichTextLabel const F_STRING = "[center] [b]%s[/b][/center]" const GEARS: PackedStringArray = ["[color=#4682b4]N[/color]", "1", "2", "3", "4", "5", "6", "[color=#d84341]R[/color]"] -func _process(_delta: float) -> void: - text = F_STRING % GEARS[car.current_gear] +# func _process(_delta: float) -> void: +# text = F_STRING % GEARS[car.current_gear] |