Changeset View
Changeset View
Standalone View
Standalone View
rigify/base_rig.py
| Show All 12 Lines | |||||
| # You should have received a copy of the GNU General Public License | # You should have received a copy of the GNU General Public License | ||||
| # along with this program; if not, write to the Free Software Foundation, | # along with this program; if not, write to the Free Software Foundation, | ||||
| # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||||
| # | # | ||||
| #======================= END GPL LICENSE BLOCK ======================== | #======================= END GPL LICENSE BLOCK ======================== | ||||
| # <pep8 compliant> | # <pep8 compliant> | ||||
| import bpy | |||||
| import sys | |||||
| import traceback | |||||
| from .utils.errors import RaiseErrorMixin | from .utils.errors import RaiseErrorMixin | ||||
| from .utils.bones import BoneDict, BoneUtilityMixin | from .utils.bones import BoneDict, BoneUtilityMixin | ||||
| from .utils.mechanism import MechanismUtilityMixin | from .utils.mechanism import MechanismUtilityMixin | ||||
| from .utils.metaclass import BaseStagedClass | from .utils.metaclass import BaseStagedClass | ||||
| # Only export certain symbols via 'from base_rig import *' | # Only export certain symbols via 'from base_rig import *' | ||||
| __all__ = ['BaseRig', 'stage'] | __all__ = ['BaseRig', 'stage'] | ||||
| ▲ Show 20 Lines • Show All 248 Lines • Show Last 20 Lines | |||||