UNPKG

@babylonjs/core

Version:

Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.

18 lines (17 loc) 840 B
/** * Registers the minimum set of engine extensions required for basic rendering with NativeEngine. * Includes: DOM binding, render passes, GPU states, stencil, and the native engine mixins. */ export declare function RegisterCoreNativeEngineExtensions(): void; /** * Registers the standard set of engine extensions needed by most NativeEngine scenes. * Includes everything in {@link RegisterCoreNativeEngineExtensions} plus * textures and file loading. */ export declare function RegisterStandardNativeEngineExtensions(): void; /** * Registers all available engine extensions for the NativeEngine. * Includes everything in {@link RegisterStandardNativeEngineExtensions} plus * cube textures, queries, views, loading screen, and native-specific extensions. */ export declare function RegisterFullNativeEngineExtensions(): void;