↧
Answer by Ben Gagnon for socket.recv is empty but the result is showing in Maya
I got it to work by setting up a client socket connection from Maya to PyCharm making a python socket server and setting up maya as the client and using the pickle module to send a list. Python Server...
View Articlesocket.recv is empty but the result is showing in Maya
I am trying to get values for the rotation of joints in Maya into an external IDE. I have successfully been able to send commands and Maya responds properly but I am having trouble understanding how...
View ArticleAnswer by xingyulei for socket.recv is empty but the result is showing in Maya
CommandPort is meant for sending commands rather than retrieving output, there's still a way to do it: the trick is you need to send each command and receive output separately:...
View Article