hexcraft
ARCHIVED - browser-based 3D hexagonal tile editor built with Three.js
git clone https://git.vogt.world/hexcraft.git
Log | Files | README.md | LICENSE
← Commit log
commit
message
Tooltip changes, retitling index.html.
author
date
2013-12-30 00:08:10
stats
2 file(s) changed, 14 insertions(+), 9 deletions(-)
files
README.md
index.html
 1diff --git a/README.md b/README.md
 2index 712fa93..cf71e52 100644
 3--- a/README.md
 4+++ b/README.md
 5@@ -4,4 +4,8 @@ Browser-based 3D hexagonal tile editor built with Three.js
 6 
 7 ## Usage
 8 
 9-Entirely front end. Open index.html in your browser and off you go! Scene saves are made to localStorage with javascript.
10\ No newline at end of file
11+Entirely front end. Open index.html in your browser and off you go! Scene saves are made to localStorage with javascript.
12+
13+## Example
14+
15+An example can be found at http://benjvogt.com/hex
16\ No newline at end of file
17diff --git a/index.html b/index.html
18index 598fd14..b30baf0 100644
19--- a/index.html
20+++ b/index.html
21@@ -2,7 +2,7 @@
22 <!DOCTYPE html>
23 <html lang="en">
24 	<head>
25-		<title>Hexagon Editor</title>
26+		<title>Hexagonal Tile Editor</title>
27 		<meta charset="utf-8">
28     <link href="css/bootstrap.css" rel="stylesheet" media="screen">
29     <link href="css/bootstrap-colorpicker.min.css" rel="stylesheet" media="screen">
30@@ -19,12 +19,12 @@
31           <polygon class="color" points="12,3 28,3 36,17 28,33 12,33 4,17"/>
32           <polygon class="drop" points="10,0 30,0 40,17 30,36 10,36 0,17"/>
33         </svg>
34-        <svg version="1.1" id="hexsvg" class="hexsvg button pull-right remove" height="36" width="40" data-toggle="tooltip" title="Remove hexagon tool">
35+        <svg version="1.1" id="hexsvg" class="hexsvg button pull-right remove" height="36" width="40" data-toggle="tooltip" title="Remove hexagon">
36           <polygon class="drop" points="10,0 30,0 40,17 30,36 10,36 0,17"/>
37           <polygon class="shape" points="12,3 28,3 36,17 28,33 12,33 4,17"/>
38           <polygon class="icon" points="12,20 12,16 28,16 28,20"/>
39         </svg>
40-        <svg version="1.1" id="hexsvg" class="hexsvg button pull-right add active" height="36" width="40" data-toggle="tooltip" title="Add hexagon tool">
41+        <svg version="1.1" id="hexsvg" class="hexsvg button pull-right add active" height="36" width="40" data-toggle="tooltip" title="Add hexagon">
42           <polygon class="drop" points="10,0 30,0 40,17 30,36 10,36 0,17"/>
43           <polygon class="shape" points="12,3 28,3 36,17 28,33 12,33 4,17"/>
44           <polygon class="icon" points="18,10 22,10 22,16 28,16 28,20 22,20 22,26 18,26 18,20 12,20 12,16 18,16"/>
45@@ -92,9 +92,9 @@
46           <div class="modal-footer">
47             <a href="#" data-dismiss="modal">Let's Go!</a>
48           </div>
49-        </div><!-- /.modal-content -->
50-      </div><!-- /.modal-dialog -->
51-    </div><!-- /.modal -->
52+        </div>
53+      </div>
54+    </div>
55     
56     <div class="modal fade load" id="loadModal" tabindex="-1" role="dialog" aria-hidden="true">
57       <div class="modal-dialog">
58@@ -118,9 +118,9 @@
59           <div class="modal-footer">
60             <a href="#" class="" data-dismiss="modal">Close</a>
61           </div>
62-        </div><!-- /.modal-content -->
63-      </div><!-- /.modal-dialog -->
64-    </div><!-- /.modal -->
65+        </div>
66+      </div>
67+    </div>
68 
69     
70 		<script src="js/vendor/three.min.js"></script>