2
0

CubeTextureLoader.html 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <base href="../../../" />
  6. <script src="list.js"></script>
  7. <script src="page.js"></script>
  8. <link type="text/css" rel="stylesheet" href="page.css" />
  9. </head>
  10. <body>
  11. [page:Loader] &rarr;
  12. <h1>[name]</h1>
  13. <p class="desc">
  14. Class for loading a [page:CubeTexture CubeTexture].
  15. This uses the [page:ImageLoader] internally for loading files.
  16. </p>
  17. <h2>Example</h2>
  18. <p>
  19. [example:webgl_materials_cubemap materials / cubemap]<br />
  20. [example:webgl_materials_cubemap_balls_reflection materials / cubemap / balls / reflection]<br />
  21. [example:webgl_materials_cubemap_balls_refraction materials / cubemap / balls / refraction]<br />
  22. [example:webgl_materials_cubemap_dynamic materials / cubemap / dynamic]<br />
  23. [example:webgl_materials_cubemap_refraction materials / cubemap / refraction]
  24. </p>
  25. <code>
  26. var scene = new THREE.Scene();
  27. scene.background = new THREE.CubeTextureLoader()
  28. .setPath( 'textures/cubeMaps/' )
  29. .load( [
  30. 'px.png',
  31. 'nx.png',
  32. 'py.png',
  33. 'ny.png',
  34. 'pz.png',
  35. 'nz.png'
  36. ] );
  37. </code>
  38. <h2>Constructor</h2>
  39. <h3>[name]( [param:LoadingManager manager] )</h3>
  40. <p>
  41. [page:LoadingManager manager] — The [page:LoadingManager loadingManager] for the loader to use. Default is [page:LoadingManager THREE.DefaultLoadingManager].<br /><br />
  42. Creates a new [name].
  43. </p>
  44. <h2>Properties</h2>
  45. <p>See the base [page:Loader] class for common properties.</p>
  46. <h2>Methods</h2>
  47. <p>See the base [page:Loader] class for common methods.</p>
  48. <h3>[method:CubeTexture load]( [param:String urls], [param:Function onLoad], [param:Function onProgress], [param:Function onError] )</h3>
  49. <p>
  50. [page:String urls] — array of 6 urls to images, one for each side of the CubeTexture.
  51. The urls should be specified in the following order: pos-x, neg-x, pos-y, neg-y, pos-z, neg-z.
  52. They can also be [link:https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs Data URIs].<br />
  53. Note that, by convention, cube maps are specified in a coordinate system in which positive-x is to the right
  54. when looking up the positive-z axis -- in other words, using a left-handed coordinate system.
  55. Since three.js uses a right-handed coordinate system, environment maps used in three.js will have pos-x and neg-x swapped.<br />
  56. [page:Function onLoad] — Will be called when load completes. The argument will be the loaded [page:Texture texture].<br />
  57. [page:Function onProgress] — Will be called while load progresses. The argument will be the XMLHttpRequest instance, which contains .[page:Integer total] and .[page:Integer loaded] bytes.<br />
  58. [page:Function onError] — Will be called when load errors.<br />
  59. </p>
  60. <p>
  61. Begin loading from url and pass the loaded [page:CubeTexture texture] to onLoad.
  62. </p>
  63. <h2>Source</h2>
  64. <p>
  65. [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
  66. </p>
  67. </body>
  68. </html>