Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ReflectionProbe

Class used to generate realtime reflection / refraction cube textures

see

https://doc.babylonjs.com/how_to/how_to_use_reflection_probes

Hierarchy

  • ReflectionProbe

Index

Constructors

constructor

  • new ReflectionProbe(name: string, size: number, scene: Scene, generateMipMaps?: boolean, useFloat?: boolean, linearSpace?: boolean): ReflectionProbe
  • Creates a new reflection probe

    Parameters

    • name: string

      defines the name of the probe

    • size: number

      defines the texture resolution (for each face)

    • scene: Scene

      defines the hosting scene

    • Optional generateMipMaps: boolean

      defines if mip maps should be generated automatically (true by default)

    • Optional useFloat: boolean

      defines if HDR data (float data) should be used to store colors (false by default)

    • Optional linearSpace: boolean

      defines if the probe should be generated in linear space or not (false by default)

    Returns ReflectionProbe

Properties

nameSearch playground for name

name: string

defines the name of the probe

positionSearch playground for position

position: Vector3

Gets or sets probe position (center of the cube map)

Accessors

cubeTexture

  • Gets the internal CubeTexture used to render to

    Returns RenderTargetTexture

refreshRate

  • get refreshRate(): number
  • set refreshRate(value: number): any
  • Gets or sets the refresh rate to use (on every frame by default)

    Returns number

  • Gets or sets the refresh rate to use (on every frame by default)

    Parameters

    • value: number

    Returns any

renderList

  • Gets the list of meshes to render

    Returns Nullable<AbstractMesh[]>

samples

  • get samples(): number
  • set samples(value: number): any
  • Gets or sets the number of samples to use for multi-sampling (0 by default). Required WebGL2

    Returns number

  • Gets or sets the number of samples to use for multi-sampling (0 by default). Required WebGL2

    Parameters

    • value: number

    Returns any

Methods

attachToMeshSearch playground for attachToMesh

  • Attach the probe to a specific mesh (Rendering will be done from attached mesh's position)

    Parameters

    Returns void

disposeSearch playground for dispose

  • dispose(): void
  • Clean all associated resources

    Returns void

getClassNameSearch playground for getClassName

  • getClassName(): string
  • Get the class name of the refection probe.

    Returns string

    "ReflectionProbe"

getSceneSearch playground for getScene

  • Gets the hosting scene

    Returns Scene

    a Scene

serializeSearch playground for serialize

  • serialize(): any
  • Serialize the reflection probe to a JSON representation we can easily use in the respective Parse function.

    Returns any

    The JSON representation of the texture

setRenderingAutoClearDepthStencilSearch playground for setRenderingAutoClearDepthStencil

  • setRenderingAutoClearDepthStencil(renderingGroupId: number, autoClearDepthStencil: boolean): void
  • Specifies whether or not the stencil and depth buffer are cleared between two rendering groups

    Parameters

    • renderingGroupId: number

      The rendering group id corresponding to its index

    • autoClearDepthStencil: boolean

      Automatically clears depth and stencil between groups if true.

    Returns void

toStringSearch playground for toString

  • toString(fullDetails?: boolean): string
  • Converts the reflection probe information to a readable string for debug purpose.

    Parameters

    • Optional fullDetails: boolean

      Supports for multiple levels of logging within scene loading

    Returns string

    the human readable reflection probe info

Static ParseSearch playground for Parse

  • Parse the JSON representation of a reflection probe in order to recreate the reflection probe in the given scene.

    Parameters

    • parsedReflectionProbe: any

      Define the JSON representation of the reflection probe

    • scene: Scene

      Define the scene the parsed reflection probe should be instantiated in

    • rootUrl: string

      Define the root url of the parsing sequence in the case of relative dependencies

    Returns Nullable<ReflectionProbe>

    The parsed reflection probe if successful

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Property
  • Method
  • Inherited property
  • Inherited method
  • Static property
  • Static method