test_game/scripts/game_manager.gd
2025-02-27 23:52:43 +01:00

9 lines
179 B
GDScript

extends Node
@onready var score_label: Label = $ScoreLabel
var score: int = 0
func add_score_point():
score += 1
score_label.text = "You collected " + str(score) + " coins."