1. 15 6月, 2012 1 次提交
  2. 28 3月, 2012 1 次提交
  3. 27 12月, 2011 1 次提交
  4. 29 11月, 2011 1 次提交
  5. 23 10月, 2011 1 次提交
  6. 15 10月, 2011 1 次提交
  7. 14 10月, 2011 2 次提交
  8. 06 10月, 2011 1 次提交
  9. 05 10月, 2011 2 次提交
  10. 26 9月, 2011 1 次提交
  11. 21 9月, 2011 2 次提交
  12. 06 9月, 2011 1 次提交
  13. 03 7月, 2011 3 次提交
  14. 30 6月, 2011 1 次提交
  15. 14 6月, 2011 1 次提交
  16. 12 4月, 2011 1 次提交
  17. 09 4月, 2011 3 次提交
  18. 31 3月, 2011 1 次提交
  19. 28 3月, 2011 1 次提交
  20. 09 3月, 2011 1 次提交
    • A
      Brought back bloom. · c61f89ba
      alteredq 提交于
      Also updated GUI-DAT (didn't help with recent Chrome compositing bugs, though this is Chrome Windows issue), added FileAPI to Detector and fixed aspect ratio bug in WebGLRenderer.
      c61f89ba
  21. 07 3月, 2011 1 次提交
    • A
      Cleaned up a bit WebGLRenderer. · 2294094a
      alteredq 提交于
      Clearing API for rendering to RenderTarget is now flipped: before forced clearing of render target was default, now no clearing is default.
      
      New way of doing things saves one extra duplicitous clear call when switching render targets (like when doing postprocessing).
      
      (doing documentation is indeed turning out to be useful)
      2294094a
  22. 06 3月, 2011 1 次提交
  23. 28 2月, 2011 1 次提交
    • A
      Refactored everything to use CamelCase naming for properties. Plus some... · cf2e8c1b
      alteredq 提交于
      Refactored everything to use CamelCase naming for properties. Plus some smaller fixes here and there.
      
      Went through all examples, all should work.
      
      JSON files exported from Blender / converted from OBJ files still use underscored property names internally. I don't know, should these also be changed?
      cf2e8c1b
  24. 26 2月, 2011 3 次提交
    • M
      Updated README examples. · 7480fb69
      Mr.doob 提交于
      Sound3D ⟶ Sound
      7480fb69
    • M
      Minor refactoring and clean up. · 27dc056a
      Mr.doob 提交于
      27dc056a
    • A
      Refactored CameraControl into THREE.QuakeCamera. · da8afc4e
      alteredq 提交于
      Now you can add keyboard + mouse camera control with a single line, just change camera type and add parameters:
      
       camera = new THREE.QuakeCamera( { fov: 50, aspect: window.innerWidth / window.innerHeight, near: 1, far: 10000,
      	                           movement_speed: 1, look_speed: 0.002, nofly: true, look_vertical: false } );
      
      Thanks to mrdoob for suggestions ;)
      da8afc4e
  25. 25 2月, 2011 2 次提交
  26. 24 2月, 2011 1 次提交
    • A
      Textures are now updateable. · cff95a11
      alteredq 提交于
      That was much tougher than expected. No wonder other WebGL video demos around the web are broken.
      
      Firefox OpenGL / ANGLE and Chrome OpenGL were ok, getting it to work in Chrome ANGLE was rather tricky.
      
      Please report if something got broken. I tried to go through all textured examples but I may have missed something.
      
      If you want to refresh texture on WebGL side, you just set "texture.needsUpdate" flag (if you use Loader or ImageUtils.loadTexture / loadTextureCube everything is taken care of).
      
      Flag has to be set also for canvas-based textures, sorry no escaping this :(. I tried and it lead to ugly problems (e.g. AO minecraft demo mixes several asynchronously loaded and generated images into one texture, with autodetect always something was broken).
      
      "needsUpdate" should work also on cube textures, though it's not tested yet (also there I didn't put hack for Chrome ANGLE).
      cff95a11
  27. 23 2月, 2011 1 次提交
    • M
      Changed build setup: · fef3c084
      Mr.doob 提交于
      	build/Three.js - Includes all renderers + extras
      	build/custom/ThreeCanvas.js - Canvas renderer only
      	build/custom/ThreeDOM.js - DOM renderer only
      	build/custom/ThreeSVG.js - SVG renderer only
      	build/custom/ThreeWebGL.js - WebGL renderer only
      	build/custom/ThreeExtras.js - Extras only
      
      Moved `THREE.Detector.js` to `examples/js/Detector.js`.
      
      Updated examples to reflect these changes.
      fef3c084
  28. 22 2月, 2011 1 次提交
  29. 20 2月, 2011 2 次提交