@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
10 lines • 307 B
TypeScript
/**
*
* @param {THREE.Material} material
* @returns {Generator<{texture:THREE.Texture, name:string}>}
*/
export function iterate_three_material_textures(material: THREE.Material): Generator<{
texture: THREE.Texture;
name: string;
}>;
//# sourceMappingURL=iterate_three_material_textures.d.ts.map