Skip to content

Commit

Permalink
Deploy to GitHub pages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Sep 22, 2024
0 parents commit 2d08f90
Show file tree
Hide file tree
Showing 67 changed files with 363,661 additions and 0 deletions.
95 changes: 95 additions & 0 deletions browser/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
<!--
Copyright © 2024 T3D project contributors.
This file is part of the T3D Project.
T3D Project is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
T3D Project is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with the T3D Project. If not, see <http://www.gnu.org/licenses/>.
!-->
<html>
<head>
<title>Tyria 2D</title>
<link rel="stylesheet" type="text/css" href="./static/w2ui-1.4.3.min.css" />
<style type="text/css">
body,
html {
margin: 0;
}

body,
h1,
h2,
h3 {
font-family: sans-serif;
}
h1,
h2 {
text-align: center;
}

#mainGrid {
width: 100%;
height: 100%;
overflow: hidden;
}

.toolbarEntry {
padding: 3px 10px;
}
.toolbarEntry button,
.toolbarEntry input {
padding: 3px;
border-radius: 2px;
border: 1px solid silver;
margin-right: 10px;
}

.tabOutput {
padding: 10px;
}

#stringOutput,
#modelOutput {
position: absolute;
left: 0;
right: 0;
top: 108px;
bottom: 0;
}

#stringOutput.w2ui-grid .w2ui-grid-body table td.w2ui-grid-data > div {
white-space: normal !important;
}

#mainGrid > div {
vertical-align: top;
display: inline-block;
}
#rawOutput {
font-family: monospace;
}
</style>
</head>
<body>
<div id="layout" style="width: 100%; height: 100%"></div>
<script src="./static/jquery.js"></script>
<script src="./static/three.js"></script>
<script src="./static/PointerLockControls.js"></script>
<script src="./static/OrbitControls.js"></script>
<script src="./static/OBJExporter.js"></script>
<script src="./static/t3d-parser.js"></script>
<script src="./static/T3D.js"></script>
<script type="text/javascript" src="./index.js"></script>
<script type="text/javascript" src="./static/w2ui-1.4.3.min.js"></script>
</body>
</html>
Loading

0 comments on commit 2d08f90

Please sign in to comment.