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.
7 lines (6 loc) • 391 B
TypeScript
import * 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;
};
declare const convertToNativeUniforms: (uniforms: uniforms) => {};
export { convertToNativeUniforms };