mirror of
https://github.com/kristoferssolo/FuncIt.git
synced 2025-10-21 19:30:35 +00:00
8 lines
98 B
GDScript
8 lines
98 B
GDScript
extends Node
|
|
|
|
const LEVEL_SCALE = 0.05
|
|
|
|
func _ready():
|
|
$player_node.set_scale(LEVEL_SCALE)
|
|
pass
|