@types/three
Version:
TypeScript definitions for three
18 lines (11 loc) • 374 B
TypeScript
import { Texture } from "../../textures/Texture.js";
import Binding from "./Binding.js";
declare class Sampler extends Binding {
version: number;
generation: number | null;
readonly isSampler: true;
constructor(name: string, texture: Texture | null);
set texture(value: Texture | null);
get texture(): Texture | null;
}
export default Sampler;