shiffman / OpenKinect-for-Processing

For use of libfreenect in processing
536 stars 218 forks source link

Sketch freezes pernamently after using init funcitons #149

Closed ArcheRion720 closed 5 years ago

ArcheRion720 commented 5 years ago

Hello there, I encounter weird bug, with code that is below, i only get "64 Windows" message in logs, then it just stops on line kinect.init[...](), which init doesn't matter (background don't' draw, nor printlns in setup aren't getting called after that line).

import org.openkinect.processing.*;

Kinect kinect;

void setup()
{
    size(1200, 900);
    kinect = new Kinect(this);
    kinect.initDepth();
}

void draw()
{
    background(0);
}