FuncIt/Alens/movementSystem0.0.3/source/assets/scripts/controllers/level-scale_controller.gd
2021-10-28 15:09:12 +03:00

8 lines
98 B
GDScript

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