Changeset View
Changeset View
Standalone View
Standalone View
rigify/rigs/limbs/super_finger.py
| Show All 13 Lines | |||||
| # 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 bpy | ||||
| import re | |||||
| import json | import json | ||||
| from itertools import count | from itertools import count | ||||
| from ...utils.errors import MetarigError | |||||
| from ...utils.bones import put_bone, flip_bone, align_chain_x_axis, set_bone_widget_transform | from ...utils.bones import put_bone, flip_bone, align_chain_x_axis, set_bone_widget_transform | ||||
| from ...utils.naming import make_derived_name | from ...utils.naming import make_derived_name | ||||
| from ...utils.widgets import create_widget | from ...utils.widgets import create_widget | ||||
| from ...utils.widgets_basic import create_circle_widget, create_sphere_widget | from ...utils.widgets_basic import create_circle_widget, create_sphere_widget | ||||
| from ...utils.misc import map_list | from ...utils.misc import map_list | ||||
| from ...utils.layers import ControlLayersOption | from ...utils.layers import ControlLayersOption | ||||
| from ...utils.switch_parent import SwitchParentBuilder | from ...utils.switch_parent import SwitchParentBuilder | ||||
| from ...utils.animation import add_generic_snap, add_fk_ik_snap_buttons | from ...utils.animation import add_generic_snap, add_fk_ik_snap_buttons | ||||
| ▲ Show 20 Lines • Show All 627 Lines • Show Last 20 Lines | |||||