r3f-points-fx
Version:
React three fiber component for easily creating high performance particles meshes. Makes particles morphing from one arrangement to another a piece of cake.
9 lines (8 loc) • 457 B
TypeScript
import type * as THREE from 'three';
type uniforms = {
[name: string]: Array<any> | Float32Array | Int32Array | THREE.Color | THREE.CubeTexture | THREE.Matrix3 | THREE.Matrix4 | THREE.Quaternion | THREE.Texture | THREE.Vector2 | THREE.Vector3 | THREE.Vector4 | boolean | number | null;
};
export declare const pointsShaderMaterial: (uniforms: uniforms, vertex: string, fragment: string) => typeof THREE.ShaderMaterial & {
key: string;
};
export {};