@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.
23 lines (22 loc) • 582 B
TypeScript
type UVDefinesMixinConstructor<T = {}> = new (...args: any[]) => T;
/**
* Mixin to add UV defines to your material defines
* @internal
*/
export declare function UVDefinesMixin<Tbase extends UVDefinesMixinConstructor>(base: Tbase): {
new (...args: any[]): {
MAINUV1: boolean;
MAINUV2: boolean;
MAINUV3: boolean;
MAINUV4: boolean;
MAINUV5: boolean;
MAINUV6: boolean;
UV1: boolean;
UV2: boolean;
UV3: boolean;
UV4: boolean;
UV5: boolean;
UV6: boolean;
};
} & Tbase;
export {};