diff --git a/examples/jsm/loaders/GLTFLoader.js b/examples/jsm/loaders/GLTFLoader.js index d9db016b0f081f..5ffca634759a3c 100644 --- a/examples/jsm/loaders/GLTFLoader.js +++ b/examples/jsm/loaders/GLTFLoader.js @@ -3642,16 +3642,7 @@ class GLTFParser { const input = animationDef.parameters !== undefined ? animationDef.parameters[ sampler.input ] : sampler.input; const output = animationDef.parameters !== undefined ? animationDef.parameters[ sampler.output ] : sampler.output; - if ( target.node === undefined ) { - - if ( target.extensions && target.extensions[ 'KHR_animation_pointer' ] ) { - - console.warn( 'THREE.GLTFLoader: KHR_animation_pointer is not yet supported.' ); - - } - - continue; - } + if ( target.node === undefined ) continue; pendingNodes.push( this.getDependency( 'node', name ) ); pendingInputAccessors.push( this.getDependency( 'accessor', input ) );