Hide model, the border is not hidden

Hello, I have encountered a problem.
Select a file, click the load button to load the model, only add a border to a node in the callback of successful loading, click hide node btn, only hide the model but not hide the border, this is a bug.
When the model is hidden, the border is not hidden, is there a solution?

model file:
engine (1).zip (1.6 MB)

PG: https://playground.babylonjs.com/#PUTU8P#19

Don’t forget to call node.disableEdgesRendering(); in the hide mesh button event.

btn1.addEventListener('click', () => {
    // alert('1');
    let node = scene.getMeshById("Lid_Radial_Engine_To_Skfb_Orange_Mat_0");
    if (node) {
        node.disableEdgesRendering();
        node.isVisible = false;
    }
})
3 Likes

thanks