-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (82 loc) · 4.51 KB
/
Copy pathindex.html
File metadata and controls
85 lines (82 loc) · 4.51 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PZTools Unofficial documentation</title>
<style>
:root { color-scheme: light dark; --bg:#f4f5f7; --panel:#fff; --text:#20242a; --muted:#59616c; --line:#cdd2d9; --accent:#b31c2c; }
@media (prefers-color-scheme: dark) { :root { --bg:#191b1e; --panel:#24272b; --text:#eee; --muted:#bcc2ca; --line:#4b5058; --accent:#ff6978; } }
body { max-width:1180px; margin:0 auto; padding:28px; font:15px/1.55 "Segoe UI",Arial,sans-serif; color:var(--text); background:var(--bg); }
h1 { margin:0; } h2 { margin-top:2em; border-bottom:1px solid var(--line); padding-bottom:.25em; }
a { color:var(--accent); } .lead { color:var(--muted); }
.grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:16px; }
.card { padding:16px 18px; border:1px solid var(--line); border-radius:7px; background:var(--panel); }
.card h3 { margin:.1em 0 .55em; } ul { padding-left:1.3em; }
table { width:100%; border-collapse:collapse; background:var(--panel); } th,td { padding:8px 10px; border:1px solid var(--line); text-align:left; vertical-align:top; }
</style>
</head>
<body>
<h1>PZTools Unofficial documentation</h1>
<p class="lead">Offline documentation for PZWorldEd, TileZed, and BuildingEd.</p>
<div class="grid">
<section class="card">
<h3>Start here</h3>
<ul>
<li><a href="TileZed/PZToolsGuide.html">User guide</a></li>
<li><a href="Feature-Reference.md">Feature reference</a></li>
<li><a href="PZTools-Configuration-Files.md">Configuration files</a></li>
<li><a href="Diagnostics-and-Logs.md">Logs and issue reports</a></li>
<li><a href="../RELEASE_CHANGELOG.md">Current release changes</a></li>
<li><a href="../FEATURE_PROVENANCE.md">Feature provenance</a></li>
<li><a href="../BUILDING.md">Build instructions</a></li>
</ul>
</section>
<section class="card">
<h3>WorldEd</h3>
<ul>
<li><a href="PZ-Project-Doctor-Tiles-and-Paths.md">Project Doctor</a></li>
<li><a href="PZ-B42.20-WorldGen-Editor-and-Prefabs.md">WorldGen</a></li>
<li><a href="PZ-B42.20-Jumbo-Trees.md">Jumbo trees</a></li>
<li><a href="PZ-B42.20-BiomeMapConfig.md">BiomeMapConfig</a></li>
</ul>
</section>
<section class="card">
<h3>TileZed</h3>
<ul>
<li><a href="TileZed/Automapper.html">Automapper</a></li>
<li><a href="PZ-B42.20-Procedural-Loot-Editor.md">Procedural loot</a></li>
<li><a href="PZ-Pack-Comparator-and-Extractor.md">Pack tools</a></li>
<li><a href="PZ-TileDef-Comparator-and-Snow-Editor.md">TileDef tools</a></li>
<li><a href="TileZed/LuaScripting.html">Lua scripting</a></li>
<li><a href="TileZed/BMPTools.html">BMP tools</a></li>
</ul>
</section>
<section class="card">
<h3>BuildingEd</h3>
<ul>
<li><a href="BuildingEd/index.html">Manual</a></li>
<li><a href="BuildingEd/Tools.html">Tools</a></li>
<li><a href="BuildingEd/TileEditingMode.html">Tile mode</a></li>
<li><a href="BuildingEd/LuaScripting.html">Lua scripting</a></li>
</ul>
</section>
</div>
<h2>Find a document by task</h2>
<table>
<tr><th>Task</th><th>Reference</th></tr>
<tr><td>Understand a warning, crash, pause, or missing tile</td><td><a href="Diagnostics-and-Logs.md">Logs and issue reports</a></td></tr>
<tr><td>Repair mixed paths and unresolved tilesets</td><td><a href="PZ-Project-Doctor-Tiles-and-Paths.md">Project Doctor</a></td></tr>
<tr><td>Customize shared configuration</td><td><a href="PZTools-Configuration-Files.md">Configuration files</a></td></tr>
<tr><td>Create automatic terrain rules</td><td><a href="TileZed/Automapper.html">Automapper</a></td></tr>
<tr><td>Edit WorldGen biomes or prefabs</td><td><a href="PZ-B42.20-WorldGen-Editor-and-Prefabs.md">WorldGen editor</a></td></tr>
<tr><td>Inspect or override procedural loot</td><td><a href="PZ-B42.20-Procedural-Loot-Editor.md">Procedural loot editor</a></td></tr>
<tr><td>Extract or compare texture packs</td><td><a href="PZ-Pack-Comparator-and-Extractor.md">Pack tools</a></td></tr>
<tr><td>Edit snow, burnt, or replacement properties</td><td><a href="PZ-TileDef-Comparator-and-Snow-Editor.md">TileDef tools</a></td></tr>
<tr><td>Build the applications</td><td><a href="../BUILDING.md">Build guide</a></td></tr>
</table>
<p>For feature authorship and source provenance, see
<a href="../FEATURE_PROVENANCE.md">FEATURE_PROVENANCE.md</a> and
<a href="../UPSTREAM-HISTORY.md">UPSTREAM-HISTORY.md</a>.</p>
</body>
</html>