I have been trying to use KineticJS with some JavaScript prototypes, and I have had success getting the drawing part done, but when I try to use the onFrame function for the animation, I get nothing. The original way I set up the onFrame gives no response:
this.stage.onFrame(function(frame) {
this.doDraw();
});
Thinking that perhaps the "this" was out of scope, I tried creating a variable to refer to the script, I used the name of the variable holding the instance of the prototype, but neither of those worked. This confused me because I have seen examples where variables outside of the onFrame call have been referred to, so I doubt that is the problem.
When I tried simply having the onFrame call just my draw function like so:
this.stage.onFrame(this.doDraw());
My draw function gets called once, but then not again. At this point I have stripped my draw function down to nothing more than a trace so that I can see when it is working.
I have tried pulling the stage variable out of the prototype to make it a global variable, and bringing out the onFrame function as well, all to no avail:
function init() {
var stage = new Kinetic.Stage({
container: "content",
width: 800,
height: 800
});
var cubeBlock = new CubeBlock(stage, 50, 50, 7); // x, y, cubesPerEdge
stage.onFrame(function(frame) {
cubeBlock.doDraw();
});
}
I don't understand why I can't get this to work at all, even just to trace "This is working!". I can't find any examples that use anything but the most basic JavaScript, so I can't tell if it is because I am trying to set up a class structure, or if there is some other element missing.
var myCode; function CubeBlock(xLoc, yLoc, cobesPerEdge) { myCode = this; this.stage = new Kinetic.Stage({etc}); this.stage.onFrame(function(frame){ myCode.doDraw(); }); this.stage.start(); ... }– John Pitsker Aug 16 '12 at 17:16