Autodesk Forge Viewer - setprofile показывает только черную модель - PullRequest
0 голосов
/ 07 мая 2020

Почему при использовании setprofile отображается только модель Black (свет изменился?)

exp по умолчанию:

const defaultProfile = viewer.profileManager.getProfileOrDefault();
viewer.setProfile(defaultProfile);

или как json:

const profileSettings = {
            extensions: {
                load: ["Autodesk.BimWalk"],   // Extensions to load
                unload: ["Autodesk.ViewCubeUi"]  // Extensions to unload and to not load
            }
        }
const profile = new Autodesk.Viewing.Profile(profileSettings);
viewer.setProfile(profile);

ИП C

...