Skeleton 类型

继承于 _RendererUnderSG

模块: sp

Spine 骨骼动画

(Skeleton 具有对骨骼数据的引用并且存储了骨骼实例的状态, 它由当前的骨骼动作,slot 颜色,和可见的 slot attachments 组成。
多个 Skeleton 可以使用相同的骨骼数据,其中包括所有的动画,皮肤和 attachments。

索引

属性(properties)
  • paused Boolean 该骨骼动画是否暂停。
  • skeletonData SkeletonData 骨骼数据包含了骨骼信息(绑定骨骼动作,slots,渲染顺序, attachments,皮肤等等)和动画但不持有任何状态。
    多个 Skeleton 可以共用相同的骨骼数据。
  • defaultSkin String 默认的皮肤名称。
  • defaultAnimation String 默认的动画名称。
  • animation String 当前播放的动画名称。
  • _defaultSkinIndex Number
  • loop Boolean 是否循环播放当前骨骼动画。
  • premultipliedAlpha Boolean 是否启用贴图预乘。 当图片的透明区域出现色块时需要关闭该选项,当图片的半透明区域颜色变黑时需要启用该选项。
  • timeScale Number 当前骨骼中所有动画的时间缩放率。
  • debugSlots Boolean 是否显示 slot 的 debug 信息。
  • debugBones Boolean 是否显示 bone 的 debug 信息。
  • _sgNode _ccsg.Node Reference to the instance of _ccsg.Node If it is possible to return null from your overloaded _createSgNode, then you should always check for null before using this property and reimplement __preload.
  • __eventTargets Array Register all related EventTargets, all event callbacks will be removed in _onPreDestroy
  • node Node 该组件被附加到的节点。组件总会附加到一个节点。
  • uuid String 组件的 uuid,用于编辑器。
  • _enabled Boolean
  • enabled Boolean 表示该组件自身是否启用。
  • enabledInHierarchy Boolean 表示该组件是否被启用并且所在的节点也处于激活状态。
  • _isOnLoadCalled Number 返回一个值用来判断 onLoad 是否被调用过,不等于 0 时调用过,等于 0 时未调用。
  • _name String
  • _objFlags Number
  • name String 该对象的名称。
  • isValid Boolean 表示该对象是否可用(被销毁后将不可用)。
方法
  • updateWorldTransform 重新更新所有骨骼的世界 Transform, 当获取 bone 的数值未更新时,即可使用该函数进行更新数值。
  • setToSetupPose 还原到起始动作
  • setBonesToSetupPose 设置 bone 到起始动作 使用 SkeletonData 中的 BoneData 列表中的值。
  • setSlotsToSetupPose 设置 slot 到起始动作。 使用 SkeletonData 中的 SlotData 列表中的值。
  • findBone 通过名称查找 bone。 这里对每个 bone 的名称进行了对比。
    返回一个 sp.spine.Bone 对象。
  • findSlot 通过名称查找 slot。这里对每个 slot 的名称进行了比较。
    返回一个 sp.spine.Slot 对象。
  • setSkin 按名称查找皮肤,激活该皮肤。这里对每个皮肤的名称进行了比较。
    注意:设置皮肤不会改变 attachment 的可见性。
    返回一个 sp.spine.Skin 对象。
  • getAttachment 通过 slot 和 attachment 的名称获取 attachment。Skeleton 优先查找它的皮肤,然后才是 Skeleton Data 中默认的皮肤。
    返回一个 sp.spine.Attachment 对象。
  • setAttachment 通过 slot 和 attachment 的名字来设置 attachment。 Skeleton 优先查找它的皮肤,然后才是 Skeleton Data 中默认的皮肤。
  • setSkeletonData 设置底层运行时用到的 SkeletonData。
    这个接口有别于 skeletonData 属性,这个接口传入的是 Spine runtime 提供的原始数据,而 skeletonData 的类型是 Creator 提供的资源类型。
  • setAnimationStateData 设置动画状态数据。
    参数是 sp.spine.AnimationStateData。
  • setMix 为所有关键帧设定混合及混合时间(从当前值开始差值)。
  • setAnimationListener 设置动画事件监听器。
  • setAnimation 设置当前动画。队列中的任何的动画将被清除。
    返回一个 sp.spine.TrackEntry 对象。
  • addAnimation 添加一个动画到动画队列尾部,还可以延迟指定的秒数。
    返回一个 sp.spine.TrackEntry 对象。
  • findAnimation 查找指定名称的动画
  • getCurrent 通过 track 索引获取 TrackEntry。
    返回一个 sp.spine.TrackEntry 对象。
  • clearTracks 清除所有 track 的动画状态。
  • clearTrack 清除出指定 track 的动画状态。
  • setStartListener 用来设置开始播放动画的事件监听。
  • setInterruptListener 用来设置动画被打断的事件监听。
  • setEndListener 用来设置动画播放完后的事件监听。
  • setDisposeListener 用来设置动画将被销毁的事件监听。
  • setCompleteListener 用来设置动画播放一次循环结束后的事件监听。
  • setEventListener 用来设置动画播放过程中帧事件的监听。
  • setTrackStartListener 用来为指定的 TrackEntry 设置动画开始播放的事件监听。(只支持 Web 平台)
  • setTrackInterruptListener 用来为指定的 TrackEntry 设置动画被打断的事件监听。(只支持 Web 平台)
  • setTrackEndListener 用来为指定的 TrackEntry 设置动画播放结束的事件监听。(只支持 Web 平台)
  • setTrackDisposeListener 用来为指定的 TrackEntry 设置动画即将被销毁的事件监听。(只支持 Web 平台)
  • setTrackCompleteListener 用来为指定的 TrackEntry 设置动画一次循环播放结束的事件监听。(只支持 Web 平台)
  • setTrackEventListener 用来为指定的 TrackEntry 设置动画帧事件的监听。(只支持 Web 平台)
  • _createSgNode Create and returns your new scene graph node (SGNode) to add to scene graph. You should call the setContentSize of the SGNode if its size should be the same with the node's.
  • _initSgNode
  • _removeSgNode
  • update 如果该组件启用,则每帧调用 update。
  • lateUpdate 如果该组件启用,则每帧调用 LateUpdate。
  • __preload __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.
  • onLoad 当附加到一个激活的节点上或者其节点第一次激活时候调用。onLoad 总是会在任何 start 方法调用前执行,这能用于安排脚本的初始化顺序。
  • start 如果该组件第一次启用,则在所有组件的 update 之前调用。通常用于需要在所有组件的 onLoad 初始化完毕后执行的逻辑。
  • onEnable 当该组件被启用,并且它的节点也激活时。
  • onDisable 当该组件被禁用或节点变为无效时调用。
  • onDestroy 当该组件被销毁时调用
  • onFocusInEditor
  • onLostFocusInEditor
  • resetInEditor 用来初始化组件或节点的一些属性,当该组件被第一次添加到节点上或用户点击了它的 Reset 菜单时调用。这个回调只会在编辑器下调用。
  • addComponent 向节点添加一个组件类,你还可以通过传入脚本的名称来添加组件。
  • getComponent 获取节点上指定类型的组件,如果节点有附加指定类型的组件,则返回,如果没有则为空。
    传入参数也可以是脚本的名称。
  • getComponents 返回节点上指定类型的所有组件。
  • getComponentInChildren 递归查找所有子节点中第一个匹配指定类型的组件。
  • getComponentsInChildren 递归查找自身或所有子节点中指定类型的组件
  • _getLocalBounds 如果组件的包围盒与节点不同,您可以实现该方法以提供自定义的轴向对齐的包围盒(AABB), 以便编辑器的场景视图可以正确地执行点选测试。
  • onRestore onRestore 是用户在检查器菜单点击 Reset 时,对此组件执行撤消操作后调用的。

    如果组件包含了“内部状态”(不在 CCClass 属性中定义的临时成员变量),那么你可能需要实现该方法。

    编辑器执行撤销/重做操作时,将调用组件的 get set 来录制和还原组件的状态。 然而,在极端的情况下,它可能无法良好运作。
    那么你就应该实现这个方法,手动根据组件的属性同步“内部状态”。 一旦你实现这个方法,当用户撤销或重做时,组件的所有 get set 都不会再被调用。 这意味着仅仅指定了默认值的属性将被编辑器记录和还原。

    同样的,编辑可能无法在极端情况下正确地重置您的组件。
    于是如果你需要支持组件重置菜单,你需要在该方法中手工同步组件属性到“内部状态”。
    一旦你实现这个方法,组件的所有 get set 都不会在重置操作时被调用。 这意味着仅仅指定了默认值的属性将被编辑器重置。
    此方法仅在编辑器下会被调用。
  • schedule 调度一个自定义的回调函数。
    如果回调函数已调度,那么将不会重复调度它,只会更新时间间隔参数。
  • scheduleOnce 调度一个只运行一次的回调函数,可以指定 0 让回调函数在下一帧立即执行或者在一定的延时之后执行。
  • unschedule 取消调度一个自定义的回调函数。
  • unscheduleAllCallbacks 取消调度所有已调度的回调函数:定制的回调函数以及 'update' 回调函数。动作不受此方法影响。
  • destroy 销毁该对象,并释放所有它对其它对象的引用。
    销毁后,CCObject 不再可用。您可以在访问对象之前使用 cc.isValid(obj) 来检查对象是否已被销毁。 实际销毁操作会延迟到当前帧渲染前执行。
  • _destruct 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; } } }

  • _onPreDestroy Called before the object being destroyed.
  • _serialize The customized serialization for this object. (Editor Only)
  • _deserialize Init this object from the custom serialized data.

Details

属性(properties)

paused

该骨骼动画是否暂停。

meta description
类型 Boolean
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:102
skeletonData

骨骼数据包含了骨骼信息(绑定骨骼动作,slots,渲染顺序, attachments,皮肤等等)和动画但不持有任何状态。
多个 Skeleton 可以共用相同的骨骼数据。

meta description
类型 SkeletonData
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:130
defaultSkin

默认的皮肤名称。

meta description
类型 String
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:167
defaultAnimation

默认的动画名称。

meta description
类型 String
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:177
animation

当前播放的动画名称。

meta description
类型 String
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:187
_defaultSkinIndex
meta description
类型 Number
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:210
loop

是否循环播放当前骨骼动画。

meta description
类型 Boolean
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:308
premultipliedAlpha

是否启用贴图预乘。 当图片的透明区域出现色块时需要关闭该选项,当图片的半透明区域颜色变黑时需要启用该选项。

meta description
类型 Boolean
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:319
timeScale

当前骨骼中所有动画的时间缩放率。

meta description
类型 Number
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:342
debugSlots

是否显示 slot 的 debug 信息。

meta description
类型 Boolean
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:358
debugBones

是否显示 bone 的 debug 信息。

meta description
类型 Boolean
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:375
_sgNode

Reference to the instance of _ccsg.Node If it is possible to return null from your overloaded _createSgNode, then you should always check for null before using this property and reimplement __preload.

meta description
类型 _ccsg.Node
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCRendererUnderSG.js:41
__eventTargets

Register all related EventTargets, all event callbacks will be removed in _onPreDestroy

meta description
类型 Array
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:61
node

该组件被附加到的节点。组件总会附加到一个节点。

meta description
类型 Node
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:75
示例
cc.log(comp.node);
uuid

组件的 uuid,用于编辑器。

meta description
类型 String
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:111
示例
cc.log(comp.uuid);
_enabled
meta description
类型 Boolean
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:159
enabled

表示该组件自身是否启用。

meta description
类型 Boolean
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:166
示例
comp.enabled = true;
cc.log(comp.enabled);
enabledInHierarchy

表示该组件是否被启用并且所在的节点也处于激活状态。

meta description
类型 Boolean
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:197
示例
cc.log(comp.enabledInHierarchy);
_isOnLoadCalled

返回一个值用来判断 onLoad 是否被调用过,不等于 0 时调用过,等于 0 时未调用。

meta description
类型 Number
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:213
示例
cc.log(this._isOnLoadCalled > 0);
_name
meta description
类型 String
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/platform/CCObject.js:50
_objFlags
meta description
类型 Number
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/platform/CCObject.js:57
name

该对象的名称。

meta description
类型 String
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/platform/CCObject.js:208
示例
obj.name = "New Obj";
isValid

表示该对象是否可用(被销毁后将不可用)。

meta description
类型 Boolean
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/platform/CCObject.js:225
示例
cc.log(obj.isValid);

方法

updateWorldTransform

重新更新所有骨骼的世界 Transform, 当获取 bone 的数值未更新时,即可使用该函数进行更新数值。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:517
示例
var bone = spine.findBone('head');
cc.log(bone.worldX); // return 0;
spine.updateWorldTransform();
bone = spine.findBone('head');
cc.log(bone.worldX); // return -23.12;
setToSetupPose

还原到起始动作

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:535
setBonesToSetupPose

设置 bone 到起始动作 使用 SkeletonData 中的 BoneData 列表中的值。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:546
setSlotsToSetupPose

设置 slot 到起始动作。 使用 SkeletonData 中的 SlotData 列表中的值。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:561
findBone

通过名称查找 bone。 这里对每个 bone 的名称进行了对比。
返回一个 sp.spine.Bone 对象。

meta description
返回 sp.spine.Bone
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:576
参数列表
findSlot

通过名称查找 slot。这里对每个 slot 的名称进行了比较。
返回一个 sp.spine.Slot 对象。

meta description
返回 sp.spine.Slot
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:597
参数列表
setSkin

按名称查找皮肤,激活该皮肤。这里对每个皮肤的名称进行了比较。
注意:设置皮肤不会改变 attachment 的可见性。
返回一个 sp.spine.Skin 对象。

meta description
返回 sp.spine.Skin
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:616
参数列表
getAttachment

通过 slot 和 attachment 的名称获取 attachment。Skeleton 优先查找它的皮肤,然后才是 Skeleton Data 中默认的皮肤。
返回一个 sp.spine.Attachment 对象。

meta description
返回 sp.spine.Attachment
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:638
参数列表
setAttachment

通过 slot 和 attachment 的名字来设置 attachment。 Skeleton 优先查找它的皮肤,然后才是 Skeleton Data 中默认的皮肤。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:659
参数列表
setSkeletonData

设置底层运行时用到的 SkeletonData。
这个接口有别于 skeletonData 属性,这个接口传入的是 Spine runtime 提供的原始数据,而 skeletonData 的类型是 Creator 提供的资源类型。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:676
参数列表
  • skeletonData sp.spine.SkeletonData
  • ownsSkeletonData sp.spine.SkeletonData
setAnimationStateData

设置动画状态数据。
参数是 sp.spine.AnimationStateData。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:707
参数列表
  • stateData sp.spine.AnimationStateData
setMix

为所有关键帧设定混合及混合时间(从当前值开始差值)。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:721
参数列表
setAnimationListener

设置动画事件监听器。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:737
参数列表
setAnimation

设置当前动画。队列中的任何的动画将被清除。
返回一个 sp.spine.TrackEntry 对象。

meta description
返回 sp.spine.TrackEntry
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:750
参数列表
addAnimation

添加一个动画到动画队列尾部,还可以延迟指定的秒数。
返回一个 sp.spine.TrackEntry 对象。

meta description
返回 sp.spine.TrackEntry
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:779
参数列表
findAnimation

查找指定名称的动画

meta description
返回 sp.spine.Animation
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:798
参数列表
getCurrent

通过 track 索引获取 TrackEntry。
返回一个 sp.spine.TrackEntry 对象。

meta description
返回 sp.spine.TrackEntry
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:812
参数列表
  • trackIndex Unknown
clearTracks

清除所有 track 的动画状态。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:828
clearTrack

清除出指定 track 的动画状态。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:839
参数列表
setStartListener

用来设置开始播放动画的事件监听。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:873
参数列表
setInterruptListener

用来设置动画被打断的事件监听。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:886
参数列表
setEndListener

用来设置动画播放完后的事件监听。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:899
参数列表
setDisposeListener

用来设置动画将被销毁的事件监听。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:912
参数列表
setCompleteListener

用来设置动画播放一次循环结束后的事件监听。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:925
参数列表
setEventListener

用来设置动画播放过程中帧事件的监听。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:938
参数列表
setTrackStartListener

用来为指定的 TrackEntry 设置动画开始播放的事件监听。(只支持 Web 平台)

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:951
参数列表
  • entry sp.spine.TrackEntry
  • listener function
setTrackInterruptListener

用来为指定的 TrackEntry 设置动画被打断的事件监听。(只支持 Web 平台)

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:964
参数列表
  • entry sp.spine.TrackEntry
  • listener function
setTrackEndListener

用来为指定的 TrackEntry 设置动画播放结束的事件监听。(只支持 Web 平台)

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:977
参数列表
  • entry sp.spine.TrackEntry
  • listener function
setTrackDisposeListener

用来为指定的 TrackEntry 设置动画即将被销毁的事件监听。(只支持 Web 平台)

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:990
参数列表
  • entry sp.spine.TrackEntry
  • listener function
setTrackCompleteListener

用来为指定的 TrackEntry 设置动画一次循环播放结束的事件监听。(只支持 Web 平台)

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:1003
参数列表
  • entry sp.spine.TrackEntry
  • listener function
setTrackEventListener

用来为指定的 TrackEntry 设置动画帧事件的监听。(只支持 Web 平台)

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/extensions/spine/Skeleton.js:1016
参数列表
  • entry sp.spine.TrackEntry
  • listener function
_createSgNode

Create and returns your new scene graph node (SGNode) to add to scene graph. You should call the setContentSize of the SGNode if its size should be the same with the node's.

meta description
返回 _ccsg.Node
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCSGComponent.js:65
_initSgNode
meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCSGComponent.js:75
_removeSgNode
meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCSGComponent.js:81
update

如果该组件启用,则每帧调用 update。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:234
参数列表
  • dt Number the delta time in seconds it took to complete the last frame
lateUpdate

如果该组件启用,则每帧调用 LateUpdate。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:243
__preload

__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.

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:251
onLoad

当附加到一个激活的节点上或者其节点第一次激活时候调用。onLoad 总是会在任何 start 方法调用前执行,这能用于安排脚本的初始化顺序。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:262
start

如果该组件第一次启用,则在所有组件的 update 之前调用。通常用于需要在所有组件的 onLoad 初始化完毕后执行的逻辑。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:273
onEnable

当该组件被启用,并且它的节点也激活时。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:284
onDisable

当该组件被禁用或节点变为无效时调用。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:292
onDestroy

当该组件被销毁时调用

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:300
onFocusInEditor
meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:308
onLostFocusInEditor
meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:313
resetInEditor

用来初始化组件或节点的一些属性,当该组件被第一次添加到节点上或用户点击了它的 Reset 菜单时调用。这个回调只会在编辑器下调用。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:318
addComponent

向节点添加一个组件类,你还可以通过传入脚本的名称来添加组件。

meta description
返回 Component
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:328
参数列表
  • typeOrClassName Function | String the constructor or the class name of the component to add
示例
var sprite = node.addComponent(cc.Sprite);
var test = node.addComponent("Test");
getComponent

获取节点上指定类型的组件,如果节点有附加指定类型的组件,则返回,如果没有则为空。
传入参数也可以是脚本的名称。

meta description
返回 Component
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:346
参数列表
示例
// get sprite component.
var sprite = node.getComponent(cc.Sprite);
// get custom test calss.
var test = node.getComponent("Test");
getComponents

返回节点上指定类型的所有组件。

meta description
返回 Component[]
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:370
参数列表
示例
var sprites = node.getComponents(cc.Sprite);
var tests = node.getComponents("Test");
getComponentInChildren

递归查找所有子节点中第一个匹配指定类型的组件。

meta description
返回 Component
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:388
参数列表
示例
var sprite = node.getComponentInChildren(cc.Sprite);
var Test = node.getComponentInChildren("Test");
getComponentsInChildren

递归查找自身或所有子节点中指定类型的组件

meta description
返回 Component[]
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:406
参数列表
示例
var sprites = node.getComponentsInChildren(cc.Sprite);
var tests = node.getComponentsInChildren("Test");
_getLocalBounds

如果组件的包围盒与节点不同,您可以实现该方法以提供自定义的轴向对齐的包围盒(AABB), 以便编辑器的场景视图可以正确地执行点选测试。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:426
参数列表
  • out_rect Rect the Rect to receive the bounding box
onRestore

onRestore 是用户在检查器菜单点击 Reset 时,对此组件执行撤消操作后调用的。

如果组件包含了“内部状态”(不在 CCClass 属性中定义的临时成员变量),那么你可能需要实现该方法。

编辑器执行撤销/重做操作时,将调用组件的 get set 来录制和还原组件的状态。 然而,在极端的情况下,它可能无法良好运作。
那么你就应该实现这个方法,手动根据组件的属性同步“内部状态”。 一旦你实现这个方法,当用户撤销或重做时,组件的所有 get set 都不会再被调用。 这意味着仅仅指定了默认值的属性将被编辑器记录和还原。

同样的,编辑可能无法在极端情况下正确地重置您的组件。
于是如果你需要支持组件重置菜单,你需要在该方法中手工同步组件属性到“内部状态”。
一旦你实现这个方法,组件的所有 get set 都不会在重置操作时被调用。 这意味着仅仅指定了默认值的属性将被编辑器重置。
此方法仅在编辑器下会被调用。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:439
schedule

调度一个自定义的回调函数。
如果回调函数已调度,那么将不会重复调度它,只会更新时间间隔参数。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:541
参数列表
  • callback function The callback function
  • interval Number Tick interval in seconds. 0 means tick every frame.
  • repeat Number The selector will be executed (repeat + 1) times, you can use cc.macro.REPEAT_FOREVER for tick infinitely.
  • delay Number The amount of time that the first tick will wait before execution.
示例
var timeCallback = function (dt) {
  cc.log("time: " + dt);
}
this.schedule(timeCallback, 1);
scheduleOnce

调度一个只运行一次的回调函数,可以指定 0 让回调函数在下一帧立即执行或者在一定的延时之后执行。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:578
参数列表
  • callback function A function wrapped as a selector
  • delay Number The amount of time that the first tick will wait before execution.
示例
var timeCallback = function (dt) {
  cc.log("time: " + dt);
}
this.scheduleOnce(timeCallback, 2);
unschedule

取消调度一个自定义的回调函数。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:595
参数列表
  • callback_fn function A function wrapped as a selector
示例
this.unschedule(_callback);
unscheduleAllCallbacks

取消调度所有已调度的回调函数:定制的回调函数以及 'update' 回调函数。动作不受此方法影响。

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/components/CCComponent.js:611
示例
this.unscheduleAllCallbacks();
destroy

销毁该对象,并释放所有它对其它对象的引用。
销毁后,CCObject 不再可用。您可以在访问对象之前使用 cc.isValid(obj) 来检查对象是否已被销毁。 实际销毁操作会延迟到当前帧渲染前执行。

meta description
返回 Boolean
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/platform/CCObject.js:246
示例
obj.destroy();
_destruct

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; } } }

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/platform/CCObject.js:379
_onPreDestroy

Called before the object being destroyed.

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/platform/CCObject.js:412
_serialize

The customized serialization for this object. (Editor Only)

meta description
返回 object
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/platform/CCObject.js:437
参数列表
_deserialize

Init this object from the custom serialized data.

meta description
定义于 https:/github.com/cocos-creator/engine/blob/master/cocos2d/core/platform/CCObject.js:447
参数列表
  • data Object the serialized json data
  • ctx _Deserializer

条与 "" 相匹配的结果

    没有与 "" 匹配的结果