Skip to content

Commit

Permalink
Merge pull request #10 from est31/master
Browse files Browse the repository at this point in the history
Document some packaging tips
  • Loading branch information
akien-mga committed Feb 22, 2016
2 parents 7ca6d7e + 4c4671f commit 03f589d
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
1 change: 1 addition & 0 deletions reference/_misc_ref.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ Misc
command_line_tutorial
changing_editor_fonts
services_for_ios
packaging_godot
44 changes: 44 additions & 0 deletions reference/packaging_godot.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
.. _doc_packaging_godot:

Packaging Godot
===============

Starting with 2.0, Godot has features to make it easier to package it for application repositories.

Default behaviour
-----------------

Per default, Godot stores all settings and installed templates in a per-user directory.
First Godot checks the ``APPDATA`` environment variable. If it exists, the per-user directory
is the "Godot" subdirectory of ``$APPDATA``.
If ``APPDATA`` doesn't exist, Godot checks the ``HOME`` environment variable. The per-user
directory is then the ".godot" subdir of ``$HOME``.

This meets common operating system standards.

Global template path (Unix only)
--------------------------------

The ``unix_global_settings_path`` build variable is meant for Unix/Linux distro packagers
who want to package export templates together with godot. It allows to put the export
templates on a hardcoded path.

To use it, pass the desired path via the scons ``unix_global_settings_path`` build variable
when building the editor. The export templates then live at the "templates" subdirectory
of the path specified.

Templates installed at the per-user location still override the system wide templates.

This option is only available on unix based platforms.

Self contained mode
-------------------

The self contained mode can be used to package godot for distribution systems where godot
doesn't live at a fixed location. If the godot editor finds a ``._sc_`` file in the directory
the executable is located, godot will continue in "self contained mode".

In self contained mode, all config files are located next to the executable in a directory
called ``editor_data``. Godot doesn't read or write to the per-user location anymore.

Also, the ``._sc_`` file may contain a list of pre-loaded projects.

0 comments on commit 03f589d

Please sign in to comment.