Added win condition for level 1 and added boss fight for level 5

This commit is contained in:
VoidTwo
2021-12-10 14:23:23 -06:00
parent 3c880d1566
commit e5aafa6cd0
74 changed files with 791 additions and 1300 deletions

View File

@@ -0,0 +1,10 @@
extends Area2D
export var x_location: int
export var y_location: int
func _on_teleporter_body_entered(body: Node) -> void:
if body.is_in_group('player'):
body.set_deferred('position', Vector2(x_location, y_location))
return