@types/three
Version:
TypeScript definitions for three
14 lines (9 loc) • 398 B
TypeScript
import { Texture } from "../../textures/Texture.js";
import TextureNode from "../accessors/TextureNode.js";
import UniformNode from "../core/UniformNode.js";
export default class MaxMipLevelNode extends UniformNode<0> {
constructor(textureNode: TextureNode);
get textureNode(): TextureNode;
get texture(): Texture;
}
export const maxMipLevel: (texture: Texture) => MaxMipLevelNode;