1. 09 7月, 2016 1 次提交
  2. 30 6月, 2016 1 次提交
  3. 29 6月, 2016 1 次提交
  4. 25 6月, 2016 3 次提交
  5. 23 6月, 2016 2 次提交
    • M
      BVHLoader: Clean up. · d5e3bdd2
      Mr.doob 提交于
      d5e3bdd2
    • I
      BVHLoader & example (#9188) · c87ca5d0
      Ivo Herzig 提交于
      * Adds a BVH Loader & example #5524
      
      * bVHLoader example fixed empty mesh errors.
      
      * BVHLoader: replaced internal quaternions with THREE.Quaternion
      
      * added BVHLoader example to example files
      
      * removed arrow function notation
      
      * BVHLoader example: replaced example animation.
      c87ca5d0
  6. 21 6月, 2016 1 次提交
  7. 17 6月, 2016 1 次提交
  8. 14 6月, 2016 1 次提交
  9. 13 6月, 2016 1 次提交
  10. 12 6月, 2016 1 次提交
  11. 11 6月, 2016 3 次提交
  12. 06 6月, 2016 1 次提交
  13. 05 6月, 2016 1 次提交
  14. 04 6月, 2016 1 次提交
  15. 01 6月, 2016 1 次提交
  16. 27 5月, 2016 2 次提交
  17. 24 5月, 2016 1 次提交
  18. 22 5月, 2016 2 次提交
  19. 21 5月, 2016 2 次提交
  20. 20 5月, 2016 2 次提交
  21. 19 5月, 2016 1 次提交
    • S
      SEA3D Update (#8920) · fc7d43eb
      sunag 提交于
      * add clone asset example ( middle click to clone )
      
      * optimization
      
      * remove unnecessary .cullFace
      
      * unify animation mixers
      
      * Revert "unify animation mixers"
      
      This reverts commit 97872707757c5eb7d454aa481b0bf0ee44183685.
      
      * mixer.timeScale to action.setEffectiveTimeScale
      
      * fix keyframe animation loader and clampWhenFinished
      
      * removed not more necessary includes
      
      * pause mixer update after finish non-loop animation
      fc7d43eb
  22. 17 5月, 2016 2 次提交
    • N
      CTMLoader loadParts worker issue fix (#8900) · 9f8070c0
      Nidin Vinayakan 提交于
      loadParts is not passing incoming worker from parameters to load issue fixed
      9f8070c0
    • S
      sea3d update (#8892) · 0eaaa845
      sunag 提交于
      * node material r5 + mirror nodes example
      
      * threejs.min in node material examples
      
      * sea3d update
      
      * reverted to un-minified
      
      * update mrdoob EventDispatcher.js
      
      * fix eventdispatcher update
      
      * proto defines replace by Object.assign
      
      * native script support transferred to loader
      
      * sound filters support
      
      * light intensity from sound amplitude
      
      * keep .setFilter() method
      
      * get freq amplitude average
      
      * cleanup
      
      * use THREE.AudioAnalyser to get amplitude
      0eaaa845
  23. 01 5月, 2016 1 次提交
  24. 29 4月, 2016 1 次提交
  25. 21 4月, 2016 3 次提交
    • J
      MTLLoader improvements (#8689) · 0f4169da
      Jonne Nauha 提交于
      * MTLLoader: Deprecate setBaseUrl in favor or better named setTexturePath.
      Make sure MaterialCreator.baseUrl is not undefined if no path/texture path is set.
      
      * MTLLoader: Automatically resolve texture base path from .mtl source URL if not explicitly set with setPath or setTexturePath.
      The URL parameter to .parse(text, url) is passed in if you use .load(). For external use it is optional and preserves earlier behavior if not passed in.
      
      * MTLLoader: Use single quotes consistently. Make params object property setting easier to read.
      
      * MTLLoader: Don't overwrite already found diffuse texture like is done with bump map. This might change behavior for bad materials that define 'map_kd' multiple times.
      
      * MTLLoader: Remaining double quotes to single ticks, also in documentation.
      
      * MTLLoader: Remove auto resolving base path from .mtl source URL.
      Add documentation to load and other important functions.
      Remove now redundant call to .setBaseUrl in obj/mtl loader example. setPath is enough if the .mtl and textures have the same base path (documented).
      
      * MTLLoader: Dont break parsed texture references that are already absolute URLs.
      
      * MTLLoader: Fix doc typos.
      
      * MTLLoader: Move utility function inside the function that uses it.
      
      * MTLLoader: Use case insensitive regexp instead for abs URL checks.
      0f4169da
    • J
      OBJLoader: MultiMaterial and geometry group support (#8691) · 61260bc6
      Jonne Nauha 提交于
      * ObjLoader: Implement support for multiple materials inside a geometry/object.
      - Tracks material declaration occuring mid face declaration
      - If object has multiple materials MultiMaterial is creted and geometry groups are created.
      - This approach is better than splitting into separate objects: 1) we are creating as many objects the file defines (correctness) 2) The full geometry would be duplicated into
        two objects, afaik this uploads the geometry multiple times to the GPU (perf, i had test asset that had >400 submeshes with 1-6 geometry groups each).
      
      Fixes #8681 #8640
      Updates #8203 (fixes OPs 2. point)
      
      * OBJLoader: Code cleanup and three.js style formatting.
      61260bc6
    • T
      30319442
  26. 17 4月, 2016 1 次提交
  27. 13 4月, 2016 1 次提交
  28. 12 4月, 2016 1 次提交
    • N
      Default to repeated texture wrapping (#8608) · f22472f3
      Niels 提交于
      When Wrap Mode data is missing, fallback to Collada spec default repeated wrapping. Without this change the wrapping is clamped to edge which should not be the default behaviour.
      f22472f3