소스 검색

Added forgotten texture. Disabled browser-based antialiasing.

alteredq 14 년 전
부모
커밋
4f7fe37a70
3개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. BIN
      examples/textures/patterns/bright_squares256.png
  2. 6 0
      examples/textures/patterns/readme.txt
  3. 1 1
      examples/webgl_shading_physical.html

BIN
examples/textures/patterns/bright_squares256.png


+ 6 - 0
examples/textures/patterns/readme.txt

@@ -0,0 +1,6 @@
+Textures from http://subtlepatterns.com/
+
+Slightly modified to have more GPU friendly sizes.
+
+Licensed under a Creative Commons Attribution 3.0 Unported License:
+http://creativecommons.org/licenses/by/3.0/

+ 1 - 1
examples/webgl_shading_physical.html

@@ -375,7 +375,7 @@
 
 				// RENDERER
 
-				renderer = new THREE.WebGLRenderer( { clearColor: 0x00aaff, clearAlpha: 1, antialias: true } );
+				renderer = new THREE.WebGLRenderer( { clearColor: 0x00aaff, clearAlpha: 1, antialias: false } );
 				renderer.setSize( SCREEN_WIDTH, SCREEN_HEIGHT );
 
 				if ( scene.fog )