Make springboard shrink back down much faster.

This commit is contained in:
blujai831 2025-03-30 15:14:02 -07:00
parent 96e4a109a5
commit ce77112c20
No known key found for this signature in database
GPG Key ID: DDC31A0363AA5E66
1 changed files with 1 additions and 1 deletions

View File

@ -22,4 +22,4 @@ func _on_body_entered(body: PhysicsBody3D) -> void:
audio_player.play()
func _physics_process(delta: float) -> void:
scale.y = lerp(scale.y, 1.0, 1.0 - 0.75**delta)
scale.y = lerp(scale.y, 1.0, 1.0 - 0.01**delta)