UNPKG

d2k

Version:

rendering engine from the Dark side of the Force - wip

24 lines (15 loc) 286 B
import { uniqid } from 'u3s'; /** * @author monsieurbadia / https://monsieurbadia.com */ export class Scene { children = []; uuid = uniqid(); name = ''; type = 'scene'; isScene = true; add ( object3d ) { this.children.push( object3d ); return this; }; }