Skip to content

API / PixiTextureData

类: PixiTextureData

定义于: pixi/PixiTextureAtlasData.ts:102

Internal

继承

  • TextureData

构造函数

构造函数

ts
new PixiTextureData(): PixiTextureData;

返回

PixiTextureData

继承自

ts
TextureData.constructor

属性

frame

ts
frame: Rectangle = null;

定义于: model/TextureAtlasData.ts:145

继承自

ts
TextureData.frame

hashCode

ts
readonly hashCode: number;

定义于: core/BaseObject.ts:156

分配给此实例的唯一标识号。

继承自

ts
TextureData.hashCode

name

ts
name: string;

定义于: model/TextureAtlasData.ts:142

继承自

ts
TextureData.name

parent

ts
parent: TextureAtlasData;

定义于: model/TextureAtlasData.ts:144

继承自

ts
TextureData.parent

region

ts
readonly region: Rectangle;

定义于: model/TextureAtlasData.ts:143

继承自

ts
TextureData.region

renderTexture

ts
renderTexture: Texture<TextureSource<any>> = null;

定义于: pixi/PixiTextureAtlasData.ts:107


rotated

ts
rotated: boolean;

定义于: model/TextureAtlasData.ts:141

继承自

ts
TextureData.rotated

方法

copyFrom()

ts
copyFrom(value: TextureData): void;

定义于: model/TextureAtlasData.ts:155

参数

参数类型
valueTextureData

返回

void

继承自

ts
TextureData.copyFrom

returnToPool()

ts
returnToPool(): void;

定义于: core/BaseObject.ts:167

清除该实例的所有数据并将其返还对象池。

返回

void

继承自

ts
TextureData.returnToPool

borrowObject()

ts
static borrowObject<T>(objectConstructor: () => T): T;

定义于: core/BaseObject.ts:136

从对象池中获取特定类的实例。

类型参数

类型参数
T extends BaseObject

参数

参数类型描述
objectConstructor() => T特定的类。

返回

T

继承自

ts
TextureData.borrowObject

clearPool()

ts
static clearPool(objectConstructor: typeof BaseObject): void;

定义于: core/BaseObject.ts:111

清除特定对象池的缓存实例。

参数

参数类型默认值描述
objectConstructortypeof BaseObjectnull特定的类。 (不设置则清除所有缓存的实例)

返回

void

继承自

ts
TextureData.clearPool

createRectangle()

ts
static createRectangle(): Rectangle;

定义于: model/TextureAtlasData.ts:137

返回

Rectangle

继承自

ts
TextureData.createRectangle

setMaxCount()

ts
static setMaxCount(objectConstructor: typeof BaseObject, maxCount: number): void;

定义于: core/BaseObject.ts:72

设置特定对象池的最大缓存数量。

参数

参数类型描述
objectConstructortypeof BaseObject特定的类。 (不设置则设置所有对象池的最大缓存数量)
maxCountnumber最大缓存数量。

返回

void

继承自

ts
TextureData.setMaxCount

toString()

ts
static toString(): string;

定义于: pixi/PixiTextureAtlasData.ts:103

返回

string

重写了

ts
TextureData.toString

Released under the MIT License.