You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are two problems:
When paramName is pitchDelta, the param value becomes extremely large(near 2^32) when the value is smaller than zero. So probably the unsigned/signed conversion fails.
When paramName is Tension, the param value always get zero. I think the problem is also about number conversion.
The text was updated successfully, but these errors were encountered:
Thank you for the report. We are able to confirm this bug and it will be fixed in version 1.0.5.
A workaround is to pass item[0] into Automation.get(). This should give a value identical to what item[1] should have been.
I'm developing a script to copy all parameters from one track to another, and the code is shown below.
There are two problems:
When paramName is
pitchDelta
, the param value becomes extremely large(near 2^32) when the value is smaller than zero. So probably the unsigned/signed conversion fails.When paramName is
Tension
, the param value always get zero. I think the problem is also about number conversion.The text was updated successfully, but these errors were encountered: