Hi.
I’m exploring all the glTF stuff and still don’t understand it in full.
For instance, if the asset is like:
"nodes" : [
{
"name": "Foo",
"mesh" : 0,
"extensions": { "KHR_visibility": { visible: false }},
},
{
"name": "Bar",
"mesh" : 1,
"extensions": { "KHR_selectability": { selectable: true }},
}
]
What is a proper way to check which nodes had which extensions?
For instance, to put some visual markers there, or to add them to some UI menu, or something)