TLDR: I'd like the playback_position to update at least every 1/100th second, is this possible? Thanks!!
Hi, I have a talking 3D NPC. I have blend shapes for the mouth and gathered times for those shapes with Rhubarb
With this:
func _physics_process(_delta):
pbTime = self.get_playback_position()
print(pbTIme)
I get something like this:
0
0
0.052245 # same
0.052245 # same
0.052245 # same
0.098685 # jumps ahead
0.098685 # same
0.121905 # jumps ahead
0.121905 # jumps ahead
0.168345 # etc ..
0.168345
0.168345
0.214785
0.214785
0.261224
0.261224
0.261224
0.307664
0.307664
0.307664
0.354104
0.354104
0.354104
0.400544
0.400544
0.400544
0.446984
0.446984
0.493424
0.493424
0.493424
0.493424
0.539864
0.539864
0.586304
0.586304
0.632744
FYI I have also tried using a .01 sec Timer to get the playback position
func _on_AudioTimer_timeout():
pbTime = self.get_playback_position()
print(pbTime)
.. but the results were no better.
Thanks again!