UNPKG

three

Version:

JavaScript 3D library

14 lines (8 loc) 356 B
import { Object3D } from './../../core/Object3D'; import { Material } from './../../materials/Material'; // Extras / Objects ///////////////////////////////////////////////////////////////////// export class ImmediateRenderObject extends Object3D { constructor( material: Material ); material: Material; render( renderCallback: Function ): void; }