| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- <!DOCTYPE html>
- <html lang="en-us">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
-
- <title>jMonkeyEngine</title>
-
- <meta name="description" content="A cross-platform game engine for adventurous Java developers.">
-
-
- <link rel="stylesheet" href="/css/custom.css">
- <link rel="stylesheet" href="/lib/fomantic/semantic.min.css">
- <link rel="stylesheet" href="/lib/blueimp-gallery/2.35.0/css/blueimp-gallery.min.css" />
-
- <script src="/js/jquery.min.js"></script>
- <script src="/lib/fomantic/semantic.min.js"></script>
- <script src="/lib/blueimp-gallery/2.35.0/js/blueimp-gallery.min.js" defer></script>
- <script src="/js/custom.js" defer></script>
-
- </head>
- <body>
-
- <header>
- <div class="ui stackable inverted secondary menu" style="background-color: #222222;">
- <div class="ui container">
- <div class="item">
- <a href="/"><img class="ui image" src="/images/jme-logo.png"/></a>
- </div>
-
-
- <a class="item" id="Blog" href="/blog/">Blog</a>
-
- <a class="item" id="Documentation" href="/docs/">Documentation</a>
-
- <a class="item" id="License" href="/license/">License</a>
-
-
- <a class="item" href="https://hub.jmonkeyengine.org">Community</a>
- <a class="item" href="https://jmonkeystore.com">Store</a>
- <div class="right menu">
-
- <a class="item" href="https://github.com/jMonkeyEngine/jmonkeyengine" id="git-menu-item"><i class="github icon"></i>Github</a>
- <a href="https://discord.gg/JdjhsRw" class="item" id="discord-menu-item"><i class="discord icon"></i>Discord</a>
- </div>
- </div>
- </div>
- </header>
-
-
-
- <div class="ui container">
- <br />
- <h1>PBR Tutorial</h1>
- <hr class="ui divider" />
-
-
- <hr class="ui divider" />
- <p>
- <p>A continuing YouTube series helping users take leap from using the regular <code>Lighting.j3md</code> material to <code>PbrLighting.j3md</code>.</p>
- <p>First part of my tutorial series in which I explain how to use jmonkeyengine’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>
- <p>Second part of my tutorial series in which I explain how to use jmonkeyengine’s Physically Based Rendering pipeline. In this part we answer the question what are the light probes and why do we need them.</p>
- </p>
- <br />
- <hr class="ui divider" />
- <br />
- <div id="gallery-carousel" class="blueimp-gallery blueimp-gallery-carousel blueimp-gallery-controls">
- <div class="slides"></div>
- <h3 class="title"></h3>
- <a class="prev">‹</a>
- <a class="next">›</a>
- <a class="play-pause"></a>
- <ol class="indicator"></ol>
- </div>
-
- <div id="carousel-links">
-
-
-
-
- <a
- data-youtube="miXbF6cBsSw"
- href="https://www.youtube.com/watch/miXbF6cBsSw"
- type="text/html"
- data-gallery
- ></a>
-
- <a
- data-youtube="6isyfPudDfc"
- href="https://www.youtube.com/watch/6isyfPudDfc"
- type="text/html"
- data-gallery
- ></a>
-
-
-
- </div>
- <br />
- </div>
- <script>
- $("#Blog").addClass("active");
- </script>
- <script src="/js/showcase.js" defer></script>
-
- <footer>
- <div id="bottom-shadow"></div>
- <div class="ui inverted segment footer" style="border-radius: 0px; margin-bottom: 0px;">
-
- <div class="ui container">
- <br />
- <div class="ui two column stackable grid">
- <div class="column">
- <p>
- © 2019 <a href="https://jmonkeyengine.org/">jMonkeyEngine</a>.
- A free open-source game engine licensed under the <a href="https://choosealicense.com/licenses/bsd-3-clause/">BSD 3-Clause license</a>.
- All rights reserved.
- </p>
- </div>
- <div class="column">
- <a href="https://www.patreon.com/jmonkey">
- <img style="float: right; width: 217px; height: 51px;" class="ui rounded fluid image" src="/images/become_a_patron_button.png">
- </a>
- </div>
- </div>
-
- <br />
- </div>
- </div>
-
- </footer>
-
- </body>
- </html>
|