This commit is contained in:
2025-11-24 22:26:56 +08:00
parent e4c713035b
commit 719058ff01
8 changed files with 310 additions and 33 deletions

View File

@@ -1619,5 +1619,28 @@ def extraOptions():
cmds.showWindow("Extra_Options")
# 导出主要函数,使其可以从外部调用
__all__ = [
'fk_to_ik',
'ik_to_fk',
'delete_setup',
'documentation',
'extraOptions',
'user_interface',
]
def show():
"""
便捷函数:启动 IK/FK Switcher UI
使用方法:
import animation_tools.ik_fk_switcher as ikfk
ikfk.show()
"""
user_interface()
if __name__ == "__main__":
user_interface()