Преглед изворни кода

Merge branch 'master' of https://github.com/NASA-AMMOS/3DTilesRendererJS

Garrett Johnson пре 5 година
родитељ
комит
acfbdcd6ec
1 измењених фајлова са 10 додато и 1 уклоњено
  1. 10 1
      README.md

+ 10 - 1
README.md

@@ -9,7 +9,12 @@ 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/)!
+**Examples**
+
+[Kitchen sink example with all options here](https://nasa-ammos.github.io/3DTilesRendererJS/example/bundle/index.html)!
+
+[Custom material example here](https://nasa-ammos.github.io/3DTilesRendererJS/example/bundle/customMaterial.html)!
+
 
 **In Progress Features**
 - Performance
@@ -20,6 +25,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 +54,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 );