Valve Data Format: Revision history

Jump to: navigation, search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

11 July 2023

  • curprev 12:0612:06, 11 July 2023Flurry talk contribs 1,925 bytes +1,925 Created page with "'''Valve Data Format (VDF)''' files are key-value stores used by Source games and Steam. == Text VDF == Most VDF files you'll see are text-based. The spec is pretty well-defined on the [https://developer.valvesoftware.com/wiki/KeyValues Valve Developer Community wiki]. <syntaxhighlight lang="c"> "ParentElem" { "Key1" "1.25" "Key2" "String of text" "ChildElem" { "Key3" "15" // and so on } } </syntaxhighlight> == Compiled VDF == In..."