This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extends Camera2D | |
const SCREEN_SIZE := Vector2( 320, 180 ) | |
var cur_screen := Vector2( 0, 0 ) | |
func _ready(): | |
set_as_toplevel( true ) | |
global_position = get_parent().global_position | |
_update_screen( cur_screen ) |