2D灯光基类

层级 (查看层级一览)

属性

Extra data of the node.

组件的额外数据。IDE内部使用。

_id: number

Unique identifier for the component.

组件的唯一标识。

_singleton: boolean

Whether the component is a singleton, meaning only one instance of this type of script can be added to the same node.

是否为单例,即同一个节点只能添加此类型的脚本一次。

owner: Sprite

Gets the owner Node to which the component belongs.

获取组件所属的 Node 节点。

runInEditor: boolean

Whether the script can run in the IDE environment.

是否可以在 IDE 环境中运行。

scriptPath: string

The path of the script file.

脚本文件的路径。

showLightTexture: boolean = false

Is show light texture

是否显示灯光贴图

idCounter: number = 0
LIGHTANDSHADOW: number

光影图

LIGHTANDSHADOW_ADDMODE: number
LIGHTANDSHADOW_AMBIENT: number

环境光

LIGHTANDSHADOW_LIGHT_DIRECTION: number

灯光高度值

LIGHTANDSHADOW_PARAM: number

光影图尺寸和偏移

LIGHTANDSHADOW_SUBMODE: number

访问器

  • get shadowFilterType(): ShadowFilterType

    返回 ShadowFilterType

    Shadow filter type

    • 0: None: not filter, the edge is completely sharp. The calculation efficiency is the highest, but the visual effect is the worst, suitable for performance-sensitive scenarios.
    • 1: PCF5: Use 5 sampling points for blurring. The edge has a certain smooth effect, but the blur degree is limited, suitable for medium blur requirements.
    • 2: PCF9: Use 9 sampling points for blurring. The edge has a stronger smooth effect, suitable for high-quality shadow scenes. Calculation cost is medium, visual effect is significantly improved.
    • 3: PCF13: Use 13 sampling points for blurring, one of the highest quality blur algorithms. The edge is very soft, suitable for scenes that require extremely

    阴影滤波类型

    • 0: None: 没有滤波处理,阴影边缘是完全锐利的。计算效率最高,但视觉效果最差,适合性能敏感的场景。
    • 1: PCF5: 使用 5 个采样点 进行模糊处理。阴影边缘有一定的平滑效果,但模糊程度有限,适合中等模糊需求的场景。计算开销较低,平衡性能和质量。
    • 2: PCF9: 使用 9 个采样点进行模糊处理。阴影边缘有更强的平滑效果,适合高质量光影的场景。计算开销适中,视觉效果明显提升。
    • 3: PCF13: 使用 13 个采样点进行模糊处理,是最高质量的模糊算法之一。阴影边缘非常柔和,适合对视觉质量要求极高的场景。计算开销较高,但效果非常细腻。
  • set shadowFilterType(value: ShadowFilterType): void

方法

  • 参数

    • layer: number

      Specified layer

    返回 number

    Is the light turned on for the specified layer

    灯光对指定层是否开启

  • 参数

    • layer: number

      Specified layer

    返回 number

    Is the shadow turned on for the specified layer

    阴影对指定层是否开启

  • 返回 void

    Called after the component is added to a node. Unlike Awake, onAdded is called even if the node is not active.

    组件被添加到节点后调用,与 onAwake 不同的是,即使节点未激活也会调用 onAdded。

  • 返回 void

    Executed after the component is activated. At this point, all nodes and components have been created. This method is executed only once.

    组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次。

  • 返回 void

    Resets the component's parameters to their default values. If this function is implemented, the component will be reset and automatically recycled for future use. If not reset, it will not be recycled for reuse.

    将组件的参数重置为默认值。如果实现了这个函数,组件将被重置并自动回收到对象池,方便下次复用。 如果没有重置,则不会进行回收复用。

  • 返回 void

    Executed every frame during the update phase. Avoid writing complex loop logic or using the getComponent method here.

    每帧更新时执行,在 update 阶段。尽量不要在这里写大循环逻辑或使用 getComponent 方法。

  • 参数

    • layerList: number[]

      Layer list

    返回 void

    Set shadow layer mask by list

    用列表设置阴影层掩码