Skip to content

Commit

Permalink
Deploying to gh-pages from @ 8065282 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
kainino0x committed Sep 10, 2024
1 parent f7e1f4f commit d02d4bb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions sample/videoUploading/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sample/videoUploading/main.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions sample/videoUploading/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ quitIfWebGPUNotAvailable(adapter, device);
// Set video element
const video = document.createElement('video');
video.loop = true;
video.playsInline = true;
video.autoplay = true;
video.muted = true;
video.src = '../../assets/video/pano.webm';
Expand Down
1 change: 1 addition & 0 deletions sample/videoUploading/video.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export default async function ({ useVideoFrame }: { useVideoFrame: boolean }) {
// Set video element
const video = document.createElement('video');
video.loop = true;
video.playsInline = true;
video.autoplay = true;
video.muted = true;
video.src = '../../assets/video/pano.webm';
Expand Down

0 comments on commit d02d4bb

Please sign in to comment.