Re: [Maya-Python] Wrap deformer connection

2015-12-06 Thread Mahmoodreza Aarabi
Use http://markdown-here.com/ for highlighting your code in group it will be show your code better :) On Sun, Dec 6, 2015 at 11:45 AM, Mahmoodreza Aarabi wrote: > Hey > did you use cmds.connectAttr command? > ​ > > On Sat, Dec 5, 2015 at 10:05 PM,

Re: [Maya-Python] Wrap deformer connection

2015-12-06 Thread Mahmoodreza Aarabi
Hey did you use cmds.connectAttr command? ​ On Sat, Dec 5, 2015 at 10:05 PM, wrote: > Can anyone tell me how to connect a wrap deformer. > I have a full body where all the shape going to be connected and then need > to wrap my cut head to the full body and extract those

[Maya-Python] Re: Wrap deformer connection

2015-12-06 Thread DDrigger1
Did try but really not sure what to connect. Whent to see in the node editor and think I have to connect 2 thing Something like this cmds.connectAttr ('anyObjBaseShape.worldMesh[0]', 'wrap1.basePoints[0]') cmds.connectAttr ('anyObjShape1.worldMesh[0]', 'wrap1.driverPoints[0]') But really not

Re: [Maya-Python] mayapy.exe issue

2015-12-06 Thread David Moulder
You're a folder to deep when setting the python path. Hope that helps. On Mon, 7 Dec 2015 06:40 Padraig Ó Cuínn wrote: > > > PysideCode > myTool > myToolUI > __init__.py > myToolUI.py > MyToolCode >

Re: [Maya-Python] mayapy.exe issue

2015-12-06 Thread Justin Israel
You have a discrepancy between what you say is your import statement, and what you say you are adding to your PYTHONPATH. If you are adding up to and including PysideTools to PYTHONPATH, then your import statement should not have include PysideTools in the namespace. Please confirm you exact

[Maya-Python] Re: mayapy.exe issue

2015-12-06 Thread Padraig Ó Cuínn
exact PYTHONPATH = C:\Users\OCuinn\Dropbox\Maya Scripts\Python Code This is the main Root Folder and holds API/Python/ PythonAPI/ and Mel folders aswell as PysideCode In windows Environment variables its the same from PysideCode.book.qtshim import QtGui, QtCore, Signal I did

[Maya-Python] mayapy.exe issue

2015-12-06 Thread Padraig Ó Cuínn
PysideCode myTool myToolUI __init__.py myToolUI.py MyToolCode __init__.py __init__.py qtshim.py mayautils.py __init__.py Hi everyone above is my current working directory, as you can see they all have their __init__.py

Re: [Maya-Python] mayapy.exe issue

2015-12-06 Thread Padraig Ó Cuínn
Still no luck after changing the variables path Padraig On Dec 6, 2015 10:58 PM, "Kurian O.S" wrote: > PysideCode.MyTool.qtshim is not != PysideCode.myTool.qtshim :) > > On Sun, Dec 6, 2015 at 10:46 PM, David Moulder > wrote: > >> You're a folder

Re: [Maya-Python] mayapy.exe issue

2015-12-06 Thread Kurian O.S
PysideCode.MyTool.qtshim is not != PysideCode.myTool.qtshim :) On Sun, Dec 6, 2015 at 10:46 PM, David Moulder wrote: > You're a folder to deep when setting the python path. Hope that helps. > > On Mon, 7 Dec 2015 06:40 Padraig Ó Cuínn >