cocos2d-x  3.0-beta2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
AnimationFrame Class Reference

AnimationFrame A frame of the animation. More...

#include <CCAnimation.h>

Inheritance diagram for AnimationFrame:
Object Clonable

Public Member Functions

SpriteFramegetSpriteFrame () const
void setSpriteFrame (SpriteFrame *frame)
var setSpriteFrame ( var frame)
local setSpriteFrame ( local frame)
float getDelayUnits () const
 Gets the units of time the frame takes. More...
 
var getDelayUnits ()
 Gets the units of time the frame takes. More...
 
local getDelayUnits ()
 Gets the units of time the frame takes. More...
 
void setDelayUnits (float delayUnits)
 Sets the units of time the frame takes. More...
 
var setDelayUnits ( var delayUnits)
 Sets the units of time the frame takes. More...
 
local setDelayUnits ( local delayUnits)
 Sets the units of time the frame takes. More...
 
const ValueMapgetUserInfo () const
 Gets user infomation A AnimationFrameDisplayedNotification notification will be broadcast when the frame is displayed with this dictionary as UserInfo. More...
 
ValueMapgetUserInfo ()
var getUserInfo ()
local getUserInfo ()
void setUserInfo (const ValueMap &userInfo)
 Sets user infomation. More...
 
var setUserInfo ( var userInfo)
 Sets user infomation. More...
 
local setUserInfo ( local userInfo)
 Sets user infomation. More...
 
virtual AnimationFrameclone () const override
 returns a copy of the object More...
 
local clone ()
 returns a copy of the object More...
 
- Public Member Functions inherited from Object
 Object ()
 Constructor. More...
 
virtual ~Object ()
void release ()
 Release the ownership immediately. More...
 
void retain ()
 Retains the ownership. More...
 
Objectautorelease ()
 Release the ownership sometime soon automatically. More...
 
bool isSingleReference () const
 Returns a boolean value that indicates whether there is only one reference to the object. More...
 
unsigned int retainCount () const
 Returns the object's current reference count. More...
 
unsigned int getReferenceCount () const
virtual bool isEqual (const Object *object)
 Returns a boolean value that indicates whether this object and a given object are equal. More...
 
virtual void acceptVisitor (DataVisitor &visitor)
virtual void update (float dt)
- Public Member Functions inherited from Clonable
virtual ~Clonable ()
Objectcopy () const
 returns a copy of the object. More...
 
var copy ()
 returns a copy of the object. More...
 
local copy ()
 returns a copy of the object. More...
 

Static Public Member Functions

static AnimationFramecreate (SpriteFrame *spriteFrame, float delayUnits, const ValueMap &userInfo)
 Creates the animation frame with a spriteframe, number of delay units and a notification user info. More...
 
local create ( local spriteFrame, local delayUnits, local userInfo)
 Creates the animation frame with a spriteframe, number of delay units and a notification user info. More...
 

Protected Member Functions

 AnimationFrame ()
 ctor ()
 AnimationFrame ()
virtual ~AnimationFrame ()
bool initWithSpriteFrame (SpriteFrame *spriteFrame, float delayUnits, const ValueMap &userInfo)
 initializes the animation frame with a spriteframe, number of delay units and a notification user info More...
 
var initWithSpriteFrame ( var spriteFrame, var delayUnits, var userInfo)
 initializes the animation frame with a spriteframe, number of delay units and a notification user info More...
 
local initWithSpriteFrame ( local spriteFrame, local delayUnits, local userInfo)
 initializes the animation frame with a spriteframe, number of delay units and a notification user info More...
 

Protected Attributes

SpriteFrame_spriteFrame
 SpriteFrameName to be used. More...
 
float _delayUnits
 how many units of time the frame takes More...
 
var _delayUnits
 how many units of time the frame takes More...
 
local _delayUnits
 how many units of time the frame takes More...
 
ValueMap _userInfo
 A AnimationFrameDisplayedNotification notification will be broadcast when the frame is displayed with this dictionary as UserInfo. More...
 
- Protected Attributes inherited from Object
unsigned int _referenceCount
 count of references More...
 

Additional Inherited Members

- Public Attributes inherited from Object
unsigned int _ID
 object id, ScriptSupport need public _ID More...
 
int _luaID
 Lua reference id. More...
 

Detailed Description

AnimationFrame A frame of the animation.

It contains information like:

  • sprite frame name
  • # of delay units.
  • offset
Since
v2.0

Constructor & Destructor Documentation

AnimationFrame ( )
protected
var ctor ( )
protected
local AnimationFrame ( )
protected
virtual ~AnimationFrame ( )
protectedvirtual

Member Function Documentation

virtual AnimationFrame* clone ( ) const
overridevirtual

returns a copy of the object

Implements Clonable.

var clone ( )
overridevirtual

returns a copy of the object

Implements Clonable.

local clone ( )
overridevirtual

returns a copy of the object

Implements Clonable.

static AnimationFrame* create ( SpriteFrame spriteFrame,
float  delayUnits,
const ValueMap userInfo 
)
static

Creates the animation frame with a spriteframe, number of delay units and a notification user info.

Since
3.0
var create ( var  spriteFrame,
var  delayUnits,
var  userInfo 
)
static

Creates the animation frame with a spriteframe, number of delay units and a notification user info.

Since
3.0
local create ( local  spriteFrame,
local  delayUnits,
local  userInfo 
)
static

Creates the animation frame with a spriteframe, number of delay units and a notification user info.

Since
3.0
float getDelayUnits ( ) const
inline

Gets the units of time the frame takes.

var getDelayUnits ( )
inline

Gets the units of time the frame takes.

local getDelayUnits ( )
inline

Gets the units of time the frame takes.

SpriteFrame* getSpriteFrame ( ) const
inline
var getSpriteFrame ( )
inline
local getSpriteFrame ( )
inline
const ValueMap& getUserInfo ( ) const
inline

Gets user infomation A AnimationFrameDisplayedNotification notification will be broadcast when the frame is displayed with this dictionary as UserInfo.

If UserInfo is nil, then no notification will be broadcast.

var getUserInfo ( )
inline

Gets user infomation A AnimationFrameDisplayedNotification notification will be broadcast when the frame is displayed with this dictionary as UserInfo.

If UserInfo is nil, then no notification will be broadcast.

local getUserInfo ( )
inline

Gets user infomation A AnimationFrameDisplayedNotification notification will be broadcast when the frame is displayed with this dictionary as UserInfo.

If UserInfo is nil, then no notification will be broadcast.

ValueMap& getUserInfo ( )
inline
var getUserInfo ( )
inline
local getUserInfo ( )
inline
bool initWithSpriteFrame ( SpriteFrame spriteFrame,
float  delayUnits,
const ValueMap userInfo 
)
protected

initializes the animation frame with a spriteframe, number of delay units and a notification user info

var initWithSpriteFrame ( var  spriteFrame,
var  delayUnits,
var  userInfo 
)
protected

initializes the animation frame with a spriteframe, number of delay units and a notification user info

local initWithSpriteFrame ( local  spriteFrame,
local  delayUnits,
local  userInfo 
)
protected

initializes the animation frame with a spriteframe, number of delay units and a notification user info

void setDelayUnits ( float  delayUnits)
inline

Sets the units of time the frame takes.

var setDelayUnits ( var  delayUnits)
inline

Sets the units of time the frame takes.

local setDelayUnits ( local  delayUnits)
inline

Sets the units of time the frame takes.

void setSpriteFrame ( SpriteFrame frame)
inline
var setSpriteFrame ( var  frame)
inline
local setSpriteFrame ( local  frame)
inline
void setUserInfo ( const ValueMap userInfo)
inline

Sets user infomation.

var setUserInfo ( var  userInfo)
inline

Sets user infomation.

local setUserInfo ( local  userInfo)
inline

Sets user infomation.

Member Data Documentation

float _delayUnits
protected

how many units of time the frame takes

var _delayUnits
protected

how many units of time the frame takes

local _delayUnits
protected

how many units of time the frame takes

SpriteFrame* _spriteFrame
protected

SpriteFrameName to be used.

var _spriteFrame
protected

SpriteFrameName to be used.

local _spriteFrame
protected

SpriteFrameName to be used.

ValueMap _userInfo
protected

A AnimationFrameDisplayedNotification notification will be broadcast when the frame is displayed with this dictionary as UserInfo.

If UserInfo is nil, then no notification will be broadcast.

var _userInfo
protected

A AnimationFrameDisplayedNotification notification will be broadcast when the frame is displayed with this dictionary as UserInfo.

If UserInfo is nil, then no notification will be broadcast.

local _userInfo
protected

A AnimationFrameDisplayedNotification notification will be broadcast when the frame is displayed with this dictionary as UserInfo.

If UserInfo is nil, then no notification will be broadcast.


The documentation for this class was generated from the following file: