|
| 1 | +.. _doc_tutorials: |
| 2 | + |
| 3 | +Tutorials |
| 4 | +========= |
| 5 | + |
| 6 | +.. Sections below are split into two groups. First come meta sections, covering |
| 7 | + general matters. Below that different areas of the engine are listed. |
| 8 | + These sections are sorted alphabetically. Please keep them that way. |
| 9 | +
|
| 10 | +General |
| 11 | +------- |
| 12 | + |
| 13 | +.. toctree:: |
| 14 | + :maxdepth: 1 |
| 15 | + :name: toc-learn-tutorials-general |
| 16 | + |
| 17 | + best_practices/index |
| 18 | + editor/index |
| 19 | + migrating/index |
| 20 | + |
| 21 | +Topics |
| 22 | +------ |
| 23 | + |
| 24 | +.. raw:: html |
| 25 | + |
| 26 | + <style> |
| 27 | + .tutorial-section { |
| 28 | + display: block; |
| 29 | + padding: 0.9375rem; |
| 30 | + margin: 0.375rem 0; |
| 31 | + line-height: 1.5; |
| 32 | + border-radius: 0.375rem; |
| 33 | + color: hsla(0, 0%, 100%, 0.9); |
| 34 | + text-shadow: 0 0.125rem 0.125rem black; |
| 35 | + background: linear-gradient(to right, black, transparent), var(--background-image); |
| 36 | + background-size: cover; |
| 37 | + } |
| 38 | +
|
| 39 | + .tutorial-section:visited { |
| 40 | + color: unset; |
| 41 | + } |
| 42 | +
|
| 43 | + .tutorial-section:hover, |
| 44 | + .tutorial-section:focus { |
| 45 | + color: unset; |
| 46 | + text-decoration: none; |
| 47 | + filter: brightness(120%) contrast(87.5%); |
| 48 | + } |
| 49 | +
|
| 50 | + .tutorial-section:active { |
| 51 | + filter: brightness(80%); |
| 52 | + } |
| 53 | + </style> |
| 54 | + |
| 55 | + <a class="tutorial-section" style="--background-image: url('../_static/img/tutorials/3d.webp')" href="2d/index.html"> |
| 56 | + <strong>2D</strong><br> |
| 57 | + Learn the 2D editor, rendering and level design functionality. |
| 58 | + </a> |
| 59 | + <a class="tutorial-section" style="--background-image: url('../_static/img/tutorials/3d.webp')" href="3d/index.html"> |
| 60 | + <strong>3D</strong><br> |
| 61 | + Learn the 3D editor, rendering and level design functionality. |
| 62 | + </a> |
| 63 | + <a class="tutorial-section" style="--background-image: url('../_static/img/tutorials/3d.webp')" href="animation/index.html"> |
| 64 | + <strong>Animation</strong><br> |
| 65 | + Learn to set up animations, play and create videos. |
| 66 | + </a> |
| 67 | + <a class="tutorial-section" style="--background-image: url('../_static/img/tutorials/3d.webp')" href="assets_pipeline/index.html"> |
| 68 | + <strong>Assets pipeline</strong><br> |
| 69 | + Learn to import and export 2D, 3D, audio resources. |
| 70 | + </a> |
| 71 | + <a class="tutorial-section" style="--background-image: url('../_static/img/tutorials/3d.webp')" href="audio/index.html"> |
| 72 | + <strong>Audio</strong><br> |
| 73 | + Learn to set up audio playback for sound effects and music in your project. |
| 74 | + </a> |
| 75 | + <a class="tutorial-section" style="--background-image: url('../_static/img/tutorials/3d.webp')" href="export/index.html"> |
| 76 | + <strong>Export</strong><br> |
| 77 | + Learn to package and export your project for distribution on different platforms. |
| 78 | + </a> |
| 79 | + <a class="tutorial-section" style="--background-image: url('../_static/img/tutorials/3d.webp')" href="io/index.html"> |
| 80 | + <strong>Input/output (I/O)</strong><br> |
| 81 | + Learn to read and write files, such as save games and configuration files. |
| 82 | + </a> |
| 83 | + <a class="tutorial-section" style="--background-image: url('../_static/img/tutorials/3d.webp')" href="i18n/index.html"> |
| 84 | + <strong>Internationalization (i18n)</strong><br> |
| 85 | + Learn to set up your project to support multiple languages. |
| 86 | + </a> |
| 87 | + <a class="tutorial-section" style="--background-image: url('../_static/img/tutorials/3d.webp')" href="inputs/index.html"> |
| 88 | + <strong>Inputs</strong><br> |
| 89 | + Learn setting up keyboard, mouse, controller and touch inputs for your project. |
| 90 | + </a> |
| 91 | + <a class="tutorial-section" style="--background-image: url('../_static/img/tutorials/3d.webp')" href="math/index.html"> |
| 92 | + <strong>Mathematics</strong><br> |
| 93 | + Learn vector math and matrices to better understand game development. |
| 94 | + </a> |
| 95 | + <a class="tutorial-section" style="--background-image: url('../_static/img/tutorials/3d.webp')" href="navigation/index.html"> |
| 96 | + <strong>Navigation</strong><br> |
| 97 | + Learn to make AI characters navigate seamlessly in a game world. |
| 98 | + </a> |
| 99 | + <a class="tutorial-section" style="--background-image: url('../_static/img/tutorials/3d.webp')" href="networking/index.html"> |
| 100 | + <strong>Networking</strong><br> |
| 101 | + Learn to communicate with a server using the high-level multiplayer API or low-level network APIs. |
| 102 | + </a> |
| 103 | + <a class="tutorial-section" style="--background-image: url('../_static/img/tutorials/3d.webp')" href="performance/index.html"> |
| 104 | + <strong>Performance</strong><br> |
| 105 | + Learn to diagnose performance issues and find optimizations in your project. |
| 106 | + </a> |
| 107 | + <a class="tutorial-section" style="--background-image: url('../_static/img/tutorials/3d.webp')" href="physics/index.html"> |
| 108 | + <strong>Physics</strong><br> |
| 109 | + Learn to set up rigid, character, soft and vehicle physics simulations in your project. |
| 110 | + </a> |
| 111 | + <a class="tutorial-section" style="--background-image: url('../_static/img/tutorials/3d.webp')" href="platform/index.html"> |
| 112 | + <strong>Platform-specific</strong><br> |
| 113 | + Learn platform-specific adjustments to make your project work across multiple platforms. |
| 114 | + </a> |
| 115 | + <a class="tutorial-section" style="--background-image: url('../_static/img/tutorials/3d.webp')" href="plugins/index.html"> |
| 116 | + <strong>Plugins</strong><br> |
| 117 | + Learn to use and create editor plugins to extend functionality. |
| 118 | + </a> |
| 119 | + <a class="tutorial-section" style="--background-image: url('../_static/img/tutorials/3d.webp')" href="rendering/index.html"> |
| 120 | + <strong>Rendering</strong><br> |
| 121 | + Learn to set up and optimize rendering features for your project. |
| 122 | + </a> |
| 123 | + <a class="tutorial-section" style="--background-image: url('../_static/img/tutorials/3d.webp')" href="scripting/index.html"> |
| 124 | + <strong>Scripting</strong><br> |
| 125 | + Learn to program games using GDScript and C#. |
| 126 | + </a> |
| 127 | + <a class="tutorial-section" style="--background-image: url('../_static/img/tutorials/3d.webp')" href="shaders/index.html"> |
| 128 | + <strong>Shaders</strong><br> |
| 129 | + Learn to create custom visual effects using text-based and visual shaders. |
| 130 | + </a> |
| 131 | + <a class="tutorial-section" style="--background-image: url('../_static/img/tutorials/3d.webp')" href="ui/index.html"> |
| 132 | + <strong>User Interface (UI)</strong><br> |
| 133 | + Learn to set up user interfaces. |
| 134 | + </a> |
| 135 | + <a class="tutorial-section" style="--background-image: url('../_static/img/tutorials/3d.webp')" href="xr/index.html"> |
| 136 | + <strong>Mixed Reality (XR)</strong><br> |
| 137 | + Learn to set up Virtual Reality and Augmented Reality. |
| 138 | + </a> |
0 commit comments