Reputation: 21
There is a bug in the Revit model parsing that causes viewer items to show and hide and not be selectable. I remember someone telling me once that I could force model derivative to use the Navis parser in place of the Revit as a workaround. Anyone know hoe to do this?
Upvotes: 0
Views: 79
Reputation: 9942
The feature is not in production yet but you will be able to switch to another IFC exported when submitting a Model Derivative job:
{
"input": {
"urn": <your-model-urn>
},
"output": {
"formats": [{
"type": "svf",
"views": ["2d", "3d"],
"advanced": {
"switchLoader": true
}
}]
}
}
Upvotes: 0