[x3d-public] appendChild is not a function in X_ITE.
John Carlson
yottzumm at gmail.com
Sat Mar 29 19:39:09 PDT 2025
I can't get this in X_ITE. Bad logic? I’d like to use
document.querySelector(“Group[DEF=‘nodeGroup’]”) to get window.nodeGroup,
which I’ll try again later.
I'm getting appendChild is not a function ( make sure it is, so I get
FATAL), and window.nodeGroup is a Proxy, which obviously, does not have an
appendChild function.
I did try setting nodeTransform.parent, but it seems like I need to add to
children as well.
It’s a part of DOM/SAI I’m unfamiliar with. My Proxy experience is 9 years
old.
Help! John
if (!window.nodeGroup) {
try {
window.nodeGroup =
Browser.currentScene.getNamedNode("nodeGroup");
} catch (e) {
LOG("DEBUG", node);
let groupNode =
Browser.currentScene.createNode("Group");
window.nodeGroup =
Browser.currentScene.addNamedNode("nodeGroup", groupNode);
}
}
if (window.nodeGroup && typeof
window.nodeGroup.appendChild === 'function') {
window.nodeGroup.appendChild(nodeTransform);
nodeShapes[node.id] = nodeTransform;
nodes.push(node);
} else {
LOG("FATAL", node.id);
}
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://web3d.org/pipermail/x3d-public_web3d.org/attachments/20250329/22042e2b/attachment.html>
More information about the x3d-public
mailing list