Skip to content

Commit

Permalink
Dynamic colors (#74)
Browse files Browse the repository at this point in the history
* reduce commit

* lint, update package version
  • Loading branch information
dylanebert authored Mar 11, 2024
1 parent 46ab61a commit 6a1c160
Show file tree
Hide file tree
Showing 20 changed files with 1,201 additions and 187 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,7 @@ dist
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

# IDE
.vscode/
playground/
22 changes: 22 additions & 0 deletions examples/fps/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>gsplat.js - FPS Demo</title>
</head>
<body>
<div id="progress-container">
<dialog open id="progress-dialog">
<p>
<label for="progress-indicator">Loading scene...</label>
</p>
<progress max="100" id="progress-indicator"></progress>
</dialog>
</div>

<canvas id="canvas"></canvas>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
Loading

0 comments on commit 6a1c160

Please sign in to comment.