Loading...
Logo
Processing Forum
Hi,

Is there any possibility to write code in processing and run the script directly in maya?

Thanks,
Petras.

Replies(1)

Re: Processing to Maya

6 months ago
the only way i know off is by sending mel-commands as strings.



mel code:

Copy code
  1. commandPort -n "localhost:12000";



processing code:

Copy code
  1. import processing.net.*;

  2. Client client;

  3. void setup(){
  4.   // mel code: commandPort -n "localhost:12000";
  5.   client = new Client(this, "127.0.0.1", 12000);
  6.   client.write("sphere -n \"new_sphere\";\n");
  7. }

  8. void draw(){
  9. }

  10. void mouseMoved (){
  11.   float x = (mouseX-width/2) *0.1;
  12.   float y = (mouseY-height/2)*0.1;
  13.   client.write("move -a -os -wd "+x+" "+y+" 0 \"new_sphere\";\n");
  14. }