first commit

This commit is contained in:
2020-10-28 16:08:07 +01:00
commit 03cbe35001
616 changed files with 11485 additions and 0 deletions

12
Wrong Way.gd Normal file
View File

@@ -0,0 +1,12 @@
extends Label
# Called when the node enters the scene tree for the first time.
func _ready():
set_visible(false)
func _on_TileMap_wrong_way(coords):
if coords == Vector2(-1,-1):
set_visible(false)
else:
set_visible(true)
set_position(coords)