Browse Source

CustomShaderNameReslve - Fix unrecognized tag returns

MackeyK24 6 years ago
parent
commit
1445ecea3c
2 changed files with 0 additions and 2 deletions
  1. 0 1
      src/Materials/PBR/pbrBaseMaterial.ts
  2. 0 1
      src/Materials/standardMaterial.ts

+ 0 - 1
src/Materials/PBR/pbrBaseMaterial.ts

@@ -727,7 +727,6 @@ export abstract class PBRBaseMaterial extends PushMaterial {
 
     /**
      * Custom callback helping to override the default shader used in the material.
-     * @returns string - The custom shader name to use for the material
      */
     public customShaderNameResolve: (shaderName: string, uniforms: string[], uniformBuffers: string[], samplers: string[], defines: PBRMaterialDefines) => string;
 

+ 0 - 1
src/Materials/standardMaterial.ts

@@ -657,7 +657,6 @@ export class StandardMaterial extends PushMaterial {
 
     /**
      * Custom callback helping to override the default shader used in the material.
-     * @returns string - The custom shader name to use for the material
      */
     public customShaderNameResolve: (shaderName: string, uniforms: string[], uniformBuffers: string[], samplers: string[], defines: StandardMaterialDefines) => string;