Tween
Class
Module: cc
Tween provide a simple and flexible way to create action. Tween's api is more flexible than cc.Action:
- Support creating an action sequence in chained api,
- Support animate any objects' any properties, not limited to node's properties. By contrast, cc.Action needs to create a new action class to support new node property.
- Support working with cc.Action,
- Support easing and progress function.
Examples
cc.tween(node)
.to(1, {scale: 2, position: cc.v3(100, 100, 100)})
.call(() => { console.log('This is a callback'); })
.by(1, {scale: 3, position: cc.v3(200, 200, 200)}, {easing: 'sineOutIn'})
.start(cc.find('Canvas/cocos'));
Index
Methods
constructor
stopAll
Stop all tweensstopAllByTag
Stop all tweens by tagstopAllByTarget
Stop all tweens by targetthen
Insert an action or tween to this sequencetarget
Set tween targetstart
Start this tweenstop
Stop this tweentag
Sets tween tagclone
Clone a tweenunion
Integrate all previous actions to an action.bezierTo
Sets target's position property according to the bezier curve.bezierBy
Sets target's position property according to the bezier curve.flipX
Flips target's scaleXflipY
Flips target's scaleYblink
Blinks target by set target's opacity propertyto
Add an action which calculate with absolute valueby
Add an action which calculate with relative valueset
Directly set target propertiesdelay
Add an delay actioncall
Add an callback actionhide
Add an hide actionshow
Add an show actionremoveSelf
Add an removeSelf actionsequence
Add an sequence actionparallel
Add an parallel actionrepeat
Add an repeat action.repeatForever
Add an repeat forever actionreverseTime
Add an reverse time action.
Details
Methods
constructor
meta | description |
---|---|
Defined in | cocos2d/actions/tween.js:181 |
Parameters
target
Object
stopAll
Stop all tweens
meta | description |
---|---|
Defined in | cocos2d/actions/tween.js:186 |
stopAllByTag
Stop all tweens by tag
meta | description |
---|---|
Defined in | cocos2d/actions/tween.js:195 |
Parameters
tag
number
stopAllByTarget
Stop all tweens by target
meta | description |
---|---|
Defined in | cocos2d/actions/tween.js:205 |
Parameters
target
Object
then
Insert an action or tween to this sequence
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:216 |
Parameters
target
Set tween target
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:236 |
Parameters
target
Object
start
Start this tween
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:250 |
stop
Stop this tween
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:282 |
tag
Sets tween tag
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:298 |
Parameters
tag
number
clone
Clone a tween
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:311 |
Parameters
target
Object
union
Integrate all previous actions to an action.
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:325 |
bezierTo
Sets target's position property according to the bezier curve.
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:354 |
Parameters
duration
numberc1
cc.Vec2c2
cc.Vec2to
cc.Vec2
bezierBy
Sets target's position property according to the bezier curve.
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:376 |
Parameters
duration
numberc1
cc.Vec2c2
cc.Vec2to
cc.Vec2
flipX
Flips target's scaleX
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:399 |
flipY
Flips target's scaleY
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:408 |
blink
Blinks target by set target's opacity property
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:418 |
Parameters
to
Add an action which calculate with absolute value
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:462 |
Parameters
by
Add an action which calculate with relative value
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:483 |
Parameters
set
Directly set target properties
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:504 |
Parameters
props
Object
delay
Add an delay action
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:519 |
Parameters
duration
Number
call
Add an callback action
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:529 |
Parameters
callback
Function
hide
Add an hide action
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:539 |
show
Add an show action
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:548 |
removeSelf
Add an removeSelf action
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:557 |
sequence
Add an sequence action
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:566 |
Parameters
parallel
Add an parallel action
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:577 |
Parameters
repeat
Add an repeat action. This action will integrate before actions to a sequence action as their parameters.
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:592 |
Parameters
repeatForever
Add an repeat forever action This action will integrate before actions to a sequence action as their parameters.
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:604 |
Parameters
reverseTime
Add an reverse time action. This action will integrate before actions to a sequence action as their parameters.
meta | description |
---|---|
Returns | Tween |
Defined in | cocos2d/actions/tween.js:618 |