mirror of
https://github.com/overte-org/overte.git
synced 2025-06-01 11:01:43 +02:00
42 lines
1.5 KiB
HTML
42 lines
1.5 KiB
HTML
<!--
|
|
// particleExplorer.hml
|
|
//
|
|
//
|
|
// Created by James B. Pollack @imgntn on 9/26/2015
|
|
// Copyright 2015 High Fidelity, Inc.
|
|
//
|
|
|
|
// Reworked by Menithal on 20/5/2017
|
|
// Using a custom built system for High Fidelity
|
|
//
|
|
// 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>
|
|
<link rel="stylesheet" type="text/css" href="../html/css/colpick.css">
|
|
<script type="text/javascript" src="qrc:///qtwebchannel/qwebchannel.js"></script>
|
|
<script type="text/javascript" src="../html/js/eventBridgeLoader.js"></script>
|
|
<!---->
|
|
<script type="text/javascript" src="../html/js/jquery-2.1.4.min.js"></script>
|
|
<script type="text/javascript" src="../html/js/colpick.js"></script>
|
|
|
|
<script type="text/javascript" src="underscore-min.js"></script>
|
|
<script type="text/javascript" src="hifi-entity-ui.js?v1"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="../html/css/hifi-style.css">
|
|
<link rel="stylesheet" type="text/css" href="../html/css/edit-style.css">
|
|
<link rel="stylesheet" type="text/css" href="particle-style.css">
|
|
</head>
|
|
<body>
|
|
<div id="particle-explorer">
|
|
<div class="section-header">
|
|
<label> Particle Explorer </label>
|
|
</div>
|
|
<!-- This will be filled by the script! -->
|
|
</div>
|
|
<div id="rem"></div>
|
|
<script type="text/javascript" src="particleExplorer.js"></script>
|
|
</body>
|
|
</html>
|