ReflectNode.d.ts 334 B

1234567891011121314151617
  1. import { Vector2 } from '../../../../src/Three';
  2. import { NodeBuilder } from '../core/NodeBuilder';
  3. import { TempNode } from '../core/TempNode';
  4. export class ReflectNode extends TempNode {
  5. constructor( scope?: string );
  6. scope: string;
  7. nodeType: string;
  8. static CUBE: string;
  9. static SPHERE: string;
  10. static VECTOR: string;
  11. }