[x3d-public] appendChild is not a function in X_ITE.
John Carlson
yottzumm at gmail.com
Sun Mar 30 00:22:58 PDT 2025
Note that I also try:
<Group DEF="nodeGroup"/>
<Group DEF="linkGroup"/>
In an .x3d file, and in an included JS script:
window.nodeGroup =
document.querySelector('Group[DEF="nodeGroup"]');
window.nodeGroup.appendChild(nodeTransform)
And window.nodeGroup is null.
So I'm really curious how to get a Group node using either DOM or SAI.
I'm doubtful of anything else but human help.
John
On Sat, Mar 29, 2025 at 9:39 PM John Carlson <yottzumm at gmail.com> wrote:
> 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/20250330/f48c58d6/attachment.html>
More information about the x3d-public
mailing list