1. 17 11月, 2010 3 次提交
    • M
      Removed alpha component from the Color class · 51f91fdd
      Mr.doob 提交于
      GouraudShading and PhongShading ⟶ SmoothShading
      51f91fdd
    • 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
    • M
      Improved materials demo. · f7d71abc
      Mr.doob 提交于
      f7d71abc
  2. 16 11月, 2010 12 次提交
  3. 15 11月, 2010 18 次提交
  4. 13 11月, 2010 7 次提交