coolsharp의 놀이터

'Animation'에 해당되는 글 1건

  1. 2011.10.18 cocos2d for android - animation

cocos2d for android - animation

2011. 10. 18. 18:58 : 개발
    /**
    * FileName : ActionsTest.java
    * Comment : 애니메이션
    * @version : 1.0
    * @author : coolsharp
    * @date : 2011. 10. 18.
    */
    static class ActionAnimate extends ActionDemo {
        public void onEnter() {
            super.onEnter();

            centerSprites(1);

            // 애니메이션 생성
            CCAnimation animation = CCAnimation.animation("dance");
            // 그림 로드 하면서 대입
            for (int i = 1; i < 15; i++)
                animation.addFrame(String.format("grossini_dance_%02d.png", i));

            // 3초간 애니메이션 진행
            CCAnimate action = CCAnimate.action(3, animation, false);
            CCAnimate action_back = action.reverse();

            grossini.runAction(CCSequence.actions(action, action_back));
        }

        public String title() {
            return "Animation";
        }
    }

Posted by coolsharp_backup