index.html 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <!DOCTYPE html>
  2. <html lang="en-us">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <title>jMonkeyEngine</title>
  8. <meta name="description" content="A cross-platform game engine for adventurous Java developers.">
  9. <link rel="stylesheet" href="/css/custom.css">
  10. <link rel="stylesheet" href="/lib/fomantic/semantic.min.css">
  11. <link rel="stylesheet" href="/lib/blueimp-gallery/2.35.0/css/blueimp-gallery.min.css" />
  12. <script src="/js/jquery.min.js"></script>
  13. <script src="/lib/fomantic/semantic.min.js"></script>
  14. <script src="/lib/blueimp-gallery/2.35.0/js/blueimp-gallery.min.js" defer></script>
  15. <script src="/js/custom.js" defer></script>
  16. </head>
  17. <body>
  18. <header>
  19. <div class="ui stackable inverted secondary menu" style="background-color: #222222;">
  20. <div class="ui container">
  21. <div class="item">
  22. <a href="/"><img class="ui image" src="/images/jme-logo.png"/></a>
  23. </div>
  24. <a class="item" id="Blog" href="/blog/">Blog</a>
  25. <a class="item" id="Documentation" href="/docs/">Documentation</a>
  26. <a class="item" id="License" href="/license/">License</a>
  27. <a class="item" href="https://hub.jmonkeyengine.org">Community</a>
  28. <a class="item" href="https://jmonkeystore.com">Store</a>
  29. <div class="right menu">
  30. <a class="item" href="https://github.com/jMonkeyEngine/jmonkeyengine" id="git-menu-item"><i class="github icon"></i>Github</a>
  31. <a href="https://discord.gg/JdjhsRw" class="item" id="discord-menu-item"><i class="discord icon"></i>Discord</a>
  32. </div>
  33. </div>
  34. </div>
  35. </header>
  36. <div class="ui container">
  37. <br />
  38. <h1>PBR Tutorial</h1>
  39. <hr class="ui divider" />
  40. <hr class="ui divider" />
  41. <p>
  42. <p>A continuing YouTube series helping users take leap from using the regular <code>Lighting.j3md</code> material to <code>PbrLighting.j3md</code>.</p>
  43. <p>First part of my tutorial series in which I explain how to use jmonkeyengine&rsquo;s Physically Based Rendering pipeline. Intended for people who already understand how to use the regular Lighting.j3md shader, but have no idea how PBR works.</p>
  44. <p>Second part of my tutorial series in which I explain how to use jmonkeyengine&rsquo;s Physically Based Rendering pipeline. In this part we answer the question what are the light probes and why do we need them.</p>
  45. </p>
  46. <br />
  47. <hr class="ui divider" />
  48. <br />
  49. <div id="gallery-carousel" class="blueimp-gallery blueimp-gallery-carousel blueimp-gallery-controls">
  50. <div class="slides"></div>
  51. <h3 class="title"></h3>
  52. <a class="prev">‹</a>
  53. <a class="next">›</a>
  54. <a class="play-pause"></a>
  55. <ol class="indicator"></ol>
  56. </div>
  57. <div id="carousel-links">
  58. <a
  59. data-youtube="miXbF6cBsSw"
  60. href="https://www.youtube.com/watch/miXbF6cBsSw"
  61. type="text/html"
  62. data-gallery
  63. ></a>
  64. <a
  65. data-youtube="6isyfPudDfc"
  66. href="https://www.youtube.com/watch/6isyfPudDfc"
  67. type="text/html"
  68. data-gallery
  69. ></a>
  70. </div>
  71. <br />
  72. </div>
  73. <script>
  74. $("#Blog").addClass("active");
  75. </script>
  76. <script src="/js/showcase.js" defer></script>
  77. <footer>
  78. <div id="bottom-shadow"></div>
  79. <div class="ui inverted segment footer" style="border-radius: 0px; margin-bottom: 0px;">
  80. <div class="ui container">
  81. <br />
  82. <div class="ui two column stackable grid">
  83. <div class="column">
  84. <p>
  85. &copy; 2019 <a href="https://jmonkeyengine.org/">jMonkeyEngine</a>.
  86. A free open-source game engine licensed under the <a href="https://choosealicense.com/licenses/bsd-3-clause/">BSD 3-Clause license</a>.
  87. All rights reserved.
  88. </p>
  89. </div>
  90. <div class="column">
  91. <a href="https://www.patreon.com/jmonkey">
  92. <img style="float: right; width: 217px; height: 51px;" class="ui rounded fluid image" src="/images/become_a_patron_button.png">
  93. </a>
  94. </div>
  95. </div>
  96. <br />
  97. </div>
  98. </div>
  99. </footer>
  100. </body>
  101. </html>