Sun Position: replace DMS label by the Enter Coordinates field
[blender-addons.git] / rigify / feature_sets / __init__.py
blob9fe7a63ce47d17e0630340d2a5e1b35e889a8757
1 # SPDX-License-Identifier: GPL-2.0-or-later
3 # Redirect the module loader to the user scripts directory.
5 # Thus feature set modules can be added to this package without
6 # writing to the actual Rigify installation directory.
8 def _install_path():
9 import bpy
10 import os
11 return os.path.join(bpy.utils.script_path_user(), 'rigify')
14 __path__ = [_install_path()]