@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
14 lines (13 loc) • 636 B
TypeScript
import { TypedContainer } from './_Base';
import { ContainableMap } from './utils/ContainableMap';
import { NodeContext } from '../poly/NodeContext';
import { Number2 } from '../../types/GlobalTypes';
export declare class TextureContainer extends TypedContainer<NodeContext.COP> {
set_content(content: ContainableMap[NodeContext.COP]): void;
texture(): ContainableMap[NodeContext.COP];
coreContent(): ContainableMap[NodeContext.COP];
coreContentCloned(): ContainableMap[NodeContext.COP] | undefined;
object(): import("three").Texture;
infos(): import("three").Texture[] | undefined;
resolution(): Number2;
}