The Camera class is used to create cameras.

Camera 类用于创建摄像机。

层级 (查看层级一览)

构造函数

属性

访问器

方法

构造函数

  • 参数

    • aspectRatio: number = 0

      The aspect ratio of the camera view.

    • nearPlane: number = 0.3

      The near clipping plane distance.

    • farPlane: number = 1000

      The far clipping plane distance.

    返回 Camera

    Creates an instance of the Camera.

    创建一个Camera实例。

属性

_forward: Vector3 = ...

Forward vector.

前向量。

_internalRenderTexture: RenderTexture = null
_offScreenRenderTexture: RenderTexture = null
_renderDataModule: ICameraNodeData
_up: Vector3 = ...

Up vector.

上向量。

clearFlag: CameraClearFlags = CameraClearFlags.SolidColor

Clear flag.

清除标记。

enableRender: boolean = true

Whether rendering is allowed.

是否允许渲染。

name: string = ""

Node name.

节点名称。

opaqueTextureSize: number = 512
tag: string

Node tag.

节点标签。

useOcclusionCulling: boolean

Whether to use occlusion culling during rendering.

渲染时是否使用遮挡剔除。

cameraBlockName: string = "BaseCamera"
RENDERINGTYPE_DEFERREDLIGHTING: string = "DEFERREDLIGHTING"

渲染模式,延迟光照渲染,暂未开放。

RENDERINGTYPE_FORWARDRENDERING: string = "FORWARDRENDERING"

Rendering mode: Forward rendering.

渲染模式:前向渲染。

WORLDINVERTFRONT: number

Indicates the front face direction. -1 for inverted back face, 1 for normal situation.

-1 表示翻转了背面,1 表示正常情况。

访问器

  • get activeInHierarchy(): boolean

    返回 boolean

    Whether this node is active in the hierarchy.

    该节点在层级中是否激活。

  • get destroyed(): boolean

    返回 boolean

    Whether it has been destroyed. The object cannot be used after being destroyed.

    是否已经销毁。对象销毁后不能再使用。

  • get displayedInStage(): boolean

    返回 boolean

    Indicates whether the node is displayed in the scene.

    表示是否在显示列表中显示。

  • get enableBlitDepth(): boolean
  • set enableBlitDepth(value: boolean): void

    参数

    • value: boolean

    返回 void

    Enable or disable the use of built-in depth texture (TODO: If enabled, the depth texture can only be used in post-processing, not in the rendering process).

    设置是否使用内置的深度纹理(TODO:如果开启,深度纹理只能在后期处理中使用,不能在渲染流程中使用)。

  • get enableBuiltInRenderTexture(): boolean

    返回 boolean

    Whether to use the RenderTexture being rendered for CommandBuffer service. Set to true when used with CommandBuffer.

    是否使用正在渲染的 RenderTexture 为 CommandBuffer 服务。通常与 CommandBuffer 一起使用时设置为 true。

  • set enableBuiltInRenderTexture(value: boolean): void

    参数

    • value: boolean

    返回 void

  • get farPlane(): number

    返回 number

    Far clipping plane.

    远裁剪面。

  • set farPlane(value: number): void

    参数

    • value: number

      The distance to the far clipping plane.

    返回 void

    The far clipping plane of the camera.

    相机的远裁剪平面。

  • get fieldOfView(): number

    返回 number

    Field of view.

    视野。

  • set fieldOfView(value: number): void

    参数

    • value: number

      The field of view in degrees.

    返回 void

    Set the field of view of the camera.

    设置相机的视野。

  • get is3D(): boolean

    返回 boolean

    Whether it is a 3D node, i.e., Scene3D, Sprite3D and their derived classes.

    是否是3D节点,即Scene3D、Sprite3D及其衍生类。

  • get nearPlane(): number

    返回 number

    Near clipping plane.

    近裁剪面。

  • set nearPlane(value: number): void

    参数

    • value: number

      The distance to the near clipping plane.

    返回 void

    The near clipping plane of the camera.

    相机的近裁剪平面。

方法

  • 参数

    • bit: number

      The bit to set.

    • value: boolean

      The value to set, true or false.

    返回 boolean

    Whether the bit was changed.

    Set a specific bit of the node.

    设置节点的特定位。

  • 类型参数

    参数

    • node: T

      The child node to be inserted.

    • index: number

      The index at which the child node will be inserted.

    返回 T

    The inserted child node.

    Insert a child node at a specific index.

    在指定的索引位置插入子节点。

  • 参数

    • type: string

      The event type.

    • 可选data: any

      The event data. An Event object can be passed.

    返回 void

    Bubble an event up the parent chain.

    事件冒泡到父节点链。

  • 参数

    • method: Function

      The callback function.

    • args: any[] = null

      The parameters passed to the callback function.

    返回 void

    Delays the execution of a callback function until the next frame after the current execution block is finished. The callback function will only be executed once. It is generally called before the control is displayed on the screen to delay the calculation of data.

    在当前执行块完成后,延迟执行回调函数到下一帧。 回调函数只会被执行一次。一般在控件被显示在屏幕之前调用,用于延迟计算数据。

  • 参数

    • caller: any

      The execution scope of the callback function (this).

    • method: Function

      The callback function.

    返回 void

    Clears a timer.

    清除定时器。功能同Laya.timer.clear()。

  • 参数

    • node: Node

      The specified node.

    返回 boolean

    A Boolean value indicating whether the current node contains the specified node.

    Checks whether the current node contains the specified node.

    当前容器是否包含指定的节点对象。

  • 参数

    • source: Vector3

      The source coordinate.

    • out: Vector3

      The output coordinate.

    返回 boolean

    Whether the conversion was successful.

    Convert 2D screen coordinate system to 3D orthographic projection coordinate system. Note: Only valid under orthographic model.

    转换2D屏幕坐标系统到3D正交投影下的坐标系统,注:只有正交模型下有效。

  • 参数

    • 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 child node to find.

    • 可选classType: new (...args: any[]) => T

      The type of the child node.

    返回 T

    The child node with the specified name.

    Recursively find child nodes, but will not search nodes inside Prefabs.

    递归查找子节点,但不会查找Prefab内部的节点。

  • 参数

    • delay: number

      The interval between executions, in frames.

    • caller: any

      The execution scope of the callback function (this).

    • method: Function

      The callback function.

    • args: any[] = null

      The parameters passed to the callback function.

    • coverBefore: boolean = true

      Whether to override the previous delayed execution. The default value is true.

    返回 void

    Repeatedly executes a callback function at a fixed interval based on frame rate.

    基于帧率,定时重复执行回调函数。功能同Laya.timer.frameLoop()。

  • 参数

    • delay: number

      The delay time, in frames.

    • caller: any

      The execution scope of the callback function (this).

    • method: Function

      The callback function.

    • args: any[] = null

      The parameters passed to the callback function.

    • coverBefore: boolean = true

      Whether to override the previous delayed execution. The default value is true.

    返回 void

    Executes a callback function once after a specified delay based on frame rate.

    基于帧率,在指定延迟时间后执行一次回调函数。功能同Laya.timer.frameOnce()。

  • 类型参数

    参数

    • name: string

      The name of the child node.

    • 可选classType: new (...args: any[]) => T

    返回 T

    The child node with the specified name, or null if not found.

    Get a child node by its name.

    根据子节点的名字获取子节点对象。

  • 类型参数

    参数

    • index: number

      The index of the child node.

    • 可选classType: new (...args: any[]) => T

    返回 T

    The child node at the specified index, or null if the index is out of range.

    Get a child node by its index.

    根据子节点的索引位置获取子节点对象。

  • 类型参数

    参数

    • path: String

      The path of the child node.

    • 可选classType: new (...args: any[]) => T

      The type of the child node.

    返回 T

    The child node with the specified path.

    Get the first child node with the specified path. e.g. getChildByPath("A.B.C") is similar to getChild("A") followed by getChild("B") followed by getChild("C").

    获取具有指定路径的第一个子节点。例如 getChildByPath("A.B.C") 类似于 getChild("A") 后跟 getChild("B") 后跟 getChild("C")。

  • 参数

    • flag: number

      The hide flag to check.

    返回 boolean

    Whether the node has the specified hide flag.

    Check whether the node has a specific hide flag.

    检查节点是否具有特定的隐藏标志。

  • 参数

    • 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 对象是否为特定事件类型注册了任何侦听器。

  • 参数

    • node: Node

      The node to check.

    返回 boolean

    True if this node is an ancestor of the given node, false otherwise.

    Check if this node is an ancestor of the given node.

    检查本节点是否是某个节点的上层节点。

  • 参数

    • point: Vector2

      The position in normalized viewport space.

    • out: Ray

      The output ray.

    返回 void

    Calculate a ray from normalized viewport space.

    计算从归一化视口空间生成的射线。

  • 参数

    • 可选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 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。

  • 返回 void

    The callback function that is executed when the component is activated, at which point all nodes and components have been created. This is a virtual method that needs to be overridden in the subclass.

    组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次。 此方法为虚方法,使用时重写覆盖即可。

  • 参数

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

  • 返回 void

    The callback function when the node is destroyed. This is a virtual method. You can override it for custom logic when the node is about to be destroyed.

    节点被销毁时执行的回调函数。此方法为虚方法,使用时重写覆盖即可。

  • 返回 void

    The callback function that is executed when the component is disabled, such as when a node is removed from the stage. This is a virtual method that needs to be overridden in the subclass.

    组件被禁用时执行,比如从节点从舞台移除后。 此方法为虚方法,使用时重写覆盖即可。

  • 返回 void

    The callback function that is executed when the component is enabled, such as when a node is added to the stage. This is a virtual method that needs to be overridden in the subclass.

    组件被启用后执行,比如节点被添加到舞台后。 此方法为虚方法,使用时重写覆盖即可。

  • 参数

    • name: string

      The name of the child node.

    • 可选destroy: boolean

    返回 Node

    The removed node.

    Remove a child node by its name.

    根据子节点名字删除对应的子节点对象,如果找不到不会抛出异常。

  • 参数

    • 可选beginIndex: number

      The begin index.

    • 可选endIndex: number

      The end index.

    • 可选destroy: boolean

    返回 void

    The node itself.

    Remove all children from this node.

    删除指定索引区间的所有子对象。

  • 参数

    • method: Function

      The name of the callback function to be executed, such as functionName.

    返回 void

    If there are callback functions delayed by callLater, they will be executed immediately.

    如果有通过 callLater 延迟执行的回调函数,将立即执行它们。

  • 参数

    • delay: number

      The interval between executions, in milliseconds.

    • caller: any

      The execution scope of the callback function (this).

    • method: Function

      The callback function.

    • args: any[] = null

      The parameters passed to the callback function.

    • coverBefore: boolean = true

      Whether to override the previous delayed execution. The default value is true.

    • jumpFrame: boolean = false

      Whether the callback should be executed when the timer jumps frames. The default value is false. If set to true, the callback will be executed multiple times in a single frame if possible, for performance reasons.

    返回 void

    Repeatedly execute a callback function at a fixed interval. This is a wrapper of the loop method in the timer property of the node.

    定时重复执行某函数。这是对节点 timer 属性的 loop 方法的封装。

  • 参数

    • delay: number

      The delay time, in milliseconds.

    • caller: any

      The execution scope of the callback function (this).

    • method: Function

      The callback function.

    • args: any[] = null

      The parameters passed to the callback function.

    • coverBefore: boolean = true

      Whether to override the previous delayed execution. The default value is true.

    返回 void

    Executes a callback function once after a specified delay.

    在指定延迟时间后执行一次回调函数。功能同Laya.timer.once()。

  • 参数

    • position: Vector3

      The coordinate in world space.

    • out: Vector4

      x, y, z are normalized viewport space coordinates, w is the z-axis coordinate relative to the camera.

    返回 void

    Transform a point from world space to normalized viewport space.

    将一个点从世界空间转换到归一化视口空间。

  • 参数

    • position: Vector3

      The coordinate in world space.

    • out: Vector4

      x, y, z are viewport space coordinates, w is the z-axis coordinate relative to the camera.

    返回 void

    Transform a point from world space to viewport space.

    将一个点从世界空间转换到视口空间。

  • 参数

    • camera: Camera

      The camera used for rendering.

    • position: Vector3

      The position of the camera.

    • scene: Scene3D

      The specified scene to render.

    • renderCubeSize: number

      The size of the cube map texture.

    • format: TextureFormat

      The format of the cube map texture.

    • cullingMask: number = 0

      The culling mask for the camera. Default is 0.

    返回 TextureCube

    The created cube map texture.

    Draw the content of a specified scene to a cube map texture.

    绘制指定场景的内容到立方体贴图。

  • 参数

    • camera: Camera

      The camera

    • scene: Scene3D

      The scene

    • renderCubeSize: number

      The pixel size of the cube texture

    • format: TextureFormat

      The color format

    • cullingMask: number

      The culling mask

    返回 ArrayBufferView[]

    Output texture pixels in order: back, front, left, right, up, down

    Draw scene content based on the camera's position in the scene and return it

    根据场景中相机的位置绘制场景内容并返回

  • 参数

    返回 Promise<ArrayBufferView>

    A promise that resolves with the pixel data

    Get the pixels of a texture asynchronously

    获得纹理的像素

  • 参数

    • original: Sprite3D

      The original sprite.

    • parent: Node = null

      The parent node. Default is null.

    • worldPositionStays: boolean = true

      Whether to maintain its own world transformation. Default is true.

    • position: Vector3 = null

      World position, effective when worldPositionStays is false. Default is null.

    • rotation: Quaternion = null

      World rotation, effective when worldPositionStays is false. Default is null.

    返回 Sprite3D

    The cloned instance.

    Create a clone instance of the sprite.

    创建精灵的克隆实例。