Hey there
I got a js error saying
Uncaught ReferenceError: newheight is not defined commonace.js:208
Going through the commonace.js, I found this:
acts.SetHeight = function (h) { if (this.height !== h) { this.height = newheight; this.set_bbox_changed(); } };
I'm almost certain it should be instead:
acts.SetHeight = function (h) { if (this.height !== h) { this.height = h; this.set_bbox_changed(); } };
After changing, the bug indeed disappeared into nothingness (:
Could this explain my bug im having I don't know java script but I see something about newhight
scirra.com/forum/r96-causing-bug_topic53802.html
Develop games in your browser. Powerful, performant & highly capable.
Thanks, fixed for next build.