• A
    Added support to "shading" materials parameter in WebGLRenderer. · 3d370891
    alteredq 提交于
    This is actually tricky due to multimaterials and vertex normals.
    
    The practical effects of "shading" parameter in WebGLRenderer are currently following:
    
    - if your model has vertex normals, now you can "dumb down" its shading by specifying THREE.FlatShading for MeshLambertMaterial and MeshPhongMaterial
    - if your model has only face normals, it will always have just flat shading, no matter which shading you set, no escape from this
    - if your model has multiple materials, smooth shading always "wins", meaning if there is at least one smooth shaded material in multimaterial group, all other materials in this group will be also smooth shaded (this is solvable by having multiple normal buffers, but seems wasteful, at least for the moment, till there are no practical use cases)
    
    Currently implemented shading / material combinations:
    
      - MeshNormalMaterial: FlatShading [default], GouradShading
      - MeshDepthMaterial:  no shading parameter in material, uses own specific shading
      - MeshBasicMaterial: no shading parameter in material, uses own specific shading
      - MeshLambertMaterial: FlatShading, GouraudShading [default]
      - MeshPhongMaterial: FlatShading, PhongShading [default]
    3d370891
MeshPhongMaterial.js 2.4 KB