mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-14 04:16:41 +02:00
34 lines
No EOL
929 B
HTML
34 lines
No EOL
929 B
HTML
<!--
|
|
// main.js
|
|
//
|
|
//
|
|
// Created by James B. Pollack @imgntnon 9/26/2015
|
|
// Copyright 2014 High Fidelity, Inc.
|
|
//
|
|
// Web app side of the App - contains GUI.
|
|
// Quickly edit the aesthetics of a particle system. This is an example of a new, easy way to do two way bindings between dynamically created GUI and in-world entities.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
// todo: folders, color pickers, animation settings, scale gui width with window resizing
|
|
-->
|
|
<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"></script>
|
|
<script>
|
|
</script>
|
|
<style>
|
|
#my-gui-container{
|
|
width:100%;
|
|
height:100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="my-gui-container">
|
|
</div>
|
|
</body>
|
|
</html> |