-
Notifications
You must be signed in to change notification settings - Fork 0
/
VDF.html
87 lines (65 loc) · 2.95 KB
/
VDF.html
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
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Cache-Control" content="no-store" />
<link rel="stylesheet" href="./styles/styles.css">
<link rel="icon" type="image/x-icon" href="./img/HL.ico">
<script src="./scripts/script.js" defer></script>
<!-- <script src="./scripts/collapse.js" defer></script>-->
<title>QC Editing</title>
</head>
<body>
<header>
<div class="links">
<h1 class="menu">Valve Developer Format</h1>
<a href="index.html" class="links">home</a>
</div>
<!--╠══════════════ DIDN'T FREAKING WORK!!═══════════════════════╣
<button type="button" class="collapsible">
<span>VDF</span>
</button>
<div class="content">
<a href="VDF.html" class="links">VDF Language</a>
</div>
-->
</header>
<main>
<h3 class="topic">What is the <b>V</b>.alve <b>D</b>.eveloper <b>F</b>.ormat (VDF)?</h3>
<pre class="par">
The VDF format comprises of Many coding languages based off of C# developed by valve for use in the Goldsource and Source engines.
These languages are used to do things such as Compile a map project in hammer, Create custom sequences for models and compile them,
and even downloading and modifying the Half-Life source code to add Custom NPC's with AI, Customize the AI, and make your own entities in the hammer editor!
</pre>
<h3 class="topic">Select an image below to learn more about that area of Gold-source development</h3>
<a href="hammer.html">
<img
src="img/Hammer_Selector.png"
class="img-menu"
>
</a>
<a href="MDL.html">
<img
src="img/modeling.png"
class="img-menu"
>
</a>
<!--
<h3 class="sub">These files are used mostly by Hammer for map editing</h3>
<ul>
<li>".WAD" (<b>W</b>heres <b>A</b>ll the <b>D</b>ata) Used for storing textures</li>
<li>".BSP" (<b>B</b>inary <b>S</b>pace <b>P</b>artitioning) a traditional map format that dates back to Quake</li>
<li>".RMF" (<b>R</b>ich <b>M</b>ap <b>F</b>ormat) Valve's Proprietary format for Hammer (map editor) projects</li>
</ul>
<h3>These files are used for debugging your map </h3>
</main>
<p class="links">
<a href="VDF.html" class="links">QC</a>
</p>
-->
<footer>
</footer>
</body>
</html>