Changeset View
Changeset View
Standalone View
Standalone View
rigify/__init__.py
| Show All 26 Lines | bl_info = { | ||||
| "location": "Armature properties, Bone properties, View3d tools panel, Armature Add menu", | "location": "Armature properties, Bone properties, View3d tools panel, Armature Add menu", | ||||
| "doc_url": "{BLENDER_MANUAL_URL}/addons/rigging/rigify/index.html", | "doc_url": "{BLENDER_MANUAL_URL}/addons/rigging/rigify/index.html", | ||||
| "category": "Rigging", | "category": "Rigging", | ||||
| } | } | ||||
| import importlib | import importlib | ||||
| import sys | import sys | ||||
| import bpy | import bpy | ||||
| import os | |||||
| # The order in which core modules of the addon are loaded and reloaded. | # The order in which core modules of the addon are loaded and reloaded. | ||||
| # Modules not in this list are removed from memory upon reload. | # Modules not in this list are removed from memory upon reload. | ||||
| # With the sole exception of 'utils', modules must be listed in the | # With the sole exception of 'utils', modules must be listed in the | ||||
| # correct dependency order. | # correct dependency order. | ||||
| initial_load_order = [ | initial_load_order = [ | ||||
| 'utils', | 'utils', | ||||
| ▲ Show 20 Lines • Show All 583 Lines • Show Last 20 Lines | |||||