FuncIt/kristofers/movementSystem0.0.3/source/assets/scripts/controllers/level-scale_controller.gd
2021-10-30 18:22:34 +03:00

8 lines
98 B
GDScript

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