Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion assets/tinyMapEditor.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,5 @@ input[type=text] { width: 30px }

/*************************************** Output */
output { display: block; margin: 0 auto; padding-right: 250px; text-align: center; z-index: 1 }
textarea { width: 400px; height: 200px; margin: 0; font-family: monospace }
textarea { width: 400px; height: 200px; margin: 0; font-family: monospace }
textarea#uploadArea { width: 165px; height: 55px; margin: 0; font-family: monospace }
8 changes: 8 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,20 @@ <h2>A 2D tile map editor for JavaScript based games (work in progress).</h2>
<p><input id="erase" type="button" value="Tile Eraser" /></p>
<p><input id="build" type="button" value="Build Map" /></p>
<p><input id="clear" type="button" value="Clear Canvas" /></p>
<br/>
<br />
<p>
<span>Invert output?</span>
<input id="invert" type="checkbox" />
</p>

<label>Upload Map</label>

<p><input id="upload-map" type="button" value="Upload Map" /></p>
<textarea id="uploadArea">
1. Put your array
2. Press upload map button
</textarea>
</li>
</ul>
</menu>
Expand Down
Loading