Reputation: 41
I load several models in my scene. I would like to:
How can we make a selection on a dbid, on specific model, when several models are loaded?
Thanks
Upvotes: 0
Views: 557
Reputation: 9942
Looking at the code of Forge Viewer v6, the select method is defined as
select
Viewer3D.prototype.select = function (dbids, model) { ... }
So the second parameter should actually be the model, not a selection type.
Upvotes: 1