-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 2d08f90
Showing
67 changed files
with
363,661 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.