babylonjs-loaders 8.31.3 → 8.32.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3092,6 +3092,9 @@ declare module BABYLON.GLTF2.Loader.Extensions {
3092
3092
  multiplier: IObjectAccessor<BABYLON.GLTF2.Loader.INode, Light, number>;
3093
3093
  color: IObjectAccessor<BABYLON.GLTF2.Loader.INode, Light, Color3>;
3094
3094
  };
3095
+ KHR_node_visibility?: {
3096
+ visible: IObjectAccessor<BABYLON.GLTF2.Loader.INode, Mesh, boolean>;
3097
+ };
3095
3098
  };
3096
3099
  };
3097
3100
  }
@@ -3752,12 +3755,12 @@ declare module BABYLON.GLTF2.Loader.Extensions {
3752
3755
  * Defines whether this extension is enabled.
3753
3756
  */
3754
3757
  enabled: boolean;
3755
- private _loader;
3758
+ private _loader?;
3756
3759
  /**
3757
3760
  * @internal
3758
3761
  */
3759
3762
  constructor(loader: BABYLON.GLTF2.GLTFLoader);
3760
- onReady(): Promise<void>;
3763
+ onReady(): void;
3761
3764
  dispose(): void;
3762
3765
  }
3763
3766