FIRST GAME CODE
Kandif
plain_text
3 years ago
551 B
11
Indexable
extends Node2D var score = 0 func sopel_kolizja(body): if body is StaticBody2D: score += 1 $Control/Label.text = str(score) if body is KinematicBody2D: $GeneratorSopli/Timer.stop() $Control/Button.visible = true $Control/Button.text = "Restart" for sopel in $GeneratorSopli.get_children(): if sopel is Node2D: sopel.queue_free() func _on_Button_pressed(): score = 0 $Control/Label.text = str(score) $GeneratorSopli/Timer.start() $Control/Button.visible = false pass # Replace with function body.
Editor is loading...