Hello, like the title says, how do I turn off animation autostart with new gltf loader options? I used to be able to do it with
SceneLoader.OnPluginActivatedObservable.add(loader => {
if (loader.name === 'gltf') {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
(loader as any).animationStartMode = 0; // GLTFLoaderAnimationStartMode.NONE
}
});
But with loader options now, I’m doing this (image) but it doesn’t seem to work at all… Please help me with this