minor bugfixes

This commit is contained in:
minjaesong
2024-09-03 15:39:11 +09:00
parent f5f1f536cf
commit 3fcb2f9996
2 changed files with 10 additions and 1 deletions

View File

@@ -40,7 +40,7 @@ open class ActorLobbed(throwPitch: Float) : ActorWithBody() {
super.updateImpl(delta)
if (!soundFired) {
soundFired = true
val amp = 1.65 * (pitch - 0.495)
val amp = 6.0 * (pitch.sqrt() - 0.495)
startAudio(whooshSound, amp)
}
}