Skip to content

Instantly share code, notes, and snippets.

@AbhinavChauhan97
Last active June 28, 2022 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AbhinavChauhan97/63e10d05c02ddf5c6234a54fa82e3d72 to your computer and use it in GitHub Desktop.
Save AbhinavChauhan97/63e10d05c02ddf5c6234a54fa82e3d72 to your computer and use it in GitHub Desktop.
private fun flyPlane() {
var distance = 0f
val tan = floatArrayOf(0f,0f)
val pos = floatArrayOf(0f, 0f)
val valueAnimator = ValueAnimator.ofFloat(0f, 1f)
valueAnimator.duration = (pathMeasure.length * 5).toLong()
valueAnimator.interpolator = AccelerateDecelerateInterpolator()
valueAnimator.addUpdateListener {
distance = it.animatedValue as Float
pathMeasure.getPosTan(distance * pathMeasure.length, pos,null)
val planeX = pos[0]
val planeY = pos[1]
plane.x = planeX
plane.y = planeY
}
valueAnimator.doOnEnd {
if (pathMeasure.nextContour()) {
flyPlane()
}
}
valueAnimator.start()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment