Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2008-04-13 02:17:23 +0400
committerCampbell Barton <ideasman42@gmail.com>2008-04-13 02:17:23 +0400
commite17b13d9d283bcf2536fb49c86252cb04f3170fc (patch)
tree858da7ff0053ebba7e742e8719486c6fc9abf99e /source/creator
parentd0d4604dad26a9e0039100b627bfa245c788cb57 (diff)
Made octree size always available since its used for baking.
Documented obscure environment variables
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 806a8c108c0..a1d837d5b6b 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -230,6 +230,18 @@ static void print_help(void)
printf (" -v\t\tPrint Blender version and exit\n");
printf (" --\t\tEnds option processing. Following arguments are \n");
printf (" \t\t passed unchanged. Access via Python's sys.argv\n");
+ printf ("\nEnironment Variables:\n");
+ printf (" $HOME\t\t\tStore files such as .blender/ .B.blend .Bfs .Blog here.\n");
+#ifdef WIN32
+ printf (" $TEMP\t\tStore temporary files here.\n");
+#else
+ printf (" $TMP or $TMPDIR\tStore temporary files here.\n");
+ printf (" $SDL_AUDIODRIVER\tLibSDL audio driver - alsa, esd, alsa, dma.\n");
+ printf (" $BF_TIFF_LIB\t\tUse an alternative libtiff.so for loading tiff image files.\n");
+#endif
+ printf (" $IMAGEEDITOR\t\tImage editor executable, launch with the IKey from the file selector.\n");
+ printf (" $WINEDITOR\t\tText editor executable, launch with the EKey from the file selector.\n");
+ printf (" $PYTHONHOME\t\tPath to the python directory, eg. /usr/lib/python.\n");
printf ("\nNote: Arguments must be separated by white space. eg:\n");
printf (" \"blender -ba test.blend\"\n");
printf (" ...will ignore the 'a'\n");