-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.39 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hammer Tools</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="icon" type="image/x-icon" href="assets/images/favicon.ico">
</head>
<body>
<header class="header">
<div class="header_inner">
<nav class="nav">
<a class="nav_link" href="index.html">hammer tools</a>
<a class="nav_link" href="spiral_generator.html">Spiral Generator</a>
<a class="nav_link" href="heightmap_generator.html">Heightmap Generator</a>
</nav>
</div>
</header>
<div class="content">
<div class="big_text">
Hammer Tools is a series of in-browser tools, designed to automate certain tasks for Valve's Hammer Editor software.
The end product of these tools is a VMF file, which can either be used as a prefab and inserted into the original map, or can be opened directly and copied into the original map.
These tools have only been tested on the TF2 branch of Hammer++ (which should work with the default TF2 branch of Hammer Editor).
Any other version has not been tested, and is not guaranteed to work.
</div>
</div>
<div class="content">
<div class="big_text">
Check out this page's <a class="github_link" href="https://github.com/RealGamerX/Hammer_Tools">GitHub</a> to look at the code or give feedback.
</div>
</div>
<br>
</body>
</html>