类: SpriteFrame

extend: translate

导入示例:

import { SpriteFrame } from "cc";

精灵帧资源。 一个 SpriteFrame 支持多种类型

  1. 矩形精灵帧
  2. 九宫格精灵帧
  3. 网格精灵帧 它主要包含下列数据:
  • 纹理:会被渲染流程使用的 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;

索引

构造函数

静态属性
uv 更新事件。

静态方法
通过 Image 资源或者平台相关 Image 对象创建一个 SpriteFrame 资源。

属性
精灵帧的像素宽度。
贴图对象资源,可以是 TextureBase 类型。
是否旋转。
获取 SpriteFrame 的纹理矩形区域。如果是一个 atlas 的贴图,则为当前贴图的实际剔除透明像素区域。
世界空间中的单位大小对应的像素数量(像素每单位)。
生成 mesh 时本地坐标原点位置。
设置精灵是否允许参与自动合图。
修剪前的原始大小。
精灵自动合图之前的原始 texture 和宽高信息。在参与自动合图之前此值为 null。
精灵帧偏移量。在图集中的精灵帧可能会被剔除透明像素以获得更高的空间利用李,剔除后的矩形尺寸比剪裁前更小,偏移量指的是从原始矩形的中心到剪裁后的矩形中心的距离。
mesh 信息,你应该在使用它之前调用 ensureMeshData 函数来确保其可用。
九宫格内部矩形顶部边框距离 SpriteFrame 矩形的距离。
九宫格内部矩形右边框距离 SpriteFrame 矩形的距离。
九宫格内部矩形左边框距离 SpriteFrame 矩形的距离。
九宫格内部矩形底部边框距离 SpriteFrame 矩形的距离。
精灵帧的像素高度。
沿 Y 轴方向, 翻转 UV。
沿 X 轴方向, 翻转 UV。
图集资源的 uuid。
网格类型精灵帧的所有顶点列表。
九宫格的顶点 UV。
  • uv public
矩形的顶点 UV。

方法
返回是否已加载精灵帧。
设置 SpriteFrame 是否旋转。
设置 SpriteFrame 的纹理矩形区域。
设置修剪前的原始大小。
设置偏移量。
重置 SpriteFrame 数据。
获取 SpriteFrame 是否旋转。
贴图资源的采样器哈希值。
获取 SpriteFrame 的纹理矩形区域。如果是一个 atlas 的贴图,则为当前贴图的实际剔除透明像素区域。
获取修剪前的原始大小。
获取偏移量。
贴图资源的哈希值。
获取渲染贴图的 GFX 资源。
贴图资源的采样器。
确保 mesh 可用,你应该在使用 mesh 之前调用它。
克隆当前 sprite frame。
判断精灵计算的矩形区域是否越界。

继承属性
资源的 UUID。
当前该资源被引用的数量。
返回该资源对应的目标平台资源的 URL,如果此资源没有原生依赖将返回一个空字符串。
该对象的名称。
表示该对象是否可用(被 destroy 后将不可用)。
当一个对象的 destroy 调用以后,会在这一帧结束后才真正销毁。
因此从下一帧开始 isValid 就会返回 false,而当前帧内 isValid 仍然会是 true。
如果希望判断当前帧是否调用过 destroy,请使用 isValid(obj, true),不过这往往是特殊的业务需求引起的,通常情况下不需要这样。
在继承 CCObject 对象后,控制是否需要隐藏,锁定,序列化等功能。
该资源是否已经成功加载。
表明此资源是否是默认资源。
用于本机资产的可序列化URL。供内部使用。
原生依赖的路径。
资源的 UUID。
此资源的基础资源(如果有)。 此属性可用于访问与资源相关的其他详细信息或功能。
如果_native可用,则此属性将由加载器初始化。
获取原生依赖信息。

继承方法
检查当前 sprite frame 对象是否是有效的。
返回对象的字符串表示形式。
Asset 对象将会重写 Object 对象的 toString() 方法。
当资源要表示为文本值时或在字符串连接时引用时,
JavaScript 会自动调用 toString() 方法。

对于原始类型的资源,它将返回this.nativeUrl
否则,返回空字符串。
子类可能会覆盖此方法。
在当前 EventTarget 上删除指定目标(target 参数)注册的所有事件监听器。这个函数无法删除当前 EventTarget 的所有事件监听器,也无法删除 target 参数所注册的所有事件监听器。这个函数只能删除 target 参数在当前 EventTarget 上注册的所有事件监听器。
移除在特定事件类型中注册的所有回调或在某个目标中注册的所有回调。
注册事件目标的特定事件类型回调,回调会在第一时间被触发后删除自身。
加载完成回调。
  • on public
注册事件目标的特定事件类型回调。这种类型的事件应该被 emit 触发。
删除之前用同类型,回调,目标或 useCapture 注册的事件监听器,如果只传递 type,将会删除 type 类型的所有事件监听器。
默认初始化。
检查指定事件是否已注册回调。
派发一个指定事件,并传递需要的参数
减少资源的引用,如果引用数量为 0,则将自动释放该资源。
使用该资源在场景中创建一个新节点。
如果这类资源没有相应的节点类型,该方法应该是空的。
增加资源的引用。这将阻止资源被自动释放。当你不再需要持有该资源时,你需要调用 decRef 来减少引用计数。
清理实例的所有引用注意:此方法不会清理实例上的 getter 与 setter 方法。
为此资源设置原始文件名。

详情

构造函数

public SpriteFrame () :
SpriteFrame
返回值: SpriteFrame

静态属性

public MeshType : typeof MeshType
default: MeshType
static
public EVENT_UV_UPDATED : string
default: 'uv_updated'
static
uv 更新事件。

静态方法

public createWithImage (imageSourceOrImageAsset : ImageSource | ImageAsset) :
SpriteFrame
static
通过 Image 资源或者平台相关 Image 对象创建一个 SpriteFrame 资源。
输入参数
名称类型描述
imageSourceOrImageAssetImageSource | ImageAsset 图像资源或图像原始图像源,图像原始图像源支持 HTMLCanvasElement HTMLImageElement IMemoryImageSource 三种资源。
返回值: SpriteFrame

属性

public width : number
精灵帧的像素宽度。
public trimmedBorder : shadowEnabled
deprecated
Deprecated: since v3.7.0, this is an engine private interface that will be removed in the future.
public texture : TextureBase
贴图对象资源,可以是 `TextureBase` 类型。
public rotated : boolean
是否旋转。
public rect : Rect
获取 SpriteFrame 的纹理矩形区域。 如果是一个 atlas 的贴图,则为当前贴图的实际剔除透明像素区域。
public pixelsToUnit : number
世界空间中的单位大小对应的像素数量(像素每单位)。
public pivot : Vec2
生成 mesh 时本地坐标原点位置。
public packable : boolean
设置精灵是否允许参与自动合图。
public originalSize : Size
修剪前的原始大小。
public original : null | {
_texture : TextureBase
_x : number
_y : number
}
精灵自动合图之前的原始 texture 和宽高信息。在参与自动合图之前此值为 null。
public offset : Vec2
精灵帧偏移量。 在图集中的精灵帧可能会被剔除透明像素以获得更高的空间利用李,剔除后的矩形尺寸比剪裁前更小,偏移量指的是从原始矩形的中心到剪裁后的矩形中心的距离。
public mesh : null | vertexCount
mesh 信息,你应该在使用它之前调用 ensureMeshData 函数来确保其可用。
public insetTop : number
九宫格内部矩形顶部边框距离 SpriteFrame 矩形的距离。
public insetRight : number
九宫格内部矩形右边框距离 SpriteFrame 矩形的距离。
public insetLeft : number
九宫格内部矩形左边框距离 SpriteFrame 矩形的距离。
public insetBottom : number
九宫格内部矩形底部边框距离 SpriteFrame 矩形的距离。
public height : number
精灵帧的像素高度。
public flipUVY : boolean
沿 Y 轴方向, 翻转 UV。
public flipUVX : boolean
沿 X 轴方向, 翻转 UV。
public atlasUuid : string
图集资源的 uuid。
public vertices : null | IVertices
default: null
网格类型精灵帧的所有顶点列表。
public uvSliced : IUV []
default: []
九宫格的顶点 UV。
public uv : number []
default: []
矩形的顶点 UV。
public unbiasUV : number []
default: []
deprecated
Deprecated: since v3.7.0, this is an engine private interface that will be removed in the future.
protected _atlasUuid : string
default: ''
protected _capInsets : number []
protected _customOutLine : never []
default: []
protected _extrude : number
default: 0
protected _isFlipUVX : boolean
default: false
protected _isFlipUVY : boolean
default: false
protected _maxPos : baked
protected _mesh : null | vertexCount
protected _meshType : MeshType
default: MeshType.RECT
protected _minPos : baked
protected _offset : Vec2
protected _original : null | {
_texture : TextureBase
_x : number
_y : number
}
default: null
protected _originalSize : Size
protected _packable : boolean
default: true
protected _pivot : Vec2
protected _pixelsToUnit : number
default: 100
protected _rect : Rect
protected _rotated : boolean
default: false
protected _texture : TextureBase
protected _trimmedBorder : shadowEnabled
protected _textureSource

方法

public textureLoaded () :
boolean
deprecated
Deprecated: since v3.3, Useless Code.
返回是否已加载精灵帧。
返回值: boolean
public setRotated (rotated : boolean) :
void
deprecated
Deprecated: since v1.2, please use rotated instead.
设置 SpriteFrame 是否旋转。
输入参数
名称类型描述
rotatedboolean 是否旋转。
返回值: void
public setRect (rect : Rect) :
void
deprecated
Deprecated: since v1.2, please use rect.
设置 SpriteFrame 的纹理矩形区域。
输入参数
名称类型描述
rectRect 想要设置的 rect。
返回值: void
public setOriginalSize (size : Size) :
void
deprecated
Deprecated: since v1.2, please use originalSize.
设置修剪前的原始大小。
输入参数
名称类型描述
sizeSize 新设置的原始大小。
返回值: void
public setOffset (offset : Vec2) :
void
deprecated
Deprecated: since v1.2, please use offset
设置偏移量。
输入参数
名称类型描述
offsetVec2 新设置的偏移量。
返回值: void
public reset (info ?: ISpriteFrameInitInfo, clearData ?: boolean) :
void
重置 SpriteFrame 数据。
输入参数
名称类型描述
infoISpriteFrameInitInfo SpriteFrame 初始化信息。
clearDataboolean 是否在初始化前清空原有数据。
返回值: void
public isRotated () :
boolean
deprecated
Deprecated: since v1.2, please use rotated instead.
获取 SpriteFrame 是否旋转。
返回值: boolean
public getSamplerInfo () :
Readonly < isValid >
贴图资源的采样器哈希值。
返回值: Readonly < isValid >
public getRect (out ?: Rect) :
Rect
deprecated
Deprecated: since v1.2, please use rect.
获取 SpriteFrame 的纹理矩形区域。 如果是一个 atlas 的贴图,则为当前贴图的实际剔除透明像素区域。
输入参数
名称类型描述
outRect 输出的矩形区域。
返回值: Rect
public getOriginalSize (out ?: Size) :
Size
deprecated
Deprecated: since v1.2, please use originalSize.
获取修剪前的原始大小。
输入参数
名称类型描述
outSize 输出的原始大小。
返回值: Size
public getOffset (out ?: Vec2) :
Vec2
deprecated
Deprecated: since v1.2, please use offset
获取偏移量。
输入参数
名称类型描述
outVec2 输出的偏移量。
返回值: Vec2
public getHash () :
number
贴图资源的哈希值。
返回值: number
public getGFXTexture () :
null | DEVICE
获取渲染贴图的 GFX 资源。
返回值: null | DEVICE
public getGFXSampler () :
INT4
贴图资源的采样器。
返回值: INT4
public ensureMeshData () :
void
确保 mesh 可用,你应该在使用 mesh 之前调用它。
返回值: void
public clone () :
SpriteFrame
克隆当前 sprite frame。
返回值: SpriteFrame
public checkRect (texture : TextureBase) :
boolean
判断精灵计算的矩形区域是否越界。
输入参数
名称类型描述
textureTextureBase SpriteFrame 的贴图资源。
返回值: boolean
protected _calcTrimmedBorder () :
void
返回值: void
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
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
protected _checkPackable () :
void
deprecated
返回值: void
protected _createMesh () :
void
返回值: void
protected _deserialize (serializeData : any, handle : any) :
void
deprecated
输入参数
名称类型描述
serializeDataany-
handleany-
返回值: void
protected _initVertices () :
void
返回值: void
protected _refreshTexture (texture : TextureBase) :
void
输入参数
名称类型描述
textureTextureBase-
返回值: void
protected _resetDynamicAtlasFrame () :
void
deprecated
返回值: void
protected _serialize (ctxForExporting : any) :
any
deprecated
输入参数
名称类型描述
ctxForExportingany-
返回值: any
protected _setDynamicAtlasFrame (frame : any) :
void
deprecated
输入参数
名称类型描述
frameany-
返回值: void
protected _updateMesh () :
void
返回值: void
protected _updateMeshVertices () :
void
返回值: void

继承属性

public uuid : string
继承自:Asset.uuid
资源的 UUID。
public replicated : boolean
继承自:Asset.replicated
public refCount : number
继承自:Asset.refCount
当前该资源被引用的数量。
public nativeUrl : string
继承自:Asset.nativeUrl
返回该资源对应的目标平台资源的 URL,如果此资源没有原生依赖将返回一个空字符串。
public name : string
继承自:Asset.name
该对象的名称。

示例

obj.name = "New Obj"; 
public isValid : boolean
继承自:Asset.isValid
表示该对象是否可用(被 destroy 后将不可用)。
当一个对象的 `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 
public hideFlags : Flags
继承自:Asset.hideFlags
在继承 CCObject 对象后,控制是否需要隐藏,锁定,序列化等功能。
public loaded : boolean
default: true
deprecated
继承自:NodeSpace
Deprecated: since v3.3
该资源是否已经成功加载。
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.
表明此资源是否是默认资源。
protected __editorExtras__ : unknown
继承自:Asset.__editorExtras__
protected _name : string
继承自:Vec3
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。供内部使用。
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.
原生依赖的路径。
protected _objFlags : number
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。
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`可用,则此属性将由加载器初始化。
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.
获取原生依赖信息。

继承方法

public deserialize (data : any) :
any
static
继承自:Vec3
应 AssetDB 要求提供这个方法。
输入参数
名称类型描述
dataany-
返回值: any
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
public toString () :
string
继承自:Asset.toString
返回对象的字符串表示形式。
`Asset` 对象将会重写 `Object` 对象的 `toString()` 方法。
当资源要表示为文本值时或在字符串连接时引用时,
JavaScript 会自动调用 toString() 方法。

对于原始类型的资源,它将返回`this.nativeUrl`。
否则,返回空字符串。
子类可能会覆盖此方法。
返回值: string
public targetOff (typeOrTarget : any) :
void
继承自:Asset.targetOff
在当前 EventTarget 上删除指定目标(target 参数)注册的所有事件监听器。 这个函数无法删除当前 EventTarget 的所有事件监听器,也无法删除 target 参数所注册的所有事件监听器。 这个函数只能删除 target 参数在当前 EventTarget 上注册的所有事件监听器。
输入参数
名称类型描述
typeOrTargetanyThe target to be searched for all related listeners
返回值: void
public removeAll (typeOrTarget : any) :
void
继承自:Asset.removeAll
移除在特定事件类型中注册的所有回调或在某个目标中注册的所有回调。
输入参数
名称类型描述
typeOrTargetanyThe event type or target with which the listeners will be removed
返回值: void
public once <TFunction extends
(...any : any []) =>
void
>
(type : EventType, callback : TFunction, thisArg ?: any) :
TFunction
继承自:getWorldMatrix
注册事件目标的特定事件类型回调,回调会在第一时间被触发后删除自身。
输入参数
名称类型描述
typeEventTypeA string representing the event type to listen for.
callbackTFunctionThe callback that will be invoked when the event is dispatched. The callback is ignored if it is a duplicate (the callbacks are unique).
thisArgany-
返回值: 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
public on <TFunction extends
(...any : any []) =>
void
>
(type : EventType, callback : TFunction, thisArg ?: any, once ?: boolean) :
TFunction
继承自:setWorldScale
注册事件目标的特定事件类型回调。这种类型的事件应该被 `emit` 触发。
输入参数
名称类型描述
typeEventTypeA string representing the event type to listen for.
callbackTFunctionThe callback that will be invoked when the event is dispatched. The callback is ignored if it is a duplicate (the callbacks are unique).
thisArganyThe target (this object) to invoke the callback, can be null
onceboolean-
返回值: TFunction

示例

import { log } from 'cc';
eventTarget.on('fire', function () {
   log("fire in the hole");
}, node); 
public off <TFunction extends
(...any : any []) =>
void
>
(type : EventType, callback ?: TFunction, thisArg ?: any) :
void
继承自:setRTS
删除之前用同类型,回调,目标或 useCapture 注册的事件监听器,如果只传递 type,将会删除 type 类型的所有事件监听器。
输入参数
名称类型描述
typeEventTypeA string representing the event type being removed.
callbackTFunctionThe callback to remove.
thisArgany-
返回值: 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'); 
public initDefault (uuid ?: string) :
void
deprecated
Deprecated: since v3.7.0, this is an engine private interface that will be removed in the future.
默认初始化。
输入参数
名称类型描述
uuidstring 资源 uuid。
返回值: void
public hasEventListener (type : string, callback ?:
(...any : any []) =>
void
, target ?: any) :
boolean
检查指定事件是否已注册回调。
输入参数
名称类型描述
typestringEvent type.
callback
(...any : any []) =>
void
Callback function when event triggered.
targetanyCallback callee.
返回值: boolean
public emit (type : EventType, arg0 ?: any, arg1 ?: any, arg2 ?: any, arg3 ?: any, arg4 ?: any) :
void
继承自:Asset.emit
派发一个指定事件,并传递需要的参数
输入参数
名称类型描述
typeEventTypeevent type
arg0any-
arg1any-
arg2any-
arg3any-
arg4any-
返回值: void
public destroy () :
boolean
返回值: boolean
public decRef (autoRelease ?: boolean) :
translate
继承自:Quat
减少资源的引用,如果引用数量为 0,则将自动释放该资源。
输入参数
名称类型描述
autoReleaseboolean-
返回值: translate
public createNode (callback : CreateNodeCallback) :
void
继承自:Asset.createNode
使用该资源在场景中创建一个新节点。
如果这类资源没有相应的节点类型,该方法应该是空的。
输入参数
名称类型描述
callbackCreateNodeCallback-
返回值: void
public addRef () :
translate
继承自:getRotation
增加资源的引用。这将阻止资源被自动释放。当你不再需要持有该资源时,你需要调用 decRef 来减少引用计数。
返回值: translate
protected _destroyImmediate () :
void
deprecated
继承自:Asset._destroyImmediate
返回值: void
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;
             }
         }
     } 
protected _setRawAsset (filename : string, inLibrary ?: boolean) :
void
deprecated
继承自:setRotation
Deprecated: since v3.5.0, this is an engine private interface that will be removed in the future.
为此资源设置原始文件名。
输入参数
名称类型描述
filenamestring-
inLibraryboolean-
返回值: void
public serialize () :
void
继承自:Vec3
应 AssetDB 要求提供这个方法。 返回一个序列化后的对象
返回值: void

索引

构造函数
静态属性
静态方法
属性
  • uv public
方法
继承属性
继承方法
  • on public