-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (28 loc) · 918 Bytes
/
Copy pathindex.html
File metadata and controls
32 lines (28 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<title>Visual Fruit Nodes</title>
<link rel="icon" href="resources/favicon_fruit_ox.png" type="image/png">
<style>
body {
margin: 0;
overflow: hidden;
}
</style>
</head>
<body>
<script src="https://pixijs.download/v6.5.8/pixi.min.js"></script><!--
<script src="source/pixi.min.js"></script>-->
<script src="js/utils.js"></script>
<script src="js/ui/ui_canvas.js"></script>
<script src="js/ui/ui_elements.js"></script>
<script src="js/ui/ui_nodeBox.js"></script>
<script src="js/ui/ui_selectionRectangle.js"></script>
<script src="js/ui/ui_dropDownMenu.js"></script>
<script src="js/ui/ui_colorPicker.js"></script>
<script src="js/handler/uiControls.js"></script>
<script src="js/handler/dataControls.js"></script>
<script src="js/handler/viewControls.js"></script>
<script src="js/main.js"></script>
</body>
</html>