123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>BabylonJS Viewer - UFO</title>
- <style>
- babylon,
- #viewport {
- max-width: 900px;
- max-height: 600px;
- width: 100%;
- height: 600px;
- }
- </style>
- </head>
- <body>
- <babylon extends="default, shadowDirectionalLight, environmentMap" templates.nav-bar.params.hide-animations="true" templates.nav-bar.params.disable-on-fullscreen="true">
- <scene glow="true">
- <main-color r="0.5" g="0.2" b="0.2"></main-color>
- </scene>
- <model url="https://models.babylonjs.com/ufo.glb">
- <animation auto-start="true"></animation>
- </model>
- <camera beta="0.8"></camera>
- </babylon>
- <script src="viewer.js"></script>
- </body>
- </html>
|