sunnamed434 / Unturned-Docs

Documentation for Unturned's modding features.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Unturned Documentation

These are the source files for Unturned's modding documentation.

The built documentation is hosted by Read the Docs here: https://docs.smartlydressedgames.com/

Offline Downloads

PDF and Epub versions. of the documentation can be downloaded for offline use.

Contributing

Anyone can contribute towards Unturned's modding documentation. This repository has three branches – latest, stable, and old-markdown-archive – although contributions should only be made towards the "latest" branch.

  • latest: Always has the latest documentation, including upcoming features that might not be available on the current version of the game.

  • stable: Occassionally updated with the additions to the "latest" branch.

  • old-markdown-archive: Contains old documentation, in markdown files (rather than reStructuredText). This documentation does not appear on the online documentation site, and is only kept for historical purposes. Its contents may be removed in the future.

The online documentation pages are generated from .rst (reStructuredText) files. These files are stored in root, but are organized into folders based on where those files appear in the table of contents. For example, the level-asset.rst file is located in the "assets" folder.

Styleguide

Most documentation files are formatted similarly. Some important notes:

  • When asset properties are listed, they should generally follow a **Name** *data type*: Description format. Depending on the data type, it may be hyperlinked instead of italicized, or may also include required values if there is one.

  • Content block directives can be used to add notes, warnings, tips, and other admonitions.

  • Internal links should use the :ref: command.

Building the Docs

The documentation is written in reStructuredText and parsed/built using Sphinx.

Building requires the Read the Docs theme. To install it, run this command in the repository directory:

py -m pip install -r requirements.txt

py runs the python interpreter. -m is short for -module and specifies the pip package installer module. -r is short for --requirement and specifies a file with a list of package names to install.

With Python and Sphinx installed run make html in the root folder to create the site locally at /_build/html/index.html.

Editing using Visual Studio Code with the reStructuredText Extension is recommended.

About

Documentation for Unturned's modding features.


Languages

Language:Python 47.2%Language:Batchfile 28.8%Language:Makefile 24.0%