mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2025-12-31 09:49:06 +03:00
* General proofreading for grammar and spelling * General formatting * Addition of appropriate literals where appropriate, i.e. `&"foo"` for `StringName` cases and `^"foo/bar"` for `NodePath` cases
17 lines
363 B
GDScript
17 lines
363 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(^"Camera")
|
|
camera.limit_left = LIMIT_LEFT
|
|
camera.limit_top = LIMIT_TOP
|
|
camera.limit_right = LIMIT_RIGHT
|
|
camera.limit_bottom = LIMIT_BOTTOM
|