Fix spawn_point offset

This commit is contained in:
Alice Gaudon 2020-08-18 21:22:14 +02:00
parent 3b1af3754d
commit 370b2e5925
2 changed files with 213 additions and 213 deletions

File diff suppressed because it is too large Load Diff

View File

@ -50,7 +50,7 @@ func next_level():
player.connect('frame_changed', self, 'update_camera')
# Spawn player
player.position = spawn_pos + Vector2(8, 8)
player.position = spawn_pos * 16 + Vector2(8, 8)
func spawn_entities(level : Node):
exit_points = []