Renamed MeshShaderMaterial => ShaderMaterial

This commit is contained in:
alteredq
2011-09-12 19:17:20 +02:00
parent fe1ed04b02
commit e298ac6814
42 changed files with 173 additions and 218 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ THREE.TexturePass = function( texture, opacity ) {
this.uniforms[ "opacity" ].value = ( opacity !== undefined ) ? opacity : 1.0;
this.uniforms[ "tDiffuse" ].texture = texture;
this.material = new THREE.MeshShaderMaterial( {
this.material = new THREE.ShaderMaterial( {
uniforms: this.uniforms,
vertexShader: shader.vertexShader,