Newer
Older
HuangJiPC / public / static / three / examples / jsm / nodes / utils / SwitchNode.d.ts
@zhangdeliang zhangdeliang on 21 Jun 330 bytes update
import { Node } from '../core/Node';
import { NodeBuilder } from '../core/NodeBuilder';

export class SwitchNode extends Node {

	constructor( node: Node, components?: string );

	node: Node;
	components: string;
	nodeType: string;

	generate( builder: NodeBuilder, output: string ): string;
	copy( source: SwitchNode ): this;

}