mirror of
https://git.kittycat.homes/zoe/pegchamp.git
synced 2024-08-15 03:15:39 +00:00
5 lines
145 B
GDScript
5 lines
145 B
GDScript
extends AudioStreamPlayer
|
|
|
|
func _process(_delta):
|
|
var speed = clamp(Engine.time_scale, 0.99, 1.1)
|
|
pitch_scale = lerp(pitch_scale, speed, 0.01)
|