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

Cocos动画系统

时间:2020-01-30 12:50:29      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:public   update   pre   解析   重要   bool   return   get   virtual   

动画系统也是Cocos的UI中一个重要的模块,今天对它的运作进行解析。
一个动画的基类是Action,其声明如下:

class CC_DLL Action : public Ref, public Clonable
{
public:
    virtual std::string description() const;
    virtual bool isDone() const;
    virtual void startWithTarget(Node *target);
    virtual void stop();
    virtual void step(float dt);
    virtual void update(float time);
    Node* getTarget() const { return _target; }
    void setTarget(Node *target) { _target = target; }
    Node* getOriginalTarget() const { return _originalTarget; }
    void setOriginalTarget(Node *originalTarget) { _originalTarget = originalTarget; }
    int getTag() const { return _tag; }
    void setTag(int tag) { _tag = tag; }
    unsigned int getFlags() const { return _flags; }
    void setFlags(unsigned int flags) { _flags = flags; }

CC_CONSTRUCTOR_ACCESS:
    Action();
    virtual ~Action();

protected:
    Node    *_originalTarget;
    Node    *_target;
    int     _tag;
    unsigned int _flags;
};

基类中主要包含播放动画的节点_target,用于记录动画信息的_tag,以及step、update等虚函数。

Cocos动画系统

标签:public   update   pre   解析   重要   bool   return   get   virtual   

原文地址:https://www.cnblogs.com/wickedpriest/p/12242421.html

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