I added a moving platform. Tutorial is finished. So now the player is on their own.
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
extends Control
|
||||
|
||||
@onready var snail_killer: Label = $SnailKiller
|
||||
|
||||
func _ready() -> void:
|
||||
snail_killer.visible = false
|
||||
|
||||
func _on_area_2d_body_entered(body: Node2D) -> void:
|
||||
snail_killer.visible = true
|
||||
Reference in New Issue
Block a user