Maya控制器库实现
Project description
maya-controller-hub
maya控制器库实现
目录
快速开始
安装
注意下方的python是你的Python, 正常情况下可以直接通过python调用, 而Maya的python一般是C:\Program Files\Autodesk<Maya版本>\bin\mayapy.exe
python -m pip install maya-controller-hub
在windows下maya的安装例子
注意:
- 请将Maya路径替换为自己的。
- 请使用cmd
"C:\Program Files\Autodesk\Maya2018\bin\mayapy.exe" -m pip install maya-controller-hub
使用
例子
# -*-coding:utf-8 -*-
from __future__ import unicode_literals, print_function, division
import cpmel.cmds as cc
from rig_core.all import *
from controller_hub import ControllerHub
ctx = Ctx()
for i in range(4):
cc.mel.eval('circle -c 0 0 0 -nr 0 1 0 -sw 360 -r 1 -d 3 -ut 0 -tol 0.1 -s 8 -ch 0;')
with ControllerHub(ctx, 'your-controller-hub-path') as control_hub:
print('control_hub', control_hub)
control_hub.use_template(
'cp.cube',
[cc.new_object('nurbsCircle1')],
translate=(1, 1, 1),
color='#19448e') # 一个蓝色的正方体控制器
control_hub.use_template(
'cp.octahedron',
[cc.new_object('nurbsCircle2')],
rotate=(45, 45, 45),
color=(0.8, 0.8, 0.8)) # 一个白色的正八面体控制器
control_hub.use_template(
'cp.flower',
[cc.new_object('nurbsCircle3')],
rotate='+y',
color=(0, 0, 0)) # 一个黑色的花形控制器
control_hub.use_template(
'cp.triangle',
[cc.new_object('nurbsCircle4')],
scale=(1.5, 1.5, 1.5),
color=14) # 一个绿色的三角形控制器
版权说明
该项目签署了Apache-2.0 授权许可,详情请参阅 LICENSE
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file maya_controller_hub-0.1.2.tar.gz
.
File metadata
- Download URL: maya_controller_hub-0.1.2.tar.gz
- Upload date:
- Size: 9.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0cdea6971f91b78c3345712126fa8d9a3b0870c4e4168dbe35517c32d2981b13 |
|
MD5 | 421d376399f4d5294cef3e287e009bd3 |
|
BLAKE2b-256 | 86acd0a1f12d97120f8f67ea0a0a5538fd7bcce8c003a854115bc7145cd987c2 |
File details
Details for the file maya_controller_hub-0.1.2-py2.py3-none-any.whl
.
File metadata
- Download URL: maya_controller_hub-0.1.2-py2.py3-none-any.whl
- Upload date:
- Size: 9.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7ec785d22e5222f1d608ffaa749fb92060ff8e31adbe07214be17f61877f0ab5 |
|
MD5 | a3bd2ec5b05c76073cda16f7b16e6ba0 |
|
BLAKE2b-256 | 56a50bd6e90c30a794005373145c11c0e0c32a84eb1f08713a0f20b619ed8649 |