From c3c0618197295086f052ade7c22e828386a60d5f Mon Sep 17 00:00:00 2001 From: Roman Gräf Date: Mon, 20 Apr 2020 22:47:50 +0200 Subject: displays --- tutorial/riot.gd | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'tutorial') diff --git a/tutorial/riot.gd b/tutorial/riot.gd index b000280..931410f 100644 --- a/tutorial/riot.gd +++ b/tutorial/riot.gd @@ -1,3 +1,7 @@ extends TutorialPopup +var i = 0 func _trigger(): - return true + return i > 1 +func _process(delta): + ._process(delta) + i+=delta -- cgit