-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshell.html
More file actions
41 lines (28 loc) · 1.27 KB
/
Copy pathshell.html
File metadata and controls
41 lines (28 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!doctype html> <html lang="en-us">
<!--
Copyright 2023 The Nodepp Project Authors. All Rights Reserved.
Licensed under the MIT (the "License"). You may not use
this file except in compliance with the License. You can obtain a copy
in the file LICENSE in the source distribution or at
https://github.com/NodeppOficial/nodepp/blob/main/LICENSE
-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta charset="utf-8"> <title> Duck Hunt VR </title>
<link rel="stylesheet" href="./assets/uikit.css">
<script src="./assets/artoolkit.js" ></script>
<script src="./assets/arcontroller.js" ></script>
<script src="./assets/engine.js" ></script>
</head>
<body class="uk-background-dark uk-height-expand uk-flex uk-flex-center uk-flex-middle">
<button class="uk-icon uk-button uk-position-fixed uk-position-bottom-right"
icon="arrows_output" style="z-index:1000;" ></button>
<video autoplay width="300" height="200" hidden ></video>
<canvas class="emscripten uk-width-expand uk-height-expand"
style="filter: blur(0.3px) contrast(1.3);"
oncontextmenu="event.preventDefault()"
id="canvas" tabindex=-1 >
</canvas>
{{{ SCRIPT }}}
</body>
</html>