Heyo,
I’ve been making constant changes to the FBXLoader
when ever I want to update versions, so I thought I’d ask here about my changes and pull-request etiquette-
Every version I update my FBXLoader to read custom user attributes from models to support Extra Attributes / Custom Parameters from Maya, Blender, Houdini, etc.
These (image from my npm package) -
This allows Meshs, Curves, & Groups to have custom userData from your CGI program of choice. However, I’m yet to figure out where in the code I’d need to check userData on Lights though.
The changes I do every version of Three.js is to the FBXLoader.js
in the parseModels()
function-
parseModels( skeletons, geometryMap, materialMap ) {
[...]
for ( const nodeID in modelNodes ) {}
// Any attributes not in the list are custom attributes, add those to userData
let standardAttributes=[
"Culling","DefaultAttributeIndex","InheritType",
"Lcl_Translation","Lcl_Rotation","Lcl_Scaling",
"RotationPivot","ScalingPivot",
"RotationActive","ScalingMax", "RotationOffset","fbx_node_path",
"Shading","Version","attrName","attrType",
"currentUVSet","id","name","propertyList","singleProperty",
];
let nodeAttrs=Object.keys(node);
nodeAttrs.forEach( (attr)=>{
if( !standardAttributes.includes(attr) ){
model.userData[ attr ] = node[ attr ].value;
}
});
[...]
I was curious if this is worthy of a pull request, mostly that the array of names to check needs to exist somewhere; and I’m unsure where they should be stored outside of the function.
Thoughts?
Note : The standardAttributes
I got are from Maya (the owner of the FBX format) and Houdini exports. I believe I checked Blender as well when I first wrote this some years back.