- Implement camera controls

- Option to resolve object properties when fetching from object store (names, descriptions etc). Can be more efficient - TODO: use FamilyProperties for child prims.
- Refactored objectstore to reduce code duplication
This commit is contained in:
Casper Warden
2018-10-19 16:30:09 +01:00
parent ff0a5fa58b
commit 2852c76cb0
42 changed files with 2651 additions and 2121 deletions

View File

@@ -1,5 +1,5 @@
import { BBox } from 'rbush-3d/dist';
import { IGameObject } from './IGameObject';
import { GameObject } from '../GameObject';
export interface ITreeBoundingBox extends BBox {
gameObject: IGameObject;
gameObject: GameObject;
}