test_game/scripts/game_manager.gd

10 lines
179 B
GDScript3
Raw Normal View History

2025-02-27 23:50:12 +01:00
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."