1. 07 5月, 2021 1 次提交
  2. 06 5月, 2021 1 次提交
  3. 05 5月, 2021 1 次提交
  4. 30 4月, 2021 1 次提交
    • J
      Update VideoTexture doc with note about using RGBA format to avoid Firefox... · 54a207c1
      Jake Livak 提交于
      Update VideoTexture doc with note about using RGBA format to avoid Firefox performance issue. (#21746)
      
      * VideoTexture should use RGBA format to avoid firefox issue.
      
      There's an issue with Firefox desktop that causes RGBFormat on a video texture to destroy performance.  When testing with a single 4K 360 video, frame times on Firefox with RGBFormat were ~200x RGBAFormat.  (62ms vs .32ms)  I propose defaulting to RGBAFormat to avoid this.
      
      * Revert VideoTexture.js changes.
      
      * Update VideoTexture doc with 'format' default value and note about a Firefox bug.
      54a207c1
  5. 27 4月, 2021 2 次提交
  6. 24 4月, 2021 2 次提交
  7. 23 4月, 2021 1 次提交
  8. 21 4月, 2021 1 次提交
  9. 20 4月, 2021 1 次提交
  10. 13 4月, 2021 1 次提交
  11. 06 4月, 2021 1 次提交
    • R
      Add missing `dispose()` methods (#21577) · 1bbe8066
      Ryan Henning 提交于
      * Add missing `dispose()` methods for AxesHelper and CameraHelper
      
      * Add missing `dispose()` methods for Light and LightShadow
      
      * Add `dispose()` to docs for AxesHelper and CameraHelper
      
      * Add `dispose()` to docs for Lights and LightShadow
      
      * Fix eslint issues
      
      * Replace spaces with tabs in documentation
      1bbe8066
  12. 03 4月, 2021 1 次提交
  13. 31 3月, 2021 2 次提交
    • P
      OrbitControls/TrackballControls: Replace event.keyCode with event.code. (#21409) · 6f11651b
      puxiao 提交于
      * OrbitControls: replace event.keyCode with event.code
      
      issue: -
      
      **Description**
      
      The deprecated **`KeyboardEvent.keyCode`** read-only property represents a system and implementation dependent numerical code identifying the unmodified value of the pressed key. 
      
      https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/keyCode
      
      
      
      so...
      
      ```diff
      // The four arrow keys
      - this.keys = { LEFT: 37, UP: 38, RIGHT: 39, BOTTOM: 40 };
      + this.keys = { LEFT: 'ArrowLeft', UP: 'ArrowUp', RIGHT: 'ArrowRight', BOTTOM: 'ArrowDown' };
      
      
      function handleKeyDown( event ) {
      
      -		switch ( event.keyCode )
      -		switch ( event.code )
      		
      }
      ```
      
      * Update OrbitControls.js
      
      * Update TrackballControls.js
      
      * Update TrackballControls.js
      
      * Update webgl_shading_physical.html
      
      * Update misc_controls_trackball.html
      
      * Update OrbitControls.html
      
      * Update TrackballControls.html
      
      * Update TrackballControls.html
      
      * Update OrbitControls.html
      
      * Update OrbitControls.html
      
      * Update OrbitControls.html
      
      * Update OrbitControls.html
      
      * Update OrbitControls.html
      
      * Update OrbitControls.html
      
      * Update OrbitControls.html
      
      * Update OrbitControls.html
      
      * Update TrackballControls.html
      
      * Update OrbitControls.html
      
      * Update OrbitControls.html
      
      * Update OrbitControls.html
      
      * Docs: Modify the default keys value
      
      * Docs: Modify the default keys value
      
      * Docs: Modify the default keys value
      6f11651b
    • M
      6b1c5158
  14. 28 3月, 2021 1 次提交
  15. 27 3月, 2021 2 次提交
  16. 26 3月, 2021 2 次提交
  17. 25 3月, 2021 8 次提交
  18. 24 3月, 2021 1 次提交
  19. 21 3月, 2021 2 次提交
  20. 18 3月, 2021 3 次提交
    • J
      fix typo (#21478) · 846dda96
      Jake Zhu 提交于
      846dda96
    • T
      SVGLoader: Implement custom createShapes() method. (#21380) · 053b48bd
      Tom Valkeneers 提交于
      * added a scanline method to add support
      for svg fillrule
      
      * changed ShapePath
      
      * lint pass
      
      * lint pass
      
      * removed edits in package.json
      
      * fix refectoring
      
      * removing useless imports.
      
      * solving hole issue when scanline goes through point
      
      * finish
      
      * added yomboprime's function revisions and his text example
      
      * fix package-lock
      
      * fix unintialized variables
      
      * re modularize
      
      * documentation done
      053b48bd
    • N
      Japanese translate (#21474) · d1003c09
      na2 提交于
      * Translate manual/ into Japanese
      
      commit 8c7fc78127bc35343c823473ea3025ddbccc4711
      Author: na2shell <nagafeltf7@gmail.com>
      Date:   Wed Mar 17 15:07:41 2021 +0900
      
          modify log
      
      commit 3acd0c3bdba7760c947dc95dd121ff7f3cefd888
      Author: na2shell <nagafeltf7@gmail.com>
      Date:   Wed Mar 17 15:06:06 2021 +0900
      
          modify commit-log
      
      commit c122331a2061cb2c0b79b164a63fbcb848a9846f
      Merge: 03226bd72c 34519f50
      Author: na2shell <nagafeltf7@gmail.com>
      Date:   Wed Mar 17 14:55:53 2021 +0900
      
          pull upstream dev
      
      commit 03226bd72cfef6dd697efebaf46936f212f704df
      Author: na2shell <nagafeltf7@gmail.com>
      Date:   Wed Mar 17 14:52:03 2021 +0900
      
          pull upstream
      
      commit 88a842e0e12adf847b5861c97db54739905362cf
      Author: na2shell <nagafeltf7@gmail.com>
      Date:   Wed Mar 17 14:44:28 2021 +0900
      
          Translation completed
      
      commit 2e1c5150be31981f2b5a352c79fde1dfea21b4fb
      Merge: e4c00744a2 50380bd1
      Author: na2shell <nagafeltf7@gmail.com>
      Date:   Thu Mar 4 10:52:45 2021 +0900
      
          Merge branch 'dev' of https://github.com/mrdoob/three.js into broken_url
      
      commit e4c00744a2f0f160055ee984c3d932044899b2ff
      Author: na2shell <nagafeltf7@gmail.com>
      Date:   Wed Mar 3 18:17:31 2021 +0900
      
          traslate FAQ
      
      commit 60b56b82a3d72aaa09119561213b4b75f3dc8c14
      Author: na2shell <nagafeltf7@gmail.com>
      Date:   Mon Mar 1 18:25:10 2021 +0900
      
          translate loading-3d-modeling
      
      commit 3c641a17519ed46f85de7636b26462bff923279f
      Author: na2shell <nagafeltf7@gmail.com>
      Date:   Mon Feb 22 15:57:50 2021 +0900
      
          translate matrix,dispose,post-procesing doc
      
      commit 5f20f8341ab949a3ba11fbb4ce848e3ad81ce3f5
      Author: ln3187 <nagafeltf7@gmail.com>
      Date:   Mon Jan 25 10:21:06 2021 +0900
      
          translate Animation-system.html
      
      commit cc2d8d3da565460169f995282d2b2d75a71bc1e9
      Author: ln3187 <nagafeltf7@gmail.com>
      Date:   Tue Jan 19 11:06:42 2021 +0900
      
          translate some docs
      
      commit e4678a018f8d057a4944e7dc22d50580623ca340
      Author: kokusai <nagafeltf7@gmail.com>
      Date:   Tue Jan 5 18:48:47 2021 +0900
      
          translating How-to-run-things-locally.html
      
      commit 054159975f34d7473c3141cba219d12fc507af9d
      Author: kokusai <nagafeltf7@gmail.com>
      Date:   Tue Jan 5 16:39:25 2021 +0900
      
          translate WebGL-compatibility-check.html
      
      commit 16d1f733135ae3ab78a35523817fbf569cc30f6e
      Author: ln3187 <nagafeltf7@gmail.com>
      Date:   Sun Dec 27 17:18:08 2020 +0900
      
          translate Browser-support.html
      
      commit 564a57402e9ca02cc48040d070ba17f8076a7ae2
      Author: ln3187 <nagafeltf7@gmail.com>
      Date:   Thu Dec 24 16:30:47 2020 +0900
      
          translate Installation.html
      
      commit 42dd7c028a154cfa3ab0a2890677c1ebbb9e798a
      Author: ln3187 <nagafeltf7@gmail.com>
      Date:   Thu Dec 24 15:46:29 2020 +0900
      
          copy Installation.html in English
      
      commit 731e2be29be1bbb5213904adcd2182074bf72064
      Merge: 0357df19f9 c47d12be80
      Author: ln3187 <nagafeltf7@gmail.com>
      Date:   Thu Dec 24 14:47:12 2020 +0900
      
          Merge branch 'dev' of https://github.com/ln3187/three.js into dev
      
      commit 0357df19f9b5719c1a354ba71bad80a7e0b43bb9
      Merge: f139bcc03d 7a957e676e
      Author: ln3187 <nagafeltf7@gmail.com>
      Date:   Thu Dec 24 14:34:00 2020 +0900
      
          Merge branch 'dev' of https://github.com/ln3187/three.js into HEAD
      
      commit c47d12be80a13265a5a56c73c5b1702fdddbcc65
      Merge: f139bcc03d 7a957e676e
      Author: ln3187 <nagafeltf7@gmail.com>
      Date:   Thu Dec 24 14:34:00 2020 +0900
      
          Merge branch 'dev' of https://github.com/ln3187/three.js into HEAD
      
      commit f139bcc03d8560a82661e2ad6fc50e0511db2efa
      Author: ln3187 <nagafeltf7@gmail.com>
      Date:   Thu Dec 24 14:32:11 2020 +0900
      
          modify to make it more natural japanese
      
      commit d305f2efdea7aec95839ec0507c601fc4c5fa703
      Author: ln3187 <nagafeltf7@gmail.com>
      Date:   Thu Dec 24 11:10:55 2020 +0900
      
          first commit
      
      commit 7a957e676e1f2aa46a36af8ea0434463c85b5ff9
      Author: ln3187 <nagafeltf7@gmail.com>
      Date:   Thu Dec 24 11:10:55 2020 +0900
      
          first commit
      
      commit 14bb48f52d5ae23670dcfffc2fd7ae00564ec7a3
      Author: ln3187 <nagafeltf7@gmail.com>
      Date:   Thu Dec 24 10:22:14 2020 +0900
      
          initial translation
      
      * revert package-lock.json
      
      * modify format of list.json
      d1003c09
  21. 17 3月, 2021 1 次提交
  22. 16 3月, 2021 1 次提交
  23. 15 3月, 2021 1 次提交
  24. 13 3月, 2021 2 次提交