Kaynağa Gözat

Update GLTFExporter.js (#28938)

Prevent from uneccessary early return
POPOBE97 1 yıl önce
ebeveyn
işleme
4e4baddc8d
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      examples/jsm/exporters/GLTFExporter.js

+ 1 - 1
examples/jsm/exporters/GLTFExporter.js

@@ -2113,7 +2113,7 @@ class GLTFWriter {
 			if ( ! trackNode || ! trackProperty ) {
 
 				console.warn( 'THREE.GLTFExporter: Could not export animation track "%s".', track.name );
-				return null;
+				continue;
 
 			}