@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
15 lines (14 loc) • 669 B
TypeScript
import { BaseSopOperation } from './_Base';
import { CoreGroup } from '../../../core/geometry/Group';
import { InputCloneMode } from '../../../engine/poly/InputCloneMode';
import { DefaultOperationParams } from '../../../core/operations/_Base';
interface TextureCopySopParams extends DefaultOperationParams {
textureName: string;
}
export declare class TextureCopySopOperation extends BaseSopOperation {
static readonly DEFAULT_PARAMS: TextureCopySopParams;
static readonly INPUT_CLONED_STATE: InputCloneMode[];
static type(): Readonly<'TextureCopy'>;
cook(inputContents: CoreGroup[], params: TextureCopySopParams): Promise<CoreGroup>;
}
export {};