mirror of
https://github.com/overte-org/overte.git
synced 2025-04-29 13:22:36 +02:00
58 lines
No EOL
1.1 KiB
HTML
58 lines
No EOL
1.1 KiB
HTML
<!--
|
|
// main.js
|
|
//
|
|
//
|
|
// Created by James B. Pollack @imgntn on 9/26/2015
|
|
// Copyright 2015 High Fidelity, Inc.
|
|
//
|
|
// Loads dat.gui, underscore, and the app
|
|
// Quickly edit the aesthetics of a particle system.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
-->
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript" src="dat.gui.min.js"></script>
|
|
<script type="text/javascript" src="underscore-min.js"></script>
|
|
<script type="text/javascript" src="main.js?123"></script>
|
|
<script>
|
|
</script>
|
|
<style>
|
|
|
|
body{
|
|
background-color:black;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
#my-gui-container{
|
|
|
|
}
|
|
|
|
.importer{
|
|
margin-bottom:4px;
|
|
}
|
|
|
|
::-webkit-input-placeholder {
|
|
text-align: center;
|
|
font-family: Helvetica
|
|
}
|
|
|
|
#importer-input{
|
|
width:90%;
|
|
line-height: 2;
|
|
margin-left:5%;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="importer">
|
|
<input type='text' id="importer-input" placeholder="Import: Paste JSON here." onkeypress="handleInputKeyPress(event)">
|
|
</div>
|
|
<div id="my-gui-container">
|
|
</div>
|
|
|
|
</body>
|
|
</html> |