Options
All
  • Public
  • Public/Protected
  • All
Menu

Container with a set of assets that can be added or removed from a scene.

Hierarchy

Index

Constructors

Properties

actionManagers: AbstractActionManager[]

ActionManagers available on the scene.

deprecated
animationGroups: AnimationGroup[]

All of the animation groups added to this scene

see

https://doc.babylonjs.com/features/featuresDeepDive/animation/groupAnimations

animations: Animation[]

Gets a list of Animations associated with the scene

cameras: Camera[]

All of the cameras added to this scene

see

https://doc.babylonjs.com/features/featuresDeepDive/cameras

effectLayers: EffectLayer[]
fluidRenderer: Nullable<FluidRenderer>

Gets or Sets the fluid renderer associated to the scene.

geometries: Geometry[]

The list of geometries used in the scene.

layers: Layer[]

The list of layers (background and foreground) of the scene

lensFlareSystems: LensFlareSystem[]

The list of lens flare system added to the scene

see

https://doc.babylonjs.com/features/featuresDeepDive/environment/lenseFlare

lights: Light[]
materials: Material[]

All of the materials added to this scene In the context of a Scene, it is not supposed to be modified manually. Any addition or removal should be done using the addMaterial and removeMaterial Scene methods. Note also that the order of the Material within the array is not significant and might change.

see

https://doc.babylonjs.com/features/featuresDeepDive/materials/using/materials_introduction

meshes: AbstractMesh[]

All of the (abstract) meshes added to this scene

morphTargetManagers: MorphTargetManager[]

The list of morph target managers added to the scene

see

https://doc.babylonjs.com/features/featuresDeepDive/mesh/dynamicMeshMorph

multiMaterials: MultiMaterial[]
particleSystems: IParticleSystem[]
postProcesses: PostProcess[]

The list of postprocesses added to the scene

prePassRenderer: Nullable<PrePassRenderer>

Gets or Sets the current prepass renderer associated to the scene.

proceduralTextures: ProceduralTexture[]
reflectionProbes: ReflectionProbe[]

The list of reflection probes added to the scene

see

https://doc.babylonjs.com/features/featuresDeepDive/environment/reflectionProbes

rootNodes: Node[]

Gets the list of root nodes (ie. nodes with no parent)

scene: Scene

The scene the AssetContainer belongs to.

skeletons: Skeleton[]
sounds: Nullable<Sound[]>

The list of sounds used in the scene.

subSurfaceConfiguration: Nullable<SubSurfaceConfiguration>

Gets or Sets the current prepass renderer associated to the scene.

textures: BaseTexture[]

Textures to keep.

transformNodes: TransformNode[]

All of the transform nodes added to this scene In the context of a Scene, it is not supposed to be modified manually. Any addition or removal should be done using the addTransformNode and removeTransformNode Scene methods. Note also that the order of the TransformNode within the array is not significant and might change.

see

https://doc.babylonjs.com/features/featuresDeepDive/mesh/transforms/parent_pivot/transform_node

Accessors

  • Texture used in all pbr material as the reflection texture. As in the majority of the scene they are the same (exception for multi room and so on), this is easier to reference from here than from all the materials.

    Returns Nullable<BaseTexture>

  • Texture used in all pbr material as the reflection texture. As in the majority of the scene they are the same (exception for multi room and so on), this is easier to reference from here than from all the materials.

    Parameters

    Returns void

Methods

  • addAllToScene(): void
  • Adds all the assets from the container to the scene.

    Returns void

  • Adds the given effect layer to this scene

    Parameters

    • newEffectLayer: EffectLayer

      defines the effect layer to add

    Returns void

  • addToScene(predicate?: Nullable<((entity: any) => boolean)>): void
  • Adds assets from the container to the scene.

    Parameters

    • Optional predicate: Nullable<((entity: any) => boolean)>

      defines a predicate used to select which entity will be added (can be null)

    Returns void

  • createRootMesh(): Mesh
  • Adds all meshes in the asset container to a root mesh that can be used to position all the contained meshes. The root mesh is then added to the front of the meshes in the assetContainer.

    Returns Mesh

    the root mesh

  • disableFluidRenderer(): void
  • disablePrePassRenderer(): void
  • disableSubSurfaceForPrePass(): void
  • dispose(): void
  • Disposes all the assets in the container

    Returns void

  • Return the first glow layer of the scene with a given name.

    Parameters

    • name: string

      The name of the glow layer to look for.

    Returns Nullable<GlowLayer>

    The glow layer if found otherwise null.

  • Return a the first highlight layer of the scene with a given name.

    Parameters

    • name: string

      The name of the highlight layer to look for.

    Returns Nullable<HighlightLayer>

    The highlight layer if found otherwise null.

  • Gets a lens flare system using its Id

    deprecated

    Please use getLensFlareSystemById instead

    Parameters

    • id: string

      defines the Id to look for

    Returns Nullable<LensFlareSystem>

    the lens flare system or null if not found

  • Returns Node[]

    all meshes, lights, cameras, transformNodes and bones

  • instantiateModelsToScene(nameFunction?: ((sourceName: string) => string), cloneMaterials?: boolean, options?: { doNotInstantiate?: boolean | ((node: Node) => boolean); predicate?: any }): InstantiatedEntries
  • Instantiate or clone all meshes and add the new ones to the scene. Skeletons and animation groups will all be cloned

    Parameters

    • Optional nameFunction: ((sourceName: string) => string)

      defines an optional function used to get new names for clones

        • (sourceName: string): string
        • Parameters

          • sourceName: string

          Returns string

    • Optional cloneMaterials: boolean

      defines an optional boolean that defines if materials must be cloned as well (false by default)

    • Optional options: { doNotInstantiate?: boolean | ((node: Node) => boolean); predicate?: any }

      defines an optional list of options to control how to instantiate / clone models

      • Optional doNotInstantiate?: boolean | ((node: Node) => boolean)

        defines if the model must be instantiated or just cloned

      • predicate?:function
        • predicate(entity: any): boolean
        • defines a predicate used to filter whih mesh to instantiate/clone

          Parameters

          • entity: any

          Returns boolean

    Returns InstantiatedEntries

    a list of rootNodes, skeletons and animation groups that were duplicated

  • Merge animations (direct and animation groups) from this asset container into a scene

    Parameters

    • scene: undefined | Nullable<Scene>

      is the instance of BABYLON.Scene to append to (default: last created scene)

    • animatables: Animatable[]

      set of animatables to retarget to a node from the scene

    • Optional targetConverter: Nullable<((target: any) => Nullable<Node>)>

      defines a function used to convert animation targets from the asset container to the scene (default: search node by name)

    Returns AnimationGroup[]

    an array of the new AnimationGroup added to the scene (empty array if none)

  • Removes all the assets contained in the scene and adds them to the container.

    Parameters

    • Optional keepAssets: KeepAssets

      Set of assets to keep in the scene. (default: empty)

    Returns void

  • populateRootNodes(): void
  • since

    6.15.0 This method checks for any node that has no parent and is not in the rootNodes array, and adds the node there, if so.

    Returns void

  • removeAllFromScene(): void
  • Removes all the assets in the container from the scene

    Returns void

  • Removes the given effect layer from this scene.

    Parameters

    • toRemove: EffectLayer

      defines the effect layer to remove

    Returns number

    the index of the removed effect layer

  • removeFromScene(predicate?: Nullable<((entity: any) => boolean)>): void
  • Removes assets in the container from the scene

    Parameters

    • Optional predicate: Nullable<((entity: any) => boolean)>

      defines a predicate used to select which entity will be added (can be null)

    Returns void

  • Removes the given lens flare system from this scene.

    Parameters

    Returns number

    The index of the removed lens flare system

  • Removes the given reflection probe from this scene.

    Parameters

    Returns number

    The index of the removed reflection probe

  • Adds a parser in the list of available ones

    Parameters

    • name: string

      Defines the name of the parser

    • parser: BabylonFileParser

      Defines the parser to add

    Returns void

  • Gets a general parser from the list of available ones

    Parameters

    • name: string

      Defines the name of the parser

    Returns Nullable<BabylonFileParser>

    the requested parser or null

  • Parser json data and populate both a scene and its associated container object

    Parameters

    • jsonData: any

      Defines the data to parse

    • scene: Scene

      Defines the scene to parse the data for

    • container: AssetContainer

      Defines the container attached to the parsing sequence

    • rootUrl: string

      Defines the root url of the data

    Returns void

Legend

  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Constructor
  • Property
  • Method
  • Property
  • Method
  • Static method

Settings

Theme