web3d / index.html
Julien Chaumond
[PITA] Setup decent dev workflow
18a9c33
raw
history blame
515 Bytes
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>My first three.js app</title>
<style>
body { margin: 0; }
canvas { width: 100%; height: 100% }
</style>
</head>
<body>
<script src="node_modules/three/build/three.js"></script>
<script src="node_modules/three/examples/js/libs/stats.min.js"></script>
<script src="node_modules/three/examples/js/loaders/ColladaLoader.js"></script>
<script src="dist/lib/Log.js"></script>
<script src="dist/post/index.js"></script>
</body>
</html>