Loading...
Logo
Processing Forum
Hello

After work with processing now I'm trying processingjs. 

I have not found any good forum about processingjs by now.

I have a few questions and was wondering if anyone 
on the forum has worked with javascript processing and could help me.

I'm trying to make an application in wich coexist the 3D and 2D. 
To do this I mounted a PGraphics object and render over it the 3D scene.

Later over the P2D general scene I draw the GUI (controls, interface...)

That method worked perfectly in my conventional processing, but when trying to run with the program js processing blocks me and stops responding to mouse events.

By testing I can see that everything is broken by introducing lighting

pg.lights ();

strokeWeight() not work either in a P3D scene (This is another problem)

Has anyone had the same problem and found a solution?

It would be helpful for me

thanks

This is the code: It works in processing but not in processingjs

Copy code
  1. PGraphics pg;

  2. float tx;
  3. float ty;

  4. void setup()
  5. {
  6.    size(500,300);
  7.    pg = createGraphics(500,300,P3D);  
  8. }

  9. void draw()
  10. {
  11.   //3D scene
  12.   noLoop();
  13.   pg.beginDraw();
  14.   pg.background(32,64,128);
  15.   pg.lights();
  16.   pg.fill(255,128,32);
  17.   pg.stroke(0,0,0,255);
  18.   pg.strokeWeight(2);
  19.   pg.translate(250,150,0);
  20.   pg.translate(tx,ty,0);
  21.   pg.box(100);
  22.   pg.endDraw();
  23.   image(pg,0,0);
  24.   
  25.   //2D scene
  26.   fill(0,255,0,64);
  27.   stroke(0,0,0,255);
  28.   strokeWeight(2);
  29.   rect(0,0,100,30);
  30.   
  31.   text("This is 2D",5,20);
  32. }

  33. void mouseDragged()
  34. {
  35.   tx = tx + (mouseX - pmouseX);
  36.   ty = ty + (mouseY - pmouseY); 
  37.   redraw();
  38. }