Whether if crossFade()
or play()
has been called before this component starts.
For internal usage.
The node this component is attached to. A component is always attached to a node.
Whether the default clip should get into playing when this components starts.
Note, this field takes no effect if crossFade()
or play()
has been called before this component starts.
Returns a value which used to indicate the onLoad get called or not.
Gets or sets clips this component governs. When set, associated animation state of each existing clip will be stopped. If the existing default clip is not in the set of new clips, default clip will be reset to null.
Gets or sets clips this component governs. When set, associated animation state of each existing clip will be stopped. If the existing default clip is not in the set of new clips, default clip will be reset to null.
Gets or sets the default clip.
Gets or sets the default clip.
indicates whether this component is enabled or not.
indicates whether this component is enabled or not.
indicates whether this component is enabled and its node is also active in the hierarchy.
Indicates whether the object is not yet destroyed. (It will not be available after being destroyed)
When an object's destroy
is called, it is actually destroyed after the end of this frame.
So isValid
will return false from the next frame, while isValid
in the current frame will still be true.
If you want to determine whether the current frame has called destroy
, use cc.isValid(obj, true)
,
but this is often caused by a particular logical requirements, which is not normally required.
The uuid for editor.
__preload
is called before every onLoad.
It is used to initialize the builtin components internally,
to avoid checking whether onLoad is called before every public method calls.
This method should be removed if script priority is supported.
Clear all references in the instance.
NOTE: this method will not clear the getter or setter functions which defined in the instance of CCObject. You can override the _destruct method if you need, for example: _destruct: function () { for (var key in this) { if (this.hasOwnProperty(key)) { switch (typeof this[key]) { case 'string': this[key] = ''; break; case 'object': case 'function': this[key] = null; break; } } }
If the component's bounding box is different from the node's, you can implement this method to supply a custom axis aligned bounding box (AABB), so the editor's scene view can perform hit test properly.
提供包围盒的 Rect
添加一个动画剪辑到 this.clips
中并以此剪辑创建动画状态。
The animation clip
The animation state name, if absent, the default clip's name will be used
The created animation state
Adds a component class to the node. You can also add component to node by passing in the name of the script.
Adds a component class to the node. You can also add component to node by passing in the name of the script.
Creates a state for specified clip. If there is already a clip with same name, the existing animation state will be stopped and overridden.
The animation clip
The animation state name, if absent, the default clip's name will be used
The animation state created
Smoothly switch to play specified animation state.
The name of the animation to switch to
The duration of the cross fade, default value is 0.3s
Trigger an event directly with the event name and necessary arguments.
event type
Get specified animation state.
Returns the component of supplied type if the node has one attached, null if it doesn't.
You can also get component in the node by passing in the name of the script.
Returns the component of supplied type if the node has one attached, null if it doesn't.
You can also get component in the node by passing in the name of the script.
Returns the component of supplied type in any of its children using depth first search.
Returns the component of supplied type in any of its children using depth first search.
Returns all components of supplied type in the node.
Returns all components of supplied type in the node.
Returns all components of supplied type in self or any of its children.
Returns all components of supplied type in self or any of its children.
Get specified animation state.
The name of the animation
If no animation found, return null, otherwise the correspond animation state is returned
Checks whether there is correspond event listener registered on the given event.
Event type.
Callback function when event triggered.
Callback callee.
LateUpdate is called every frame, if the Component is enabled.
This is a lifecycle method. It may not be implemented in the super class.
You can only call its super class method inside it. It should not be called manually elsewhere.
the delta time in seconds it took to complete the last frame
Unregister animation event callback.
The event type to unregister
The callback to unregister
Register animation event callback.
The event type to listen to
The callback when event triggered
The registered callback
onRestore is called after the user clicks the Reset item in the Inspector's context menu or performs
an undo operation on this component.
If the component contains the "internal state", short for "temporary member variables which not included
in its CCClass properties", then you may need to implement this function.
The editor will call the getset accessors of your component to record/restore the component's state
for undo/redo operation. However, in extreme cases, it may not works well. Then you should implement
this function to manually synchronize your component's "internal states" with its public properties.
Once you implement this function, all the getset accessors of your component will not be called when
the user performs an undo/redo operation. Which means that only the properties with default value
will be recorded or restored by editor.
Similarly, the editor may failed to reset your component correctly in extreme cases. Then if you need
to support the reset menu, you should manually synchronize your component's "internal states" with its
properties in this function. Once you implement this function, all the getset accessors of your component
will not be called during reset operation. Which means that only the properties with default value
will be reset by editor.
This function is only called in editor mode.
Pause all animation states and all switching.
Switch to play specified animation state, without fading.
The name of the animation to be played, if absent, the default clip will be played
Removes all callbacks registered in a certain event type or all callbacks registered with a certain target
The event type or target with which the listeners will be removed
Remove clip from the animation list. This will remove the clip and any animation states based on it.
If there are animation states depend on the clip are playing or clip is defaultClip, it will not delete the clip.
But if force is true, then will always remove the clip and any animation states based on it. If clip is defaultClip, defaultClip will be reset to null
If force is true, then will always remove the clip and any animation states based on it.
Stops and removes specified clip.
The name of the animation state
Called to initialize the component or node’s properties when adding the component the first time or when the Reset command is used.
This function is only called in editor.
Resume all animation states and all switching.
Schedules a custom selector.
If the selector is already scheduled, then the interval parameter will be updated without scheduling it again.
回调函数。
时间间隔,0 表示每帧都重复。
将被重复执行(repeat+ 1)次,您可以使用 cc.macro.REPEAT_FOREVER 进行无限次循环。
第一次执行前等待的时间(延时执行)。
Schedules a callback function that runs only once, with a delay of 0 or larger.
回调函数。
第一次执行前等待的时间(延时执行)。
Stop all animation states and all switching.
Removes all callbacks previously registered with the same target (passed as parameter). This is not for removing all listeners in the current event target, and this is not for removing all listeners the target parameter have registered. It's only for removing all listeners (callback and target couple) registered on the current event target by the target parameter.
The target to be searched for all related listeners
Unschedules a custom callback function.
回调函数。
unschedule all scheduled callback functions: custom callback functions, and the 'update' callback function.
Actions are not affected by this method.
Update is called every frame, if the Component is enabled.
This is a lifecycle method. It may not be implemented in the super class.
You can only call its super class method inside it. It should not be called manually elsewhere.
the delta time in seconds it took to complete the last frame
Generated using TypeDoc
Animation component governs a group of animation states to control playback of the states. For convenient, it stores a group of animation clips. Each of those clips would have an associated animation state uniquely created. Animation component is eventful, it dispatch a serials playback status events. See EventType.