== addons ==

- new (and temporary) directory addons_extern/ to store external projects addons
This commit is contained in:
2010-10-24 16:01:21 +00:00
parent a301d2c898
commit 406fd33a86
2 changed files with 19 additions and 4 deletions

View File

@@ -477,8 +477,15 @@ def addon_reset_all():
"""
Sets the addon state based on the user preferences.
"""
paths = script_paths("addons") + script_paths("addons_contrib")
# RELEASE SCRIPTS: official scripts distributed in Blender releases
paths = script_paths("addons")
# CONTRIB SCRIPTS: good for testing but not official scripts yet
paths += script_paths("addons_contrib")
# EXTERN SCRIPTS: external projects scripts
paths += script_paths("addons_extern")
for path in paths:
_sys_path_ensure(path)