UNPKG

polygonjs-engine

Version:

node-based webgl 3D engine https://polygonjs.com

21 lines (19 loc) 705 B
import {CoreGroup} from '../../../core/geometry/Group'; import {Material} from 'three/src/materials/Materials'; import {Texture} from 'three/src/textures/Texture'; import {Object3D} from 'three/src/core/Object3D'; import {TimelineBuilder} from '../../../core/animation/TimelineBuilder'; import {NodeContext} from '../../poly/NodeContext'; export interface ContainableMap { [NodeContext.ANIM]: TimelineBuilder; [NodeContext.EVENT]: string; [NodeContext.SOP]: CoreGroup; [NodeContext.GL]: string; [NodeContext.JS]: string; [NodeContext.MANAGER]: boolean; [NodeContext.MAT]: Material; [NodeContext.COP]: Texture; [NodeContext.OBJ]: Object3D; [NodeContext.ROP]: any; [NodeContext.POST]: number; }