소스 검색

Added deprecation warning to WebGLRenderer/.supportsVertexTextures() (#10037)

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

+ 1 - 0
src/Three.Legacy.js

@@ -575,6 +575,7 @@ Object.assign( WebGLRenderer.prototype, {
 		return this.extensions.get( 'EXT_blend_minmax' );
 	},
 	supportsVertexTextures: function () {
+		console.warn( 'THREE.WebGLRenderer: .supportsVertexTextures() is now .capabilities.vertexTextures.' );
 		return this.capabilities.vertexTextures;
 	},
 	supportsInstancedArrays: function () {