Inherits from CCActionEase : CCActionInterval : CCActionFiniteTime : CCAction : NSObject
Conforms to NSCopying
Declared in CCActionEase.h

Overview

CCActionEaseRate adds an additional rate property to control the rate of change for the specified action.

Properties

rate

Rate value for the ease action.

@property (nonatomic, readwrite, assign) float rate

Declared In

CCActionEase.h

Class Methods

actionWithAction:rate:

Creates the action with the inner action and the rate parameter.

+ (id)actionWithAction:(CCActionInterval *)action rate:(float)rate

Parameters

action

Interval action to ease.

rate

Action rate.

Return Value

New rate action.

Declared In

CCActionEase.h

Instance Methods

initWithAction:rate:

Initializes the action with the inner action and the rate parameter.

- (id)initWithAction:(CCActionInterval *)action rate:(float)rate

Parameters

action

Interval action to ease.

rate

Action rate.

Return Value

New rate action.

Declared In

CCActionEase.h