You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the homepage section x3dom at a glance, the code snippet is written to be used in browser. Yes, DOM elements are case-insensitive, that's why it works. But I tried importing the exact same code in Blender, as it supports X3D files.
It took me a while to figure that the element names need to be capitalized for Blender to interpret this correctly. Because the specification uses capitalized element names and XML itself is case sensitive, Blender expects element names to be capitalized.
So this distinction needs to be made between the code that works in browser (case insensitive) and valid X3D file (case sensitive with capitalized element names).
The text was updated successfully, but these errors were encountered:
In the homepage section x3dom at a glance, the code snippet is written to be used in browser. Yes, DOM elements are case-insensitive, that's why it works. But I tried importing the exact same code in Blender, as it supports X3D files.
It took me a while to figure that the element names need to be capitalized for Blender to interpret this correctly. Because the specification uses capitalized element names and XML itself is case sensitive, Blender expects element names to be capitalized.
So this distinction needs to be made between the code that works in browser (case insensitive) and valid X3D file (case sensitive with capitalized element names).
The text was updated successfully, but these errors were encountered: