FuncIt/Alens/movementSystem0.0.3/source/assets/scripts/controllers/level-scale_controller.gd
Alan Alexander Cerna 7dc253487f Basic system - (Handler/Processor/Manager/Controller) link establishment
Established a basic structure of system components and their relative tasks.
2021-10-27 16:27:54 +03:00

8 lines
98 B
GDScript

extends Node
const LEVEL_SCALE = 0.25
func _ready():
$player_node.set_scale(LEVEL_SCALE)
pass