There are some issues depending on which type is passed as argument to any AnimationMaker function:
If pass integer value in function during(:) or delay(:) it seems that it's replaced with close to zero value, example:
make.motion(.horizontal).to(200.0).during(10.0) // works correctly, animation duration is 10 seconds
make.motion(.horizontal).to(200.0).during(10) // works incorrectly, animation duration is close to zero
If pass non-float value in function to(:) for motion animation it crashes, example:
There are some issues depending on which type is passed as argument to any
AnimationMaker
function:If pass integer value in function
during(:)
ordelay(:)
it seems that it's replaced with close to zero value, example:If pass non-float value in function
to(:)
for motion animation it crashes, example: