uploading dist

This commit is contained in:
Nye Evans 2021-05-29 13:41:33 +01:00
parent d36b046b15
commit 96a412fec8
16 changed files with 30402 additions and 1 deletions

2
.gitignore vendored
View file

@ -1,2 +1,2 @@
node_modules/
dist/

BIN
dist/Images/bottomLeft.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
dist/Images/bottomRight.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
dist/Images/topLeft.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
dist/Images/topRight.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

13
dist/index.html vendored Normal file
View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>menuPrototype</title>
<link href="styles.css?1622280102525" rel="stylesheet">
</head>
<body>
<div id="root" class="FullPage"></div>
<script type="text/javascript" src="main.js?c10355d511d383e3dc12"></script></body>
</html>

1
dist/main.d.ts vendored Normal file
View file

@ -0,0 +1 @@
export {};

30292
dist/main.js vendored Normal file

File diff suppressed because one or more lines are too long

18
dist/manifest.webmanifest vendored Normal file
View file

@ -0,0 +1,18 @@
{
"xr_type": "aardvark-gadget@^1.5.1",
"name": "menuPrototype",
"icons": [
{
"src": "models/placeholder.glb",
"type": "model/gltf-binary"
}
],
"aardvark": {
"permissions": [
"scenegraph"
],
"browserWidth": 1024,
"browserHeight": 1024,
"startAutomatically": false
}
}

BIN
dist/models/axis.glb vendored Normal file

Binary file not shown.

BIN
dist/models/controller_Infographic.glb vendored Normal file

Binary file not shown.

BIN
dist/models/letterX.glb vendored Normal file

Binary file not shown.

BIN
dist/models/letterY.glb vendored Normal file

Binary file not shown.

BIN
dist/models/letterZ.glb vendored Normal file

Binary file not shown.

BIN
dist/models/placeholder.glb vendored Normal file

Binary file not shown.

77
dist/styles.css vendored Normal file
View file

@ -0,0 +1,77 @@
body, html
{
background-color: transparent;
height: 100%;
font-size: 2rem;
touch-action: manipulation;
overflow: hidden;
}
button{
background-color: white;
border: none;
border-radius: 4px;
margin-left:5px;
}
.Button
{
background-color: lightcoral;
font-size: 4rem;
}
.Label
{
font-size: 4rem;
}
.Button:hover
{
background-color: red;
}
.FullPage
{
width: 100%;
height: 100%;
}
.NoGrabHighlight
{
background-color: white;
}
.InRangeHighlight
{
background-color: lightblue;
}
.GrabbedHighlight
{
background-color: blue;
}
.TransformButton{
font-size: 1.2rem;
}
.TransformControlContainer{
display: flex;
justify-content: space-between;
background-color: gray;
padding: 5px;
border-radius: 15px;
font-size: 1.4rem;
margin-bottom: 10px;
}
.TransformControlImage{
width: 200px;
height: auto;
}