The Material class is used to create materials.

Material 类用于创建材质。

层级 (查看层级一览)

实现

  • IClone

属性

访问器

方法

属性

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

资源名称。

ownerElements: Set<IRenderElement3D> = ...

Owner element.

所属元素

url: string

The URL of the resource.

获取资源的URL地址。

uuid: string

The UUID of the resource.

获取资源的UUID。

ALPHATESTVALUE: number

Shader variables, transparent test values.

着色器变量,透明测试值。

DEBUG: boolean = false

Whether the debug mode is enabled.

是否开启调试模式。

RENDERQUEUE_ALPHATEST: number = 2450

RenderQueue: Alpha Testing

渲染队列:阿尔法测试。

RENDERQUEUE_OPAQUE: number = 2000

RenderQueue: Opaque

渲染队列:不透明。

RENDERQUEUE_TRANSPARENT: number = 3000

RenderQueue: Transparent

渲染队列:透明。

SHADERDEFINE_ADDTIVEFOG: ShaderDefine

Material grade shader macro definition, additive fog.

材质级着色器宏定义,叠加雾效。

SHADERDEFINE_ALPHATEST: ShaderDefine

Material grade shader macro definition, transparency testing.

材质级着色器宏定义,透明测试。

SHADERDEFINE_MAINTEXTURE: ShaderDefine

Material grade shader macro definition, main texture.

材质级着色器宏定义,主贴图。

访问器

  • get obsolute(): boolean

    返回 boolean

    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)下次加载时会忽略这个缓存而去重新加载。。
  • set obsolute(value: boolean): void

    参数

    • value: boolean

    返回 void

方法

  • 参数

    • count: number = 1

      The amount by which to increment the reference count, default is 1.

    返回 void

    Increments the reference count of the resource by the specified amount.

    按指定数量增加资源的引用计数。

  • 参数

    • count: number = 1

      The amount by which to decrement the reference count, default is 1.

    返回 void

    Decrements the reference count of the resource by the specified amount. If the reference count reaches zero and certain conditions are met, the resource may be destroyed.

    按指定数量减少资源的引用计数。如果引用计数达到零并且满足特定条件,资源可能会被销毁。

  • 参数

    • 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。

  • 返回 any

    A new material instance that is a clone of the current material.

    Creates a clone of the current material.

    创建当前材质的克隆副本。

  • 参数

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

    派发事件。

  • 参数

    • name: string

      The name of the property.

    返回 boolean

    The boolean value.

    Gets a boolean value of uniformIndex by property name.

    根据属性名称获得uniform索引的布尔值。

  • 参数

    • uniformIndex: number

      The index of the uniform.

    返回 boolean

    The boolean value of the property.

    Gets the boolean uniform value by index.

    通过uniform索引获取布尔值。

  • 参数

    • name: string

      The name of the property.

    返回 Float32Array

    The retrieved buffer.

    Retrieves a buffer by property name.

    根据属性名称获得Buffer。

  • 参数

    • uniformIndex: number

      The index of the property.

    返回 Float32Array

    The retrieved buffer.

    Retrieves a buffer by its uniform index.

    通过属性索引获得Buffer。

  • 参数

    • uniformIndex: number

      The index of the property.

    返回 Color

    The retrieved Color value.

    Retrieves a Color value by its uniform index.

    通过属性索引获得颜色值。

  • 参数

    • name: string

      The name of the property.

    返回 number

    The float value.

    Gets a float value by property name.

    根据属性名称获得浮点值。

  • 参数

    • uniformIndex: number

      The index of the property.

    返回 number

    The float value.

    Gets a float value by uniform index.

    通过属性索引获得浮点值。

  • 参数

    • name: string

      The name of the property.

    返回 number

    The integer value.

    Gets an integer value by property name.

    根据属性名称获得整数值。

  • 参数

    • uniformIndex: number

      The index of the property.

    返回 number

    The integer value.

    Gets an integer value by uniform index.

    通过属性索引获得整数值。

  • 参数

    • name: string

      The name of the property as defined in the shader.

    返回 Vector3

    The retrieved Vector3 value.

    Retrieves a Vector3 value by its property name.

    根据属性名称获得Vector3值。

  • 参数

    • uniformIndex: number

      The index of the property.

    返回 Vector3

    The retrieved Vector3 value.

    Retrieves a Vector3 value by its uniform index.

    通过属性索引获得Vector3值。

  • 参数

    • uniformIndex: number

      The index of the property.

    返回 Vector4

    The retrieved Vector4 value.

    Retrieves a Vector4 value by uniform index.

    通过属性索引获取Vector4值。

  • 参数

    • 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 创建。

  • 参数

    • 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 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响应一次后自动移除。

  • 参数

    • name: string

      The name of the property.

    • value: boolean

      The value to set.

    返回 void

    Sets a boolean value by property name.

    设置属性名称对应的布尔值。

  • 参数

    • uniformIndex: number

      The index of the uniform.

    • value: boolean

      The bool value to set.

    返回 void

    Sets the boolean value by uniform index.

    通过uniform索引设置布尔值。

  • 参数

    • name: string

      The name of the property.

    • value: Float32Array

      The buffer to set.

    返回 void

    Sets a buffer by property name.

    根据属性名称设置Buffer。

  • 参数

    • uniformIndex: number

      The index of the property.

    • value: Float32Array

      The buffer to set.

    返回 void

    Sets a buffer by its uniform index.

    通过属性索引设置Buffer。

  • 参数

    • name: string

      The name of the property.

    • value: Color

      The Color value to set.

    返回 void

    Sets a Color value by property name.

    设置属性名称对应的颜色值。

  • 参数

    • uniformIndex: number

      The index of the property.

    • value: Color

      The Color value to set.

    返回 void

    Sets a Color value by its uniform index.

    通过属性索引设置颜色值。

  • 参数

    • name: string

      The name of the property.

    • value: number

      The value to set.

    返回 void

    Sets a float value by property name.

    设置属性名称对应的浮点值。

  • 参数

    • uniformIndex: number

      The index of the property.

    • value: number

      The value to set.

    返回 void

    Sets a float value by uniform index.

    通过属性索引设置浮点值。

  • 参数

    • name: string

      The name of the property.

    • value: number

      The value to set.

    返回 void

    Sets an integer value by property name.

    设置属性名称对应的整数值。

  • 参数

    • uniformIndex: number

      The index of the property.

    • value: number

      The value to set.

    返回 void

    Sets an integer value by uniform index.

    通过属性索引设置整数值。

  • 参数

    • index: number

      The index of the matrix within the shader data.

    • value: Matrix3x3

      The 3x3 matrix value to set.

    返回 void

    Sets a 3x3 matrix value by its index.

    通过索引设置3x3矩阵值。

  • 参数

    • uniformIndex: number

      The index of the property.

    • value: Matrix4x4

      The Matrix4x4 value to set.

    返回 void

    Sets a Matrix4x4 value by its uniform index.

    通过属性索引设置4x4矩阵值。

  • 参数

    • name: string

      The name of the shader to set.

    返回 void

    Sets the shader by its name.

    通过名称设置使用Shader。

  • 参数

    • name: string

      The name of the property.

    • value: Vector2

      The Vector2 value to set.

    返回 void

    Sets a Vector2 value by property name.

    设置属性名称对应的Vector2值。

  • 参数

    • uniformIndex: number

      The index of the property.

    • value: Vector2

      The Vector2 value to set.

    返回 void

    Sets a Vector2 value by uniform index.

    通过属性索引设置Vector2值。

  • 参数

    • name: string

      The name of the property as defined in the shader.

    • value: Vector3

      The Vector3 value to set.

    返回 void

    Sets a Vector3 value by its property name.

    设置属性名称对应的Vector3值。

  • 参数

    • uniformIndex: number

      The index of the property.

    • value: Vector3

      The Vector3 value to set.

    返回 void

    Sets a Vector3 value by its uniform index.

    通过属性索引设置Vector3值。

  • 参数

    • name: string

      The name of the property.

    • value: Vector4

      The Vector4 value to set.

    返回 void

    Sets a Vector4 value by property name.

    设置属性名称对应的Vector4值。

  • 参数

    • uniformIndex: number

      The index of the property.

    • value: Vector4

      The Vector4 value to set.

    返回 void

    Sets a Vector4 value by uniform index.

    通过属性索引设置Vector4值。

  • 参数

    • url: string

      The URL from which to load the material.

    • complete: Handler

      A callback function that is called when the material has been loaded.

    返回 void

    Loads a material from a URL.

    从URL加载材质。