13 lines
310 B
GDScript
13 lines
310 B
GDScript
extends Location
|
|
|
|
func initialize_entry_locations():
|
|
#Starting postition
|
|
entryLocations.append(Vector2(470, 270))
|
|
AchievementManager.complete_achievement("Uhm...")
|
|
|
|
func initialize_camera_limits():
|
|
leftCameraLimit = -3204/2
|
|
rightCameraLimit = 3204/2
|
|
upperCameraLimit = -1576/2
|
|
lowerCameraLimit = 1576/2
|