@tresjs/cientos
Version:
Collection of useful helpers and fully functional, ready-made abstractions for Tres
15 lines (14 loc) • 651 B
TypeScript
import { Fn } from '@vueuse/core';
interface CustomShaderMaterialProps {
baseMaterial: Fn;
vertexShader?: string;
fragmentShader?: string;
silent?: boolean;
uniforms?: {
[uniform: string]: any;
};
}
declare const _default: import('vue').DefineComponent<CustomShaderMaterialProps, {
instance: import('vue').ShallowRef<null, null>;
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<CustomShaderMaterialProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;