This interface describes the structure of the variable sent with the config observables of the scene manager.

O - the type of object we are dealing with (Lighting, Camera, Scene, etc.')

C - the config type

interface PostConfigurationCallback<O, C> {
    newConfig: C;
    object: O;
    sceneManager: SceneManager;
}

Type Parameters

  • O
  • C

Properties

newConfig: C
object: O
sceneManager: SceneManager
""