Jump to content

screenCanvas2D is capturing event from other scenes


AlbertTJames
 Share

Recommended Posts

Hey everyone :)

 

I am not sure why but if I create two ScreenSpaceCanvas2D in two different scenes, one of the scenes being shown and not the other (stored in a parent object). The function Canvas2D.prototype._updatePointerInfo is called twice each time I move the mouse, once for the shown Canvas, and once for the canvas that is in the stored scene. 

Since I did not declare a camera in that stored scene the bit of code in babylon.max.js 44657 :

Canvas2D.prototype._updatePointerInfo = function (eventData, localPosition) { 
  ...
  var camera = this._scene.cameraToUseForPointers || this._scene.activeCamera;

  ...
}

return camera as undefined. 

And later on while the function tries to access camera.viewport it returns an error.

 

This report is not really about solving the bug because if I declare a random camera for the stored scene (like a normal human being not trying to find bugs everywhere) i do not get the error. But I think it was not on purpose that events are captured on a canvas in a scene that is not currently rendered. All in all it is not a real problem for me but it might cause trouble for other people.

 

To change between scenes I use this bit of code 

/* --- Start the render loop --- */
taskObject.engine.runRenderLoop(function () {
  taskObject.scenes[taskObject.currentScene].render();
});

 

This is the call stack for the error:

    1. Uncaught TypeError: Cannot read property 'viewport' of undefined @babylon.max.js:44665
    2. Canvas2D._updatePointerInfo @ babylon.max.js:44665
      Canvas2D._handlePointerEventForInteraction @ babylon.max.js:44628
      (anonymous function) @ babylon.max.js:44549
      Observable.notifyObservers @ babylon.max.js:3399
      _onPointerMove @ babylon.max.js:15232

 

It seems the observables are set up at scene creation and down the callback chain there is no test to check wether the scene is currently being rendered (is that even possible?).

 

Link to comment
Share on other sites

First, thanks for reporting the issue so clearly. I have question though:

Quote

one of the scenes being shown and not the other (stored in a parent object)

Maybe @Deltakosh would know, but I don't really know if there's a concept of an "active scene", as you're in charge of the renderLoop and you decide which scene is rendered and which ones are not, I don't know how I can detect that and behave accordingly.

Note that you can change the Canvas2D.interactionEnabled property which will turn off/on interaction, if you maintain interaction On for only the "activeScene" then things should be alright.

In the mean time I've added code guards to check for the error you mentioned, it's the least I can do. Now I'd like to know if I can do more, DK will certainly tell us.

Edit: I just commit/merged the fix

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...