Устанавка скрипта в Maya
HTML-код
- Опубликовано: 9 янв 2025
- Содержимое скриптов:
Откуда копируем геометрию:
from maya import cmds
import maya.api.OpenMaya as om
get the mesh vertex position
sel = cmds.ls(sl=True)
get the dag path
selection_list = om.MSelectionList ()
selection_list.add(sel[0])
dag_path = selection_list.getDagPath (0)
creating Mfn Mesh
mfn_mesh = om.MFnMesh(dag_path)
points = mfn_mesh.getPoints()
Куда копируем геометрию:
from maya import cmds
import maya.api.OpenMaya as om
set the mesh vertex position
sel = cmds.ls(sl=True)
get the dag path
selection_list = om.MSelectionList ()
selection_list.add(sel[0])
dag_path = selection_list.getDagPath (0)
creating Mfn Mesh
mfn_mesh = om.MFnMesh(dag_path)
mfn_mesh.setPoints(points)
Трек: tunetank.com/t...
Спасибо. Продолжение видео будет?
Конечно, скоро будет больше видео)
как выйти с этого мел?
у меня не работает анимация