Microsoft XNA Compiled Format
From Just Solve the File Format Problem
(Difference between revisions)
(identification) |
|||
Line 11: | Line 11: | ||
== Specification == | == Specification == | ||
− | Microsoft provides [http://xbox.create.msdn.com/en-US/sample/xnb_format XNB format documentation and sample code]. | + | Microsoft provides [https://web.archive.org/web/20180731134229/http://xbox.create.msdn.com/en-US/sample/xnb_format XNB format documentation and sample code (archived)]. |
[[Category:Game data files]] | [[Category:Game data files]] |
Latest revision as of 19:30, 26 May 2023
XNB files are created by Microsoft XNA and distributed with many games. XNB is a general serialization format capable of representing arbitrary .NET objects, but there are common definitions for textures, sound samples, 3D models, fonts, and other game data. XNB files may use LZX compression (referred to as the Xbox XMemCompress format).
[edit] Identification
Files begin with ASCII characters "XNB
", followed by "w
", "m
", or "x
".
[edit] Specification
Microsoft provides XNB format documentation and sample code (archived).