Proscene library: Mouse events do not work properly with the new version of processing. v2.08
in
Contributed Library Questions
•
7 months ago
Hello
I'm using the library
proscene and I just install the new version of processing : v2.08.
I do not know why but the mouse events fail. The escene can be rotated, but I can't move it, or make zoom.
Anyone else would happen?
Any solutions? It is a very useful library and would love to continue using
Thanks and regards!
The next code works properly with Processing v2.0b7
and fails with Processing v2.0b8
- import remixlab.proscene.*;
- Scene scene;
- void setup()
- {
- size(1000,500,P3D);
- scene = new Scene(this);
- }
- void draw()
- {
- background(128);
- fill(20,40,60);
- box(100);
- }
1