|
@@ -11862,7 +11862,7 @@ declare module "babylonjs/sceneComponent" {
|
|
*/
|
|
*/
|
|
export interface ISceneSerializableComponent extends ISceneComponent {
|
|
export interface ISceneSerializableComponent extends ISceneComponent {
|
|
/**
|
|
/**
|
|
- * Adds all the element from the container to the scene
|
|
|
|
|
|
+ * Adds all the elements from the container to the scene
|
|
* @param container the container holding the elements
|
|
* @param container the container holding the elements
|
|
*/
|
|
*/
|
|
addFromContainer(container: AbstractScene): void;
|
|
addFromContainer(container: AbstractScene): void;
|
|
@@ -35357,7 +35357,7 @@ declare module "babylonjs/Audio/audioSceneComponent" {
|
|
*/
|
|
*/
|
|
serialize(serializationObject: any): void;
|
|
serialize(serializationObject: any): void;
|
|
/**
|
|
/**
|
|
- * Adds all the element from the container to the scene
|
|
|
|
|
|
+ * Adds all the elements from the container to the scene
|
|
* @param container the container holding the elements
|
|
* @param container the container holding the elements
|
|
*/
|
|
*/
|
|
addFromContainer(container: AbstractScene): void;
|
|
addFromContainer(container: AbstractScene): void;
|
|
@@ -49114,7 +49114,7 @@ declare module "babylonjs/Layers/effectLayerSceneComponent" {
|
|
*/
|
|
*/
|
|
serialize(serializationObject: any): void;
|
|
serialize(serializationObject: any): void;
|
|
/**
|
|
/**
|
|
- * Adds all the element from the container to the scene
|
|
|
|
|
|
+ * Adds all the elements from the container to the scene
|
|
* @param container the container holding the elements
|
|
* @param container the container holding the elements
|
|
*/
|
|
*/
|
|
addFromContainer(container: AbstractScene): void;
|
|
addFromContainer(container: AbstractScene): void;
|
|
@@ -49635,6 +49635,7 @@ declare module "babylonjs/Layers/layerSceneComponent" {
|
|
import { Scene } from "babylonjs/scene";
|
|
import { Scene } from "babylonjs/scene";
|
|
import { ISceneComponent } from "babylonjs/sceneComponent";
|
|
import { ISceneComponent } from "babylonjs/sceneComponent";
|
|
import { Layer } from "babylonjs/Layers/layer";
|
|
import { Layer } from "babylonjs/Layers/layer";
|
|
|
|
+ import { AbstractScene } from "babylonjs/abstractScene";
|
|
module "babylonjs/abstractScene" {
|
|
module "babylonjs/abstractScene" {
|
|
interface AbstractScene {
|
|
interface AbstractScene {
|
|
/**
|
|
/**
|
|
@@ -49682,6 +49683,17 @@ declare module "babylonjs/Layers/layerSceneComponent" {
|
|
private _drawRenderTargetPredicate;
|
|
private _drawRenderTargetPredicate;
|
|
private _drawRenderTargetBackground;
|
|
private _drawRenderTargetBackground;
|
|
private _drawRenderTargetForeground;
|
|
private _drawRenderTargetForeground;
|
|
|
|
+ /**
|
|
|
|
+ * Adds all the elements from the container to the scene
|
|
|
|
+ * @param container the container holding the elements
|
|
|
|
+ */
|
|
|
|
+ addFromContainer(container: AbstractScene): void;
|
|
|
|
+ /**
|
|
|
|
+ * Removes all the elements in the container from the scene
|
|
|
|
+ * @param container contains the elements to remove
|
|
|
|
+ * @param dispose if the removed element should be disposed (default: false)
|
|
|
|
+ */
|
|
|
|
+ removeFromContainer(container: AbstractScene, dispose?: boolean): void;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
declare module "babylonjs/Shaders/layer.fragment" {
|
|
declare module "babylonjs/Shaders/layer.fragment" {
|
|
@@ -50105,7 +50117,7 @@ declare module "babylonjs/LensFlares/lensFlareSystemSceneComponent" {
|
|
*/
|
|
*/
|
|
rebuild(): void;
|
|
rebuild(): void;
|
|
/**
|
|
/**
|
|
- * Adds all the element from the container to the scene
|
|
|
|
|
|
+ * Adds all the elements from the container to the scene
|
|
* @param container the container holding the elements
|
|
* @param container the container holding the elements
|
|
*/
|
|
*/
|
|
addFromContainer(container: AbstractScene): void;
|
|
addFromContainer(container: AbstractScene): void;
|
|
@@ -50169,7 +50181,7 @@ declare module "babylonjs/Lights/Shadows/shadowGeneratorSceneComponent" {
|
|
*/
|
|
*/
|
|
serialize(serializationObject: any): void;
|
|
serialize(serializationObject: any): void;
|
|
/**
|
|
/**
|
|
- * Adds all the element from the container to the scene
|
|
|
|
|
|
+ * Adds all the elements from the container to the scene
|
|
* @param container the container holding the elements
|
|
* @param container the container holding the elements
|
|
*/
|
|
*/
|
|
addFromContainer(container: AbstractScene): void;
|
|
addFromContainer(container: AbstractScene): void;
|
|
@@ -72098,7 +72110,7 @@ declare module BABYLON {
|
|
*/
|
|
*/
|
|
export interface ISceneSerializableComponent extends ISceneComponent {
|
|
export interface ISceneSerializableComponent extends ISceneComponent {
|
|
/**
|
|
/**
|
|
- * Adds all the element from the container to the scene
|
|
|
|
|
|
+ * Adds all the elements from the container to the scene
|
|
* @param container the container holding the elements
|
|
* @param container the container holding the elements
|
|
*/
|
|
*/
|
|
addFromContainer(container: AbstractScene): void;
|
|
addFromContainer(container: AbstractScene): void;
|
|
@@ -94844,7 +94856,7 @@ declare module BABYLON {
|
|
*/
|
|
*/
|
|
serialize(serializationObject: any): void;
|
|
serialize(serializationObject: any): void;
|
|
/**
|
|
/**
|
|
- * Adds all the element from the container to the scene
|
|
|
|
|
|
+ * Adds all the elements from the container to the scene
|
|
* @param container the container holding the elements
|
|
* @param container the container holding the elements
|
|
*/
|
|
*/
|
|
addFromContainer(container: AbstractScene): void;
|
|
addFromContainer(container: AbstractScene): void;
|
|
@@ -107558,7 +107570,7 @@ declare module BABYLON {
|
|
*/
|
|
*/
|
|
serialize(serializationObject: any): void;
|
|
serialize(serializationObject: any): void;
|
|
/**
|
|
/**
|
|
- * Adds all the element from the container to the scene
|
|
|
|
|
|
+ * Adds all the elements from the container to the scene
|
|
* @param container the container holding the elements
|
|
* @param container the container holding the elements
|
|
*/
|
|
*/
|
|
addFromContainer(container: AbstractScene): void;
|
|
addFromContainer(container: AbstractScene): void;
|
|
@@ -108089,6 +108101,17 @@ declare module BABYLON {
|
|
private _drawRenderTargetPredicate;
|
|
private _drawRenderTargetPredicate;
|
|
private _drawRenderTargetBackground;
|
|
private _drawRenderTargetBackground;
|
|
private _drawRenderTargetForeground;
|
|
private _drawRenderTargetForeground;
|
|
|
|
+ /**
|
|
|
|
+ * Adds all the elements from the container to the scene
|
|
|
|
+ * @param container the container holding the elements
|
|
|
|
+ */
|
|
|
|
+ addFromContainer(container: AbstractScene): void;
|
|
|
|
+ /**
|
|
|
|
+ * Removes all the elements in the container from the scene
|
|
|
|
+ * @param container contains the elements to remove
|
|
|
|
+ * @param dispose if the removed element should be disposed (default: false)
|
|
|
|
+ */
|
|
|
|
+ removeFromContainer(container: AbstractScene, dispose?: boolean): void;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
declare module BABYLON {
|
|
declare module BABYLON {
|
|
@@ -108479,7 +108502,7 @@ declare module BABYLON {
|
|
*/
|
|
*/
|
|
rebuild(): void;
|
|
rebuild(): void;
|
|
/**
|
|
/**
|
|
- * Adds all the element from the container to the scene
|
|
|
|
|
|
+ * Adds all the elements from the container to the scene
|
|
* @param container the container holding the elements
|
|
* @param container the container holding the elements
|
|
*/
|
|
*/
|
|
addFromContainer(container: AbstractScene): void;
|
|
addFromContainer(container: AbstractScene): void;
|
|
@@ -108535,7 +108558,7 @@ declare module BABYLON {
|
|
*/
|
|
*/
|
|
serialize(serializationObject: any): void;
|
|
serialize(serializationObject: any): void;
|
|
/**
|
|
/**
|
|
- * Adds all the element from the container to the scene
|
|
|
|
|
|
+ * Adds all the elements from the container to the scene
|
|
* @param container the container holding the elements
|
|
* @param container the container holding the elements
|
|
*/
|
|
*/
|
|
addFromContainer(container: AbstractScene): void;
|
|
addFromContainer(container: AbstractScene): void;
|