Example #1
0
        public SemanticResolver(FbxObject fbx)
        {
            _objectsNode = fbx.FindChild(FbxConstStrings.Objects());
            var connectionsNode = fbx.FindChild(FbxConstStrings.Connections());

            _deformerList = new(_objectsNode);
            _connResolver = new(connectionsNode);
            _modelList    = new(_objectsNode);
        }