first commit

This commit is contained in:
zoe-bat 2021-09-08 10:27:14 +02:00
commit fafcbd1530
223 changed files with 107395 additions and 0 deletions

8
Stages/Camera.gd Normal file
View file

@ -0,0 +1,8 @@
extends Camera2D
func _process(_delta):
var zoomlevel = clamp(Engine.time_scale, 0.5, 0.975)
zoom = lerp(zoom, Vector2(zoomlevel, zoomlevel), smoothing_speed / 200)