index.rst 953 B

1234567891011121314151617181920212223242526
  1. Your first shader
  2. =================
  3. This tutorial series will walk you through writing your first shader. It is intended
  4. for people who have very little prior experience with shaders and want to get started
  5. with the basics. This tutorial will not cover advanced topics and it is not
  6. comprehensive. For a comprehensive and detailed overview of shaders in Godot see the
  7. :ref:`Shading Reference Page <toc-shading-reference>`.
  8. "What are shaders" gives you a high-level overview of what shaders are and how they fit
  9. into the rendering pipeline.
  10. The "your first shader" tutorials walk you through the process of writing a shader
  11. step-by-step.
  12. For a more general introduction into shaders and the OpenGL Shading Language, use
  13. `The Book of Shaders <https://thebookofshaders.com>`_.
  14. .. toctree::
  15. :maxdepth: 1
  16. :name: toc-your-first-shader
  17. what_are_shaders
  18. your_first_canvasitem_shader
  19. your_first_spatial_shader
  20. your_second_spatial_shader