소스 검색

Three.Legacy: Correct typo

Mugen87 8 년 전
부모
커밋
1f9ccc920e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Three.Legacy.js

+ 1 - 1
src/Three.Legacy.js

@@ -221,7 +221,7 @@ ClosedSplineCurve3.prototype = Object.create( CatmullRomCurve3.prototype );
 
 export function SplineCurve3( points ) {
 
-	console.warn( 'THREE.ClosedSplineCurve3 has been deprecated. Use THREE.CatmullRomCurve3 instead.' );
+	console.warn( 'THREE.SplineCurve3 has been deprecated. Use THREE.CatmullRomCurve3 instead.' );
 
 	CatmullRomCurve3.call( this, points );
 	this.type = 'catmullrom';