summaryrefslogtreecommitdiff
path: root/client/mapeditor.html
diff options
context:
space:
mode:
authorTyler Murphy <tylerm@tylerm.dev>2023-06-29 11:40:46 -0400
committerTyler Murphy <tylerm@tylerm.dev>2023-06-29 11:40:46 -0400
commitf5fcce110a915fca1b114001962170733276e5df (patch)
tree6ce82c649d7377b42e75c9feb88d73e4aa15d713 /client/mapeditor.html
parentghost (diff)
downloadtuxman-f5fcce110a915fca1b114001962170733276e5df.tar.gz
tuxman-f5fcce110a915fca1b114001962170733276e5df.tar.bz2
tuxman-f5fcce110a915fca1b114001962170733276e5df.zip
audio, finalize gameplay, wrap around map, stuff
Diffstat (limited to 'client/mapeditor.html')
-rw-r--r--client/mapeditor.html27
1 files changed, 17 insertions, 10 deletions
diff --git a/client/mapeditor.html b/client/mapeditor.html
index 6fbb158..ed63190 100644
--- a/client/mapeditor.html
+++ b/client/mapeditor.html
@@ -10,20 +10,27 @@
<canvas id="canvas" style="display: none;"></canvas>
<style id="style"></style>
<div id="center">
- <form id="mapgen" autocomplete="off">
- <input type="text" id="width" name="width" placeholder="Map Width">
- <input type="text" id="height" name="height" placeholder="Map Height">
- <input type="submit" value="Create"/>
- </form>
- <div id="popup" style="display: none">
- <input type="button" id="close" value="x" onclick="document.getElementById('popup').style.display = 'none'">
- <textarea id="textarea" disabled='true'></textarea>
- <input type="button" id="copy" value="Copy to clipboard">
+ <div id="center-inner">
+ <form id="mapgen" autocomplete="off">
+ <input type="text" id="width" name="width" placeholder="Map Width">
+ <input type="text" id="height" name="height" placeholder="Map Height">
+ <input type="submit" value="Create"/>
+ </form>
+ <form id="mapload" autocomplete="off">
+ <input type="text" id="data" name="data" placeholder="Map Data">
+ <input type="submit" value="Load"/>
+ </form>
+ <div id="popup" style="display: none">
+ <input type="button" id="close" value="x" onclick="document.getElementById('popup').style.display = 'none'">
+ <textarea id="textarea" disabled='true'></textarea>
+ <input type="button" id="copy" value="Copy to clipboard">
+ </div>
</div>
</div>
<div id="sidebar" style="display: none;">
<p>W: Place Wall</p>
- <p>G: Place Ghost Wall</p>
+ <p>G: Place Ghost Only Wall</p>
+ <p>R: Place Ghost Exit</p>
<p>H: Place Ghost Spawn</p>
<p>F: Place Food</p>
<p>1: Place Pac Spawn 1</p>