|
@@ -9,7 +9,7 @@ In progress three.js implementation of the [3D Tiles format](https://github.com/
|
|
|
|
|
|
The renderer supports a limited subset of the spec for the moment. See [Issue #15](https://github.com/NASA-AMMOS/3DTilesRendererJS/issues/15) for information on which features are not yet implemented.
|
|
|
|
|
|
-See it in action [here](https://nasa-ammos.github.io/3DTilesRendererJS/example/bundle/)!
|
|
|
+See it in action [here](https://nasa-ammos.github.io/3DTilesRendererJS/example/bundle/customMaterial.html)! Or a kitchen sink demo with all the options and debug features tuneable [here]([here](https://nasa-ammos.github.io/3DTilesRendererJS/example/bundle/index.html)!
|
|
|
|
|
|
**In Progress Features**
|
|
|
- Performance
|
|
@@ -20,6 +20,8 @@ See it in action [here](https://nasa-ammos.github.io/3DTilesRendererJS/example/b
|
|
|
|
|
|
## Basic TilesRenderer
|
|
|
|
|
|
+Setting up a basic application a 3D Tileset.
|
|
|
+
|
|
|
```js
|
|
|
import { TilesRenderer } from '3d-tiles-renderer';
|
|
|
|
|
@@ -47,6 +49,8 @@ function renderLoop() {
|
|
|
|
|
|
## Custom Material
|
|
|
|
|
|
+Setting up a 3D Tileset using a custom material.
|
|
|
+
|
|
|
```js
|
|
|
const tilesRenderer = new TilesRenderer( './path/to/tileset.json' );
|
|
|
tilesRenderer.setCamera( camera );
|