We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
需求: 同一个可视对象,要沿着一个设定的路径移动(一段折线); 目前的做法: 用 Tween 的 link 方法连起来; 遇到问题:
// box 是一个 Bitmap,原始位置在(0,0) Hilo.Tween.to( box, {x: 100, y: 100}, {delay: 200, duration: 500} ).link( new Hilo.Tween( box, {x: 100, y: 100}, {x: 300, y: 300}, {delay: '+0', duration: 500} ) )
我觉得是我打开方式错误了,这个情况应该怎么写呢?
The text was updated successfully, but these errors were encountered:
这个是因为 link 方法返回的是调用者本身 所以多个link其实都是放在第一个对象里了
Sorry, something went wrong.
fix: fix tween link bug, see #109
d34615b
@ben-yip v1.1.6 修复了这个bug, fromProperties 改成真正start后才会设置 demo
No branches or pull requests
需求: 同一个可视对象,要沿着一个设定的路径移动(一段折线);
目前的做法: 用 Tween 的 link 方法连起来;
遇到问题:
我觉得是我打开方式错误了,这个情况应该怎么写呢?
The text was updated successfully, but these errors were encountered: