blob: e6c25da5a0dea0c23a86805d6166d691033e1f46 (
plain)
1
2
3
4
5
6
7
8
|
extends Microgame
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
await $Timer.timeout
finished.emit(true if randf() < 0.5 else false)
print("acabou")
|