JonasOuellet / zsocket

Simple dll for zbrush to send command to Maya or other DCC through socket communication.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

zsocket

Simple dll for zbrush to send command to Maya or other DCC through socket communication.

Compile with visual studio.

Open a port in Maya

cmds.commandPort(name="127.0.0.1:6001", sourceType='python')

Call the dll with zscript to send command to Maya.

[RoutineCall,CheckSystem]
[MemCreate, output, 256, 0]

[VarSet, err, [FileExecute,[Var,dllPath],"SocketSend", "cmds.createNode('transform')",,,output]]
[VarSet, outStr, ""]
[MemReadString, output, outStr]
[MemDelete, output]
[If, err,
  [Note, [StrMerge, "Error Occured: ", outStr, err]]
,
  [Note, outStr]
]

See Test_zscript.txt for more info

About

Simple dll for zbrush to send command to Maya or other DCC through socket communication.


Languages

Language:C++ 83.9%Language:C 16.1%