@types/three
Version:
TypeScript definitions for three
11 lines (7 loc) • 307 B
TypeScript
import { BufferGeometry, Mesh, NodeMaterial, Texture } from "three/webgpu";
export class TextureHelper extends Mesh<BufferGeometry, NodeMaterial> {
texture: Texture;
type: "TextureHelper";
constructor(texture: Texture, width?: number, height?: number, depth?: number);
dispose(): void;
}