首页 > 其他 > 详细

实现精灵沿着圆形轨迹运动

时间:2014-05-18 07:03:00      阅读:564      评论:0      收藏:0      [点我收藏+]

(原文地址:http://blog.csdn.net/while0/article/details/26008033)


使用样条曲线模拟圆形轨迹,当分割数量足够大时,逐渐逼近圆形。

    Point pos(100, 100); //start point
    m_animSprite->setPosition(pos);

    int count = 8;
    float angle = 360.f/count;
    float radius = 50.f;
    auto array = PointArray::create(count + 1);
    Point pt0(radius, 0.f), pt;
    for (int i = 0; i <= count; i++)
    {
        pt = pt0 + Point(-radius, 0);
        array->addControlPoint(pt);
        pt0 = pt0.rotateByAngle(Point::ZERO, CC_DEGREES_TO_RADIANS(angle));
    }
    auto action = CardinalSplineBy::create(3, array, 0);
    auto seq = RepeatForever::create(action);
    m_animSprite->runAction(seq);

实现精灵沿着圆形轨迹运动,布布扣,bubuko.com

实现精灵沿着圆形轨迹运动

原文:http://blog.csdn.net/while0/article/details/26008033

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!