The `demo_*` web samples were using unpkg to refer to the Filament build rather than using the local copy, which was inconsistent with the other web samples. We now use the local copy of Filament for everything except the drag-and-drop viewer, which always uses the latest version of Filament.
21 lines
657 B
HTML
21 lines
657 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Filament Demo</title>
|
|
<link href="https://google.github.io/filament/favicon.png" rel="icon" type="image/x-icon" />
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1">
|
|
<style>
|
|
body { margin: 0; overflow: hidden; }
|
|
canvas { touch-action: none; width: 100%; height: 100%; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<canvas></canvas>
|
|
<script src="filament.js"></script>
|
|
<script src="//unpkg.com/gl-matrix@2.8.1"></script>
|
|
<script src="//unpkg.com/gltumble"></script>
|
|
<script src="$SCRIPT"></script>
|
|
</body>
|
|
</html>
|