I sat down to do some development and here are the test cases
When I press delete I would like the element to be disabled.
Test case
const scene = ...
const canvas = scene.getEngine().getRenderingCanvas();
expect(scene.getNodeByID("2780.dat").isEnabled()).toEqual(true);
canvas.tabIndex = -1;
canvas.focus();
canvas.dispatchEvent(new KeyboardEvent("keydown", { "key": "Delete" }));
expect(scene.getNodeByID("2780.dat").isEnabled()).toEqual(false);
Observer
this._scene.onKeyboardObservable.add(arg => {
const kbInfo = /** @type {BABYLON.KeyboardInfo} */ (arg);
if (kbInfo.type == BABYLON.KeyboardEventTypes.KEYDOWN) {
switch (kbInfo.event.key) {
case "Delete":
const tn = /** @type {BABYLON.TransformNode} */ (this.getNode());
tn.setEnabled(false);
break;
}
}
});
Works with 4.2.0 and not with 5.0.0-alpha.6
The above code and test case works with Babylon.js v4.2.0 - WebGL2 - Parallel shader compilation but it does not work with Babylon.js v5.0.0-alpha.6 - WebGL2 - Parallel shader compilation
With 5.0.0-alpha6 we are not even entering the observer.
Playground example
https://playground.babylonjs.com/#P0Q806#1
Here is the console.log of the playground example which does not happen every time
Context and previous discussion
We have also previously discussed this in How could I send a programmatic button click to a scene? - #9 by kmitov which is again about button clicks.