The Texture is a texture processing class.

Texture 是一个纹理处理类。

层级 (查看层级一览)

构造函数

  • 参数

    • source: BaseTexture | Texture = null

      Bitmap resource.

    • uv: ArrayLike<number> = null

      UV data information.

    • sourceWidth: number = 0

      Original width of the texture.

    • sourceHeight: number = 0

      Original height of the texture.

    返回 Texture

    Creates an instance of Texture class.

    创建 Texture 类的新实例

属性

_id: number = 0
destroyedImmediately: boolean

Whether to delete the resource immediately when the reference count is 0.

是否在引用计数为0的时候立马删除他

lock?: boolean

Whether to lock the resource, if true, the resource cannot be automatically released.

是否加锁,如果true为不能使用自动释放机制。

name?: string

The name of the resource.

资源名称。

offsetX: number = 0

The offset along the X-axis.

沿 X 轴的偏移量。

offsetY: number = 0

The offset along the Y-axis.

沿 Y 轴的偏移量。

scaleRate: number = 1

The scale rate of the texture.

纹理的缩放率。

sourceHeight: number = 0

The original height of the texture, including any transparent areas that have been cropped out.

包括已被裁剪掉的透明区域的纹理原始高度。

sourceWidth: number = 0

The original width of the texture, including any transparent areas that have been cropped out.

包括已被裁剪掉的透明区域的纹理原始宽度。

url: string

The URL of the texture image.

纹理图片的地址。

uuid: string

The UUID of the texture.

纹理的 UUID。

uvrect: number[] = ...

Range of UV

uv的范围

DEBUG: boolean = false

Whether the debug mode is enabled.

是否开启调试模式。

DEF_UV: Float32Array = ...

Default UV information.

默认 UV 信息。

INV_UV: Float32Array = ...

Inverse UV information.

反转 UV 信息。

NO_UV: Float32Array = ...

No UV information.

无 UV 信息

访问器

  • get obsolute(): boolean

    返回 boolean

    Whether the texture is considered obsolete.

    纹理是否被认为是过时的。

  • set obsolute(value: boolean): void

    参数

    • value: boolean

    返回 void

    If a cached resource observer is set to true, then:

      1. getRes will still return this resource;
      1. next time loading will ignore this cached resource and reload it.

    如果设置一个已缓存的资源obsolute为true,则

    • 1)getRes仍然可以返回这个资源;
    • 2)下次加载时会忽略这个缓存而去重新加载。。

方法

  • 参数

    • url: string

      The URL used to create the resource.

    • 可选uuid: string

      The optional UUID of the resource.

    返回 void

    Sets the URL and UUID used to create this resource.

    设置用于创建此资源的 URL 和 UUID。

  • 参数

    • type: string

      The type of event.

    • 可选data: any

      (Optional) Data to pass to the callback. If multiple parameters p1, p2, p3, ... need to be passed, use an array structure such as [p1, p2, p3, ...]. If a single parameter p needs to be passed and p is an array, use a structure such as [p]. For other single parameters p, you can directly pass parameter p. If data is Event.EMPTY, it means passing an Event object to the callback function. Note that it is not passing Event.TEMP, but an independent Event object.

    返回 boolean

    True if there are listeners for this event type, false otherwise.

    Dispatch an event.

    派发事件。

  • 参数

    • x: number

      The x-coordinate of the clip area.

    • y: number

      The y-coordinate of the clip area.

    • width: number

      The width of the clip area.

    • height: number

      The height of the clip area.

    返回 Texture

    A Texture object representing the clipped sub-texture, or null if the clip area is out of bounds.

    Retrieves a clipped sub-texture from this texture and caches it for future access.

    从当前纹理获取裁剪后的子纹理,并将其缓存以供将来访问。

  • 参数

    • x: number

      The x-coordinate of the area.

    • y: number

      The y-coordinate of the area.

    • width: number

      The width of the area.

    • height: number

      The height of the area.

    返回 Uint8Array

    A Uint8Array containing the pixel data.

    Retrieves the pixel data from a specific area of the Texture.

    Texture 的特定区域获取像素点集合。

  • 参数

    • x: number

      The x-coordinate of the region.

    • y: number

      The y-coordinate of the region.

    • width: number

      The width of the region.

    • height: number

      The height of the region.

    返回 Uint8Array

    A Uint8Array containing the pixel data.

    Retrieves the pixel data from a region of the texture.

    从纹理的特定区域获取像素数据。

  • 参数

    • type: string

      The type of event.

    返回 boolean

    True if a listener of the specified type is registered, false otherwise.

    Check if the EventDispatcher object has any listeners registered for a specific type of event.

    检查 EventDispatcher 对象是否为特定事件类型注册了任何侦听器。

  • 参数

    • url: string

      The URL to check against the resource's creation URL.

    返回 boolean

    True if the resource is created from the specified URL, otherwise false.

    Checks if the resource is created from the specified URL.

    检查资源是否从指定的 URL 创建。

  • 参数

    • url: string

      The URL of the image to load.

    • 可选complete: Handler

      An optional callback function that is called when the image is loaded.

    返回 Promise<void>

    A promise that resolves to the loaded image.

    Loads an image from the specified URL.

    从指定的 URL 加载图片。

  • 参数

    • type: string

      The type of event.

    • listener: Function

      The listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Remove a listener from the EventDispatcher object.

    从 EventDispatcher 对象中删除侦听器。

  • 参数

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • 可选listener: Function

      The listener function.

    • 可选args: any[]

    返回 EventDispatcher

    This EventDispatcher object.

    Remove a listener from the EventDispatcher object.

    从 EventDispatcher 对象中删除侦听器。

  • 参数

    • 可选type: string

      (Optional) The type of event. If the value is null, all types of listeners on this object are removed.

    返回 EventDispatcher

    This EventDispatcher object.

    Remove all listeners of the specified event type from the EventDispatcher object.

    从 EventDispatcher 对象中删除指定事件类型的所有侦听器。

  • 参数

    • type: string

      The type of event.

    • listener: Function

      The listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。

  • 参数

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The listener function.

    • 可选args: any[]

      (Optional) The callback parameters of the event listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。

  • 参数

    • type: string

      The type of event.

    • listener: Function

      The listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications. This event listener responds once and is automatically removed after the first call.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响应一次后自动移除。

  • 参数

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The listener function.

    • 可选args: any[]

      (Optional) The callback parameters of the event listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications. This event listener responds once and is automatically removed after the first call.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响应一次后自动移除。

  • 参数

    • 可选callback: () => void

      An optional callback function to call after the bitmap is recovered.

    返回 void

    Forces the recovery of the bitmap from the URL.

    通过 URL 强制恢复 bitmap

  • 参数

    • bitmap: BaseTexture = null

      The bitmap resource.

    • uv: ArrayLike<number> = null

      The UV data information.

    • sourceWidth: number = 0

      The original width of the texture.

    • sourceHeight: number = 0

      The original height of the texture.

    返回 void

    Sets the bitmap resource and UV data information for this object.

    设置此对象的位图资源和 UV 数据信息。

  • 参数

    • source: BaseTexture | Texture

      The source texture, either a Texture2D or a Texture object.

    • x: number

      The starting absolute x coordinate.

    • y: number

      The starting absolute y coordinate.

    • width: number

      The absolute width.

    • height: number

      The absolute height.

    • offsetX: number = 0

      The offset on the X-axis (optional). It is the position of [x, y] relative to the original small image. Generally, it is positive, indicating that the size of the blank edge has been cut off. If it is negative, it usually indicates that a protective edge has been added

    • offsetY: number = 0

      The offset on the Y-axis (optional).

    • sourceWidth: number = 0

      The original width, including any cropped transparent areas (optional).

    • sourceHeight: number = 0

      The original height, including any cropped transparent areas (optional).

    返回 Texture

    A Texture object.

    Creates a Texture object based on the specified source, coordinates, dimensions, and offsets.

    根据指定的资源、坐标、宽高和偏移量等创建 Texture 对象。

  • 参数

    • texture: Texture

      The target Texture to crop.

    • x: number

      The x position relative to the target Texture.

    • y: number

      The y position relative to the target Texture.

    • width: number

      The width to crop.

    • height: number

      The height to crop.

    返回 Texture

    A new Texture or null if the areas do not intersect.

    Creates a new Texture by cropping a part of an existing Texture. If the two areas do not intersect, it returns null.

    截取 Texture 的一部分区域,生成一个新的 Texture,如果两个区域没有相交,则返回 null。