-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (57 loc) · 2.33 KB
/
index.html
File metadata and controls
59 lines (57 loc) · 2.33 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pixel Simulation</title>
<link type="text/css" rel="stylesheet" href="CSS/styles.css">
<link id="faviconLink" rel="icon" href="">
</head>
<body>
<div id="uiHolder">
<canvas id="simulationCanvas">
</canvas>
<div id="elementButtonHolder" class="flexCol">
<h3>Elements</h3>
</div>
<div id="particleInfoTextHolder" class="flexCol">
<h3 id="selectedParticleText" style="border: 2px solid whitesmoke"></h3>
<h3 id="particleInformation" style="border: 2px solid whitesmoke"></h3>
</div>
<!--Trying to force gh pages-->
<div id="settingsHolder" class="flexCol">
<h3>Settings!</h3>
<h4>Brush Types</h4>
<div class="flexRow">
<input type="checkbox" id="bucketFillCheck">
<label for="bucketFillCheck">Fill Bucket</label>
</div>
<div class="flexRow">
<input type="checkbox" id="temperatureDisplay">
<label for="temperatureDisplay">Temperature Display Mode</label>
</div>
<div class="flexRow">
<input type="checkbox" id="debugMode">
<label for="debugMode">Enable Debug Stats</label>
</div>
<button id="clearSimButton" class="whiteButton">Clear Simulation</button>
<button id="exportSimButton" class="whiteButton">Export Simulation to txt file</button>
<button id="importSimButton" class="whiteButton">Import Simulation Data</button>
<div class="flexCol">
<input type="file" id="fileImport">
<label for="fileImport">Import Data txt file</label>
</div>
</div>
</div>
</body>
<script src="JS/main.js"></script>
<script src="JS/util.js"></script>
<script src="JS/data.js"></script>
<script src="JS/canvas.js"></script>
<script src="JS/particles.js"></script>
<script src="JS/tools.js"></script>
<script src="JS/temperature.js"></script>
<script src="JS/electricity.js"></script>
<script src="JS/specialParticles.js"></script>
</html>