类: SpriteFrame
extend:
translate
导入示例:
import { SpriteFrame } from "cc";
精灵帧资源。 一个 SpriteFrame 支持多种类型
- 矩形精灵帧
- 九宫格精灵帧
- 网格精灵帧
它主要包含下列数据:
- 纹理:会被渲染流程使用的
TextureBase
资源。 - 矩形:在纹理中的矩形区域。
- 九宫格信息:九宫格的内部矩形四个边距离 SpriteFrame 外部矩形的距离。
- 网格信息:网格类型精灵帧的所有顶点列表。
- uv: 四边形 UV。
- uvSliced: 九宫格 UV。
可通过
SpriteFrame
获取该组件。
example
import { resources } from 'cc';
// First way to use a SpriteFrame
const url = "assets/PurpleMonster/icon/spriteFrame";
resources.load(url, (err, spriteFrame) => {
const node = new Node("New Sprite");
const sprite = node.addComponent(Sprite);
sprite.spriteFrame = spriteFrame;
node.parent = self.node;
});
// Second way to use a SpriteFrame
const self = this;
const url = "test_assets/PurpleMonster";
resources.load(url, (err, imageAsset) => {
if(err){
return;
}
const node = new Node("New Sprite");
const sprite = node.addComponent(Sprite);
const spriteFrame = new SpriteFrame();
const tex = imageAsset._texture;
spriteFrame.texture = tex;
sprite.spriteFrame = spriteFrame;
node.parent = self.node;
});
// Third way to use a SpriteFrame
const self = this;
const cameraComp = this.getComponent(Camera);
const renderTexture = new RenderTexture();
renderTexture.reset({
width: 512,
height: 512,
depthStencilFormat: RenderTexture.DepthStencilFormat.DEPTH_24_STENCIL_8
});
cameraComp.targetTexture = renderTexture;
const spriteFrame = new SpriteFrame();
spriteFrame.texture = renderTexture;
索引
构造函数
-
SpriteFrame
public
静态属性
-
MeshType
static
-
EVENT_UV_UPDATED
static
uv 更新事件。
静态方法
-
createWithImage
static
通过 Image 资源或者平台相关 Image 对象创建一个 SpriteFrame 资源。
属性
-
width
public
精灵帧的像素宽度。
-
trimmedBorder
public
-
texture
public
贴图对象资源,可以是 TextureBase 类型。
-
rotated
public
是否旋转。
-
rect
public
获取 SpriteFrame 的纹理矩形区域。如果是一个 atlas 的贴图,则为当前贴图的实际剔除透明像素区域。
-
pixelsToUnit
public
世界空间中的单位大小对应的像素数量(像素每单位)。
-
pivot
public
生成 mesh 时本地坐标原点位置。
-
packable
public
设置精灵是否允许参与自动合图。
-
originalSize
public
修剪前的原始大小。
-
original
public
精灵自动合图之前的原始 texture 和宽高信息。在参与自动合图之前此值为 null。
-
offset
public
精灵帧偏移量。在图集中的精灵帧可能会被剔除透明像素以获得更高的空间利用李,剔除后的矩形尺寸比剪裁前更小,偏移量指的是从原始矩形的中心到剪裁后的矩形中心的距离。
-
mesh
public
mesh 信息,你应该在使用它之前调用 ensureMeshData 函数来确保其可用。
-
insetTop
public
九宫格内部矩形顶部边框距离 SpriteFrame 矩形的距离。
-
insetRight
public
九宫格内部矩形右边框距离 SpriteFrame 矩形的距离。
-
insetLeft
public
九宫格内部矩形左边框距离 SpriteFrame 矩形的距离。
-
insetBottom
public
九宫格内部矩形底部边框距离 SpriteFrame 矩形的距离。
-
height
public
精灵帧的像素高度。
-
flipUVY
public
沿 Y 轴方向, 翻转 UV。
-
flipUVX
public
沿 X 轴方向, 翻转 UV。
-
atlasUuid
public
图集资源的 uuid。
-
vertices
public
网格类型精灵帧的所有顶点列表。
-
uvSliced
public
九宫格的顶点 UV。
-
uv
public
矩形的顶点 UV。
-
unbiasUV
public
-
_atlasUuid
protected
-
_capInsets
protected
-
_customOutLine
protected
-
_extrude
protected
-
_isFlipUVX
protected
-
_isFlipUVY
protected
-
_maxPos
protected
-
_mesh
protected
-
_meshType
protected
-
_minPos
protected
-
_offset
protected
-
_original
protected
-
_originalSize
protected
-
_packable
protected
-
_pivot
protected
-
_pixelsToUnit
protected
-
_rect
protected
-
_rotated
protected
-
_texture
protected
-
_trimmedBorder
protected
-
_textureSource
protected
方法
-
textureLoaded
public
返回是否已加载精灵帧。
-
setRotated
public
设置 SpriteFrame 是否旋转。
-
setRect
public
设置 SpriteFrame 的纹理矩形区域。
-
setOriginalSize
public
设置修剪前的原始大小。
-
setOffset
public
设置偏移量。
-
reset
public
重置 SpriteFrame 数据。
-
isRotated
public
获取 SpriteFrame 是否旋转。
-
getSamplerInfo
public
贴图资源的采样器哈希值。
-
getRect
public
获取 SpriteFrame 的纹理矩形区域。如果是一个 atlas 的贴图,则为当前贴图的实际剔除透明像素区域。
-
getOriginalSize
public
获取修剪前的原始大小。
-
getOffset
public
获取偏移量。
-
getHash
public
贴图资源的哈希值。
-
getGFXTexture
public
获取渲染贴图的 GFX 资源。
-
getGFXSampler
public
贴图资源的采样器。
-
ensureMeshData
public
确保 mesh 可用,你应该在使用 mesh 之前调用它。
-
clone
public
克隆当前 sprite frame。
-
checkRect
public
判断精灵计算的矩形区域是否越界。
-
_calcTrimmedBorder
protected
-
_calculateSlicedUV
protected
-
_calculateUV
protected
-
_checkPackable
protected
-
_createMesh
protected
-
_deserialize
protected
-
_initVertices
protected
-
_refreshTexture
protected
-
_resetDynamicAtlasFrame
protected
-
_serialize
protected
-
_setDynamicAtlasFrame
protected
-
_updateMesh
protected
-
_updateMeshVertices
protected
继承属性
-
uuid
public
资源的 UUID。
-
replicated
public
-
refCount
public
当前该资源被引用的数量。
-
nativeUrl
public
返回该资源对应的目标平台资源的 URL,如果此资源没有原生依赖将返回一个空字符串。
-
name
public
该对象的名称。
-
isValid
public
表示该对象是否可用(被 destroy 后将不可用)。
当一个对象的 destroy 调用以后,会在这一帧结束后才真正销毁。
因此从下一帧开始 isValid 就会返回 false,而当前帧内 isValid 仍然会是 true。
如果希望判断当前帧是否调用过 destroy,请使用 isValid(obj, true),不过这往往是特殊的业务需求引起的,通常情况下不需要这样。
当一个对象的 destroy 调用以后,会在这一帧结束后才真正销毁。
因此从下一帧开始 isValid 就会返回 false,而当前帧内 isValid 仍然会是 true。
如果希望判断当前帧是否调用过 destroy,请使用 isValid(obj, true),不过这往往是特殊的业务需求引起的,通常情况下不需要这样。
-
hideFlags
public
在继承 CCObject 对象后,控制是否需要隐藏,锁定,序列化等功能。
-
loaded
public
该资源是否已经成功加载。
-
isDefault
public
表明此资源是否是默认资源。
-
__editorExtras__
protected
-
_name
protected
-
_native
protected
用于本机资产的可序列化URL。供内部使用。
-
_nativeUrl
protected
原生依赖的路径。
-
_objFlags
protected
-
_uuid
protected
资源的 UUID。
-
_nativeAsset
protected
此资源的基础资源(如果有)。 此属性可用于访问与资源相关的其他详细信息或功能。
如果_native可用,则此属性将由加载器初始化。
如果_native可用,则此属性将由加载器初始化。
-
_nativeDep
protected
获取原生依赖信息。
继承方法
-
deserialize
static
-
validate
public
检查当前 sprite frame 对象是否是有效的。
-
toString
public
返回对象的字符串表示形式。
Asset 对象将会重写 Object 对象的 toString() 方法。
当资源要表示为文本值时或在字符串连接时引用时,
JavaScript 会自动调用 toString() 方法。
对于原始类型的资源,它将返回this.nativeUrl。
否则,返回空字符串。
子类可能会覆盖此方法。
Asset 对象将会重写 Object 对象的 toString() 方法。
当资源要表示为文本值时或在字符串连接时引用时,
JavaScript 会自动调用 toString() 方法。
对于原始类型的资源,它将返回this.nativeUrl。
否则,返回空字符串。
子类可能会覆盖此方法。
-
targetOff
public
在当前 EventTarget 上删除指定目标(target 参数)注册的所有事件监听器。这个函数无法删除当前 EventTarget 的所有事件监听器,也无法删除 target 参数所注册的所有事件监听器。这个函数只能删除 target 参数在当前 EventTarget 上注册的所有事件监听器。
-
removeAll
public
移除在特定事件类型中注册的所有回调或在某个目标中注册的所有回调。
-
once
public
注册事件目标的特定事件类型回调,回调会在第一时间被触发后删除自身。
-
onLoaded
public
加载完成回调。
-
on
public
注册事件目标的特定事件类型回调。这种类型的事件应该被 emit 触发。
-
off
public
删除之前用同类型,回调,目标或 useCapture 注册的事件监听器,如果只传递 type,将会删除 type 类型的所有事件监听器。
-
initDefault
public
默认初始化。
-
hasEventListener
public
检查指定事件是否已注册回调。
-
emit
public
派发一个指定事件,并传递需要的参数
-
destroy
public
-
decRef
public
减少资源的引用,如果引用数量为 0,则将自动释放该资源。
-
createNode
public
使用该资源在场景中创建一个新节点。
如果这类资源没有相应的节点类型,该方法应该是空的。
如果这类资源没有相应的节点类型,该方法应该是空的。
-
_destroyImmediate
protected
-
_destruct
protected
清理实例的所有引用注意:此方法不会清理实例上的 getter 与 setter 方法。
-
_setRawAsset
protected
为此资源设置原始文件名。
-
serialize
public
详情
构造函数
public SpriteFrame () : SpriteFrame
返回值: SpriteFrame
静态属性
public MeshType : typeof MeshType
default: MeshType
static
Defined in
cocos/2d/assets/sprite-frame.ts:266
uv 更新事件。
Defined in
cocos/2d/assets/sprite-frame.ts:265
静态方法
public createWithImage (imageSourceOrImageAsset : ImageSource | ImageAsset) : SpriteFrame
static
通过 Image 资源或者平台相关 Image 对象创建一个 SpriteFrame 资源。
输入参数
名称 | 类型 | 描述 |
---|---|---|
imageSourceOrImageAsset | ImageSource | ImageAsset | 图像资源或图像原始图像源,图像原始图像源支持 HTMLCanvasElement HTMLImageElement IMemoryImageSource 三种资源。 |
返回值: SpriteFrame
Defined in
cocos/2d/assets/sprite-frame.ts:252
属性
public trimmedBorder : shadowEnabled
deprecated
Deprecated: since v3.7.0, this is an engine private interface that will be removed in the future.
Defined in
cocos/2d/assets/sprite-frame.ts:557
public texture : TextureBase
贴图对象资源,可以是 `TextureBase` 类型。
Defined in
cocos/2d/assets/sprite-frame.ts:425
public rect : Rect
获取 SpriteFrame 的纹理矩形区域。
如果是一个 atlas 的贴图,则为当前贴图的实际剔除透明像素区域。
Defined in
cocos/2d/assets/sprite-frame.ts:350
public pixelsToUnit : number
世界空间中的单位大小对应的像素数量(像素每单位)。
Defined in
cocos/2d/assets/sprite-frame.ts:534
精灵自动合图之前的原始 texture 和宽高信息。在参与自动合图之前此值为 null。
Defined in
cocos/2d/assets/sprite-frame.ts:526
public offset : Vec2
精灵帧偏移量。
在图集中的精灵帧可能会被剔除透明像素以获得更高的空间利用李,剔除后的矩形尺寸比剪裁前更小,偏移量指的是从原始矩形的中心到剪裁后的矩形中心的距离。
Defined in
cocos/2d/assets/sprite-frame.ts:393
mesh 信息,你应该在使用它之前调用 ensureMeshData 函数来确保其可用。
Defined in
cocos/2d/assets/sprite-frame.ts:550
public insetTop : number
九宫格内部矩形顶部边框距离 SpriteFrame 矩形的距离。
Defined in
cocos/2d/assets/sprite-frame.ts:272
public insetRight : number
九宫格内部矩形右边框距离 SpriteFrame 矩形的距离。
Defined in
cocos/2d/assets/sprite-frame.ts:329
public insetLeft : number
九宫格内部矩形左边框距离 SpriteFrame 矩形的距离。
Defined in
cocos/2d/assets/sprite-frame.ts:310
public insetBottom : number
九宫格内部矩形底部边框距离 SpriteFrame 矩形的距离。
Defined in
cocos/2d/assets/sprite-frame.ts:291
网格类型精灵帧的所有顶点列表。
Defined in
cocos/2d/assets/sprite-frame.ts:565
public unbiasUV : number []
default: []
deprecated
Deprecated: since v3.7.0, this is an engine private interface that will be removed in the future.
Defined in
cocos/2d/assets/sprite-frame.ts:576
Defined in
cocos/2d/assets/sprite-frame.ts:599
Defined in
cocos/2d/assets/sprite-frame.ts:597
protected _customOutLine : never []
default: []
Defined in
cocos/2d/assets/sprite-frame.ts:623
Defined in
cocos/2d/assets/sprite-frame.ts:622
Defined in
cocos/2d/assets/sprite-frame.ts:605
Defined in
cocos/2d/assets/sprite-frame.ts:603
protected _maxPos : baked
Defined in
cocos/2d/assets/sprite-frame.ts:636
Defined in
cocos/2d/assets/sprite-frame.ts:634
protected _meshType : MeshType
default: MeshType.RECT
Defined in
cocos/2d/assets/sprite-frame.ts:621
protected _minPos : baked
Defined in
cocos/2d/assets/sprite-frame.ts:635
protected _offset : Vec2
Defined in
cocos/2d/assets/sprite-frame.ts:590
Defined in
cocos/2d/assets/sprite-frame.ts:608
protected _originalSize : Size
Defined in
cocos/2d/assets/sprite-frame.ts:593
Defined in
cocos/2d/assets/sprite-frame.ts:614
protected _pivot : Vec2
Defined in
cocos/2d/assets/sprite-frame.ts:618
Defined in
cocos/2d/assets/sprite-frame.ts:616
protected _rect : Rect
Defined in
cocos/2d/assets/sprite-frame.ts:585
Defined in
cocos/2d/assets/sprite-frame.ts:595
protected _texture : TextureBase
Defined in
cocos/2d/assets/sprite-frame.ts:601
protected _trimmedBorder : shadowEnabled
Defined in
cocos/2d/assets/sprite-frame.ts:587
protected _textureSource
Defined in
cocos/2d/assets/sprite-frame.ts:473
方法
public textureLoaded () : boolean
deprecated
Deprecated: since v3.3, Useless Code.
返回是否已加载精灵帧。
返回值: boolean
Defined in
cocos/2d/assets/sprite-frame.ts:655
Defined in
cocos/2d/assets/sprite-frame.ts:678
Defined in
cocos/2d/assets/sprite-frame.ts:706
Defined in
cocos/2d/assets/sprite-frame.ts:732
Defined in
cocos/2d/assets/sprite-frame.ts:758
重置 SpriteFrame 数据。
Defined in
cocos/2d/assets/sprite-frame.ts:804
public isRotated () : boolean
deprecated
Deprecated: since v1.2, please use rotated instead.
获取 SpriteFrame 是否旋转。
返回值: boolean
Defined in
cocos/2d/assets/sprite-frame.ts:666
Defined in
cocos/2d/assets/sprite-frame.ts:794
public getRect (out ?: Rect) : Rect
deprecated
Deprecated: since v1.2, please use rect.
获取 SpriteFrame 的纹理矩形区域。
如果是一个 atlas 的贴图,则为当前贴图的实际剔除透明像素区域。
输入参数
名称 | 类型 | 描述 |
---|---|---|
out | Rect | 输出的矩形区域。 |
返回值: Rect
Defined in
cocos/2d/assets/sprite-frame.ts:691
public getOriginalSize (out ?: Size) : Size
deprecated
Deprecated: since v1.2, please use originalSize.
获取修剪前的原始大小。
输入参数
名称 | 类型 | 描述 |
---|---|---|
out | Size | 输出的原始大小。 |
返回值: Size
Defined in
cocos/2d/assets/sprite-frame.ts:717
public getOffset (out ?: Vec2) : Vec2
deprecated
Deprecated: since v1.2, please use offset
获取偏移量。
输入参数
名称 | 类型 | 描述 |
---|---|---|
out | Vec2 | 输出的偏移量。 |
返回值: Vec2
Defined in
cocos/2d/assets/sprite-frame.ts:743
Defined in
cocos/2d/assets/sprite-frame.ts:785
Defined in
cocos/2d/assets/sprite-frame.ts:767
Defined in
cocos/2d/assets/sprite-frame.ts:776
Defined in
cocos/2d/assets/sprite-frame.ts:921
public clone () : SpriteFrame
克隆当前 sprite frame。
返回值: SpriteFrame
Defined in
cocos/2d/assets/sprite-frame.ts:1413
判断精灵计算的矩形区域是否越界。
Defined in
cocos/2d/assets/sprite-frame.ts:875
Defined in
cocos/2d/assets/sprite-frame.ts:900
protected _calculateSlicedUV () : void
deprecated
Deprecated: since v3.5.0, this is an engine private interface that will be removed in the future.
Calculate UV for sliced
返回值: void
Defined in
cocos/2d/assets/sprite-frame.ts:939
protected _calculateUV () : void
deprecated
Deprecated: since v3.5.0, this is an engine private interface that will be removed in the future.
Calculate UV
返回值: void
Defined in
cocos/2d/assets/sprite-frame.ts:1005
Defined in
cocos/2d/assets/sprite-frame.ts:1259
Defined in
cocos/2d/assets/sprite-frame.ts:1609
deprecated
Defined in
cocos/2d/assets/sprite-frame.ts:1341
Defined in
cocos/2d/assets/sprite-frame.ts:1505
Defined in
cocos/2d/assets/sprite-frame.ts:1443
Defined in
cocos/2d/assets/sprite-frame.ts:1247
protected _serialize (ctxForExporting : any) : any
deprecated
输入参数
名称 | 类型 | 描述 |
---|---|---|
ctxForExporting | any | - |
返回值: any
Defined in
cocos/2d/assets/sprite-frame.ts:1286
Defined in
cocos/2d/assets/sprite-frame.ts:1229
Defined in
cocos/2d/assets/sprite-frame.ts:1631
Defined in
cocos/2d/assets/sprite-frame.ts:1587
继承属性
Defined in
cocos/core/data/object.ts:247
返回该资源对应的目标平台资源的 URL,如果此资源没有原生依赖将返回一个空字符串。
Defined in
cocos/asset/assets/asset.ts:132
表示该对象是否可用(被 destroy 后将不可用)。
当一个对象的 `destroy` 调用以后,会在这一帧结束后才真正销毁。
因此从下一帧开始 `isValid` 就会返回 false,而当前帧内 `isValid` 仍然会是 true。
如果希望判断当前帧是否调用过 `destroy`,请使用 `isValid(obj, true)`,不过这往往是特殊的业务需求引起的,通常情况下不需要这样。
当一个对象的 `destroy` 调用以后,会在这一帧结束后才真正销毁。
因此从下一帧开始 `isValid` 就会返回 false,而当前帧内 `isValid` 仍然会是 true。
如果希望判断当前帧是否调用过 `destroy`,请使用 `isValid(obj, true)`,不过这往往是特殊的业务需求引起的,通常情况下不需要这样。
示例
import { Node, log } from 'cc';
const node = new Node();
log(node.isValid); // true
node.destroy();
log(node.isValid); // true, still valid in this frame
// after a frame...
log(node.isValid); // false, destroyed in the end of last frame
Defined in
cocos/core/data/object.ts:284
public hideFlags : Flags
继承自:Asset.hideFlags
在继承 CCObject 对象后,控制是否需要隐藏,锁定,序列化等功能。
Defined in
cocos/core/data/object.ts:239
该资源是否已经成功加载。
Defined in
cocos/asset/assets/asset.ts:76
public isDefault : boolean
deprecated
继承自:Asset.isDefault
Deprecated: Since v3.7, this is an internal engine interface and you should not call this interface under any circumstances.
表明此资源是否是默认资源。
Defined in
cocos/asset/assets/asset.ts:98
protected __editorExtras__ : unknown
继承自:Asset.__editorExtras__
Defined in
cocos/core/data/object.ts:195
Defined in
cocos/core/data/object.ts:201
protected _native : string
default: ''
deprecated
继承自:Asset._native
Deprecated: since v3.5.0, this is an engine private interface that will be removed in the future.
用于本机资产的可序列化URL。供内部使用。
Defined in
cocos/asset/assets/asset.ts:110
protected _nativeUrl : string
default: ''
deprecated
继承自:Asset._nativeUrl
Deprecated: since v3.5.0, this is an engine private interface that will be removed in the future.
原生依赖的路径。
Defined in
cocos/asset/assets/asset.ts:120
Defined in
cocos/core/data/object.ts:200
protected _uuid : string
deprecated
继承自:lookAt
Deprecated: since v3.5.0, this is an engine private interface that will be removed in the future, please use uuid instead.
资源的 UUID。
Defined in
cocos/asset/assets/asset.ts:87
protected _nativeAsset : any
deprecated
继承自:Asset._nativeAsset
Deprecated: since v3.5.0, this is an engine private interface that will be removed in the future.
此资源的基础资源(如果有)。 此属性可用于访问与资源相关的其他详细信息或功能。
如果`_native`可用,则此属性将由加载器初始化。
如果`_native`可用,则此属性将由加载器初始化。
Defined in
cocos/asset/assets/asset.ts:175
protected _nativeDep : undefined | {
__isNative__ : boolean
ext : string
uuid : string
} deprecated
继承自:Asset._nativeDep
Deprecated: Since v3.7, this is an internal engine interface and you should not call this interface under any circumstances.
获取原生依赖信息。
Defined in
cocos/asset/assets/asset.ts:276
继承方法
public deserialize (data : any) : any
static
继承自:Vec3
应 AssetDB 要求提供这个方法。
输入参数
名称 | 类型 | 描述 |
---|---|---|
data | any | - |
返回值: any
Defined in
cocos/asset/assets/asset.ts:63
public validate () : boolean
deprecated
Deprecated: since v3.7.0, this is an engine private interface that will be removed in the future.
检查当前 sprite frame 对象是否是有效的。
返回值: boolean
Defined in
cocos/2d/assets/sprite-frame.ts:1501
public toString () : string
继承自:Asset.toString
返回对象的字符串表示形式。
`Asset` 对象将会重写 `Object` 对象的 `toString()` 方法。
当资源要表示为文本值时或在字符串连接时引用时,
JavaScript 会自动调用 toString() 方法。
对于原始类型的资源,它将返回`this.nativeUrl`。
否则,返回空字符串。
子类可能会覆盖此方法。
`Asset` 对象将会重写 `Object` 对象的 `toString()` 方法。
当资源要表示为文本值时或在字符串连接时引用时,
JavaScript 会自动调用 toString() 方法。
对于原始类型的资源,它将返回`this.nativeUrl`。
否则,返回空字符串。
子类可能会覆盖此方法。
返回值: string
Defined in
cocos/asset/assets/asset.ts:222
继承自:Asset.targetOff
在当前 EventTarget 上删除指定目标(target 参数)注册的所有事件监听器。
这个函数无法删除当前 EventTarget 的所有事件监听器,也无法删除 target 参数所注册的所有事件监听器。
这个函数只能删除 target 参数在当前 EventTarget 上注册的所有事件监听器。
public once <TFunction extends > (type : EventType, callback : TFunction, thisArg ?: any) : TFunction
继承自:getWorldMatrix
注册事件目标的特定事件类型回调,回调会在第一时间被触发后删除自身。
输入参数
名称 | 类型 | 描述 |
---|---|---|
type | EventType | A string representing the event type to listen for. |
callback | TFunction | The callback that will be invoked when the event is dispatched. The callback is ignored if it is a duplicate (the callbacks are unique). |
thisArg | any | - |
返回值: TFunction
示例
import { log } from 'cc';
eventTarget.once('fire', function () {
log("this is the callback and will be invoked only once");
}, node);
public onLoaded () : void
deprecated
Deprecated: since v3.7.0, this is an engine private interface that will be removed in the future.
加载完成回调。
返回值: void
Defined in
cocos/2d/assets/sprite-frame.ts:1477
public on <TFunction extends > (type : EventType, callback : TFunction, thisArg ?: any, once ?: boolean) : TFunction
继承自:setWorldScale
注册事件目标的特定事件类型回调。这种类型的事件应该被 `emit` 触发。
输入参数
名称 | 类型 | 描述 |
---|---|---|
type | EventType | A string representing the event type to listen for. |
callback | TFunction | The callback that will be invoked when the event is dispatched. The callback is ignored if it is a duplicate (the callbacks are unique). |
thisArg | any | The target (this object) to invoke the callback, can be null |
once | boolean | - |
返回值: TFunction
示例
import { log } from 'cc';
eventTarget.on('fire', function () {
log("fire in the hole");
}, node);
继承自:setRTS
删除之前用同类型,回调,目标或 useCapture 注册的事件监听器,如果只传递 type,将会删除 type 类型的所有事件监听器。
输入参数
名称 | 类型 | 描述 |
---|---|---|
type | EventType | A string representing the event type being removed. |
callback | TFunction | The callback to remove. |
thisArg | any | - |
返回值: void
示例
import { log } from 'cc';
// register fire eventListener
var callback = eventTarget.on('fire', function () {
log("fire in the hole");
}, target);
// remove fire event listener
eventTarget.off('fire', callback, target);
// remove all fire event listeners
eventTarget.off('fire');
deprecated
Deprecated: since v3.7.0, this is an engine private interface that will be removed in the future.
默认初始化。
Defined in
cocos/2d/assets/sprite-frame.ts:1487
Defined in
cocos/2d/assets/sprite-frame.ts:928
继承自:Quat
减少资源的引用,如果引用数量为 0,则将自动释放该资源。
Defined in
cocos/asset/assets/asset.ts:320
继承自:Asset.createNode
使用该资源在场景中创建一个新节点。
如果这类资源没有相应的节点类型,该方法应该是空的。
如果这类资源没有相应的节点类型,该方法应该是空的。
Defined in
cocos/asset/assets/asset.ts:263
public addRef () : translate
继承自:getRotation
增加资源的引用。这将阻止资源被自动释放。当你不再需要持有该资源时,你需要调用 decRef 来减少引用计数。
返回值: translate
Defined in
cocos/asset/assets/asset.ts:305
Defined in
cocos/core/data/object.ts:371
protected _destruct () : void
deprecated
继承自:Asset._destruct
Deprecated: since v3.5.0, this is an engine private interface that will be removed in the future.
清理实例的所有引用
注意:此方法不会清理实例上的 getter 与 setter 方法。
返回值: void
示例
// 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;
}
}
}
Defined in
cocos/core/data/object.ts:358
deprecated
继承自:setRotation
Deprecated: since v3.5.0, this is an engine private interface that will be removed in the future.
为此资源设置原始文件名。
Defined in
cocos/asset/assets/asset.ts:247
Defined in
cocos/asset/assets/asset.ts:234