mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2024-12-21 13:56:50 +01:00
16 lines
364 B
GDScript
16 lines
364 B
GDScript
extends Node2D
|
|
|
|
const LIMIT_LEFT = -315
|
|
const LIMIT_TOP = -250
|
|
const LIMIT_RIGHT = 955
|
|
const LIMIT_BOTTOM = 690
|
|
|
|
func _ready():
|
|
for child in get_children():
|
|
if child is Player:
|
|
var camera = child.get_node(@"Camera2D")
|
|
camera.limit_left = LIMIT_LEFT
|
|
camera.limit_top = LIMIT_TOP
|
|
camera.limit_right = LIMIT_RIGHT
|
|
camera.limit_bottom = LIMIT_BOTTOM
|