David Catuhe 072581095c Nightly + 360 photo 7 年 前
..
assets ea510f73cf fixing build with external dependencies 7 年 前
dist c69a526f0e Small issue with the minimal configuration fixed 7 年 前
src 072581095c Nightly + 360 photo 7 年 前
tests 5d6afcfe16 passing tests to the new architecture 7 年 前
README.md bb272a3545 Viewer configuration - initial 8 年 前
acorn 072581095c Nightly + 360 photo 7 年 前
acorn.cmd 072581095c Nightly + 360 photo 7 年 前
ansi-html 072581095c Nightly + 360 photo 7 年 前
ansi-html.cmd 072581095c Nightly + 360 photo 7 年 前
atob 072581095c Nightly + 360 photo 7 年 前
atob.cmd 072581095c Nightly + 360 photo 7 年 前
errno 072581095c Nightly + 360 photo 7 年 前
errno.cmd 072581095c Nightly + 360 photo 7 年 前
esparse 072581095c Nightly + 360 photo 7 年 前
esparse.cmd 072581095c Nightly + 360 photo 7 年 前
esvalidate 072581095c Nightly + 360 photo 7 年 前
esvalidate.cmd 072581095c Nightly + 360 photo 7 年 前
handlebars 072581095c Nightly + 360 photo 7 年 前
handlebars.cmd 072581095c Nightly + 360 photo 7 年 前
he 072581095c Nightly + 360 photo 7 年 前
he.cmd 072581095c Nightly + 360 photo 7 年 前
html-minifier 072581095c Nightly + 360 photo 7 年 前
html-minifier.cmd 072581095c Nightly + 360 photo 7 年 前
import-local-fixture 072581095c Nightly + 360 photo 7 年 前
import-local-fixture.cmd 072581095c Nightly + 360 photo 7 年 前
internal-ip 072581095c Nightly + 360 photo 7 年 前
internal-ip.cmd 072581095c Nightly + 360 photo 7 年 前
json5 072581095c Nightly + 360 photo 7 年 前
json5.cmd 072581095c Nightly + 360 photo 7 年 前
miller-rabin 072581095c Nightly + 360 photo 7 年 前
miller-rabin.cmd 072581095c Nightly + 360 photo 7 年 前
mime 072581095c Nightly + 360 photo 7 年 前
mime.cmd 072581095c Nightly + 360 photo 7 年 前
mkdirp 072581095c Nightly + 360 photo 7 年 前
mkdirp.cmd 072581095c Nightly + 360 photo 7 年 前
multicast-dns 072581095c Nightly + 360 photo 7 年 前
multicast-dns.cmd 072581095c Nightly + 360 photo 7 年 前
package.json ea510f73cf fixing build with external dependencies 7 年 前
rimraf 072581095c Nightly + 360 photo 7 年 前
rimraf.cmd 072581095c Nightly + 360 photo 7 年 前
semver 072581095c Nightly + 360 photo 7 年 前
semver.cmd 072581095c Nightly + 360 photo 7 年 前
sha.js 072581095c Nightly + 360 photo 7 年 前
sha.js.cmd 072581095c Nightly + 360 photo 7 年 前
strip-indent 072581095c Nightly + 360 photo 7 年 前
strip-indent.cmd 072581095c Nightly + 360 photo 7 年 前
tsc 072581095c Nightly + 360 photo 7 年 前
tsc.cmd 072581095c Nightly + 360 photo 7 年 前
tsconfig-gulp.json d9cf8cc9b7 updating build process 7 年 前
tsconfig.json d9cf8cc9b7 updating build process 7 年 前
tsserver 072581095c Nightly + 360 photo 7 年 前
tsserver.cmd 072581095c Nightly + 360 photo 7 年 前
uglifyjs 072581095c Nightly + 360 photo 7 年 前
uglifyjs.cmd 072581095c Nightly + 360 photo 7 年 前
uuid 072581095c Nightly + 360 photo 7 年 前
uuid.cmd 072581095c Nightly + 360 photo 7 年 前
webpack 072581095c Nightly + 360 photo 7 年 前
webpack-dev-server 072581095c Nightly + 360 photo 7 年 前
webpack-dev-server.cmd 072581095c Nightly + 360 photo 7 年 前
webpack.cmd 072581095c Nightly + 360 photo 7 年 前
webpack.config.js d9cf8cc9b7 updating build process 7 年 前
webpack.gulp.config.js 19d65a6d00 context directory should be correct 7 年 前
which 072581095c Nightly + 360 photo 7 年 前
which.cmd 072581095c Nightly + 360 photo 7 年 前

README.md

BabylonJS Viewer

This project is a 3d model viewer using babylonjs.

Please note that this is an initial release. The API and project structure could (and probably SHOULD) be changed, so please don't rely on this yet in a productive environment.

The viewer is using the latest Babylon from npm (3.1 alpha).

This documentation is also not full. I will slowly add more and more exmplanations.

Basic usage

See basicExample.html in /dist.

Basically, all that is needed is an html tag, and the viewer.js, which includes everything needed to render a Scene:

<babylon model="https://raw.githubusercontent.com/KhronosGroup/glTF-Sample-Models/master/2.0/BoomBox/glTF/BoomBox.gltf" default-viewer="true"></babylon>
<script src="viewer.js"></script>

This will create a (default) viewer and will load the model in this URL using the gltf loader.

The babylon tag will be automatically initialized.

Configuration

Configuration can be provided using html attributes or a JSON (at the moment). A configuration Mapper can be registered to create new configuration readers.

Before I finish a full documentation, take a look at configuration.ts

Templating

The default templates are integrated in the viewer.js file. The current templates are located in /assets/templates/default/ . Those templates can be extended and registered using the configuration file.