码迷,mamicode.com
首页 > 其他好文 > 详细

让动画活过来---Robound

时间:2015-04-03 22:34:46      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:

Rebound 可以使你的动画看起来像真实自然,像真实世界物理运动
Rebound 不是一个物理引擎库,但是Rebound可以使用弹簧动力来驱动各种各样的动画
Rebound使用和Origami(IOS的)相同的弹簧系数,方便实用。

上图:

技术分享            技术分享   

 技术分享        技术分享

使用:

// Create a system to run the physics loop for a set of springs.
SpringSystem springSystem = SpringSystem.create();

// Add a spring to the system.
Spring spring = springSystem.createSpring();

// Add a listener to observe the motion of the spring.
spring.addListener(new SimpleSpringListener() {

  @Override
  public void onSpringUpdate(Spring spring) {
    // You can observe the updates in the spring
    // state by asking its current value in onSpringUpdate.
    float value = (float) spring.getCurrentValue();
    float scale = 1f - (value * 0.5f);
    myView.setScaleX(scale);
    myView.setScaleY(scale);
  }
});

// Set the spring in motion; moving from 0 to 1
spring.setEndValue(1);

官网:http://facebook.github.io/rebound/

github源码 : https://github.com/facebook/rebound

让动画活过来---Robound

标签:

原文地址:http://blog.csdn.net/hpu_zyh/article/details/44859401

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!