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

__init__.py « feature_sets « rigify - git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91f1cdf71165c82dc56b1164b98e66a68da97b68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# SPDX-License-Identifier: GPL-2.0-or-later

# Redirect the module loader to the user scripts directory.

# Thus feature set modules can be added to this package without
# writing to the actual Rigify installation directory.

def _install_path():
    import bpy
    import os
    return os.path.join(bpy.utils.script_path_user(), 'rigify')

__path__ = [ _install_path() ]