2012-09-17 14:27:17 +08:00
|
|
|
#ifndef __CCB_SEQUENCE_PROPERTY_H__
|
|
|
|
#define __CCB_SEQUENCE_PROPERTY_H__
|
|
|
|
|
2014-04-27 01:11:22 +08:00
|
|
|
#include "base/CCRef.h"
|
2014-04-27 01:35:57 +08:00
|
|
|
#include "base/CCVector.h"
|
2012-09-17 14:27:17 +08:00
|
|
|
#include "CCBKeyframe.h"
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
namespace cocosbuilder {
|
2012-09-17 14:27:17 +08:00
|
|
|
|
2014-08-27 10:18:44 +08:00
|
|
|
class CC_DLL CCBSequenceProperty : public cocos2d::Ref
|
2012-09-17 14:27:17 +08:00
|
|
|
{
|
|
|
|
public:
|
2013-09-13 16:46:31 +08:00
|
|
|
/**
|
|
|
|
* @js ctor
|
|
|
|
*/
|
2012-09-17 14:27:17 +08:00
|
|
|
CCBSequenceProperty();
|
2013-09-13 11:41:20 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2012-09-17 14:27:17 +08:00
|
|
|
~CCBSequenceProperty();
|
|
|
|
|
|
|
|
virtual bool init();
|
|
|
|
|
|
|
|
const char* getName();
|
|
|
|
void setName(const char* pName);
|
|
|
|
|
|
|
|
int getType();
|
2013-07-27 21:44:49 +08:00
|
|
|
void setType(int type);
|
2012-09-17 14:27:17 +08:00
|
|
|
|
2013-12-08 22:17:54 +08:00
|
|
|
cocos2d::Vector<CCBKeyframe*>& getKeyframes();
|
2013-07-27 22:31:57 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::string _name;
|
|
|
|
int _type;
|
2013-12-08 22:17:54 +08:00
|
|
|
cocos2d::Vector<CCBKeyframe*> _keyframes;
|
2012-09-17 14:27:17 +08:00
|
|
|
};
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
}
|
2012-09-17 14:27:17 +08:00
|
|
|
|
|
|
|
#endif // __CCB_SEQUENCE_PROPERTY_H__
|