diff options
Diffstat (limited to 'client/splash/face/index.js')
| -rw-r--r-- | client/splash/face/index.js | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/client/splash/face/index.js b/client/splash/face/index.js index fe21f52b..f52ac57b 100644 --- a/client/splash/face/index.js +++ b/client/splash/face/index.js @@ -1,5 +1,8 @@ -import DRACOLoader from '../../util/vendor/DRACOLoader' -import GeometryHelper from '../../util/vendor/geometryHelper' +import faces from './faces' -DRACOLoader.setDecoderPath('/assets/js/vendor/draco/') -var dracoLoader = new THREE.DRACOLoader(); +const names = Object.keys(faces) + +function load(){ + const name = choice(names) + +}
\ No newline at end of file |
