34 lines
704 B
HTML
34 lines
704 B
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<title>learningthree.js boiler plate for three.js</title>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
|
||
|
|
||
|
<script src="../../js/require.js" charset="utf-8"></script>
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<!-- three.js container -->
|
||
|
<div id="container"></div>
|
||
|
<!-- info on screen display -->
|
||
|
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
requirejs.config({
|
||
|
baseUrl: '',
|
||
|
// paths: {
|
||
|
// redux: '../node_modules/redux/dist/redux'
|
||
|
// }
|
||
|
});
|
||
|
|
||
|
require(['Test'], function(foo) {
|
||
|
|
||
|
});
|
||
|
</script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|