Browse Source

Merge pull request #225 from DoobesURU/SoundAnimFix

Fix volume animation conversion
pull/229/head
Adam Johnson 4 years ago committed by GitHub
parent
commit
33c4ac9821
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      korman/exporter/animation.py

6
korman/exporter/animation.py

@ -293,11 +293,7 @@ class AnimationConverter:
if not fcurves:
return None
def convert_volume(value):
if value == 0.0:
return 0.0
else:
return math.log10(value) * 20.0
convert_volume = lambda x: math.log10(max(.01, x / 100.0)) * 20.0
for sound in soundemit.sounds:
path = "{}.volume".format(sound.path_from_id())

Loading…
Cancel
Save