your_first_2d_shader.rst 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. .. _doc_your_first_canvasitem_shader:
  2. Your first 2D shader
  3. ====================
  4. Introduction
  5. ------------
  6. Shaders are special programs that execute on the GPU and are used for rendering
  7. graphics. All modern rendering is done with shaders. For a more detailed
  8. description of what shaders are please see :ref:`What are shaders
  9. <doc_introduction_to_shaders>`.
  10. This tutorial will focus on the practical aspects of writing shader programs by
  11. walking you through the process of writing a shader with both vertex and
  12. fragment functions. This tutorial targets absolute beginners to shaders.
  13. .. note:: If you have experience writing shaders and are just looking for an
  14. overview of how shaders work in Godot, see the :ref:`Shading Reference
  15. <toc-shading-reference>`.
  16. Setup
  17. -----
  18. :ref:`CanvasItem shaders <doc_canvas_item_shader>` are used to draw all 2D
  19. objects in Godot, while :ref:`Spatial <doc_spatial_shader>` shaders are used
  20. to draw all 3D objects.
  21. In order to use a shader it must be attached inside a :ref:`Material
  22. <class_Material>` which must be attached to an object. Materials are a type of
  23. :ref:`Resource <doc_resources>`. To draw multiple objects with the same
  24. material, the material must be attached to each object.
  25. All objects derived from a :ref:`CanvasItem <class_CanvasItem>` have a material
  26. property. This includes all :ref:`GUI elements <class_Control>`, :ref:`Sprite2Ds
  27. <class_Sprite2D>`, :ref:`TileMapLayers <class_TileMapLayer>`, :ref:`MeshInstance2Ds
  28. <class_MeshInstance2D>` etc. They also have an option to inherit their parent's
  29. material. This can be useful if you have a large number of nodes that you want
  30. to use the same material.
  31. To begin, create a Sprite2D node. :ref:`You can use any CanvasItem <doc_custom_drawing_in_2d>`,
  32. so long as it is drawing to the canvas, so for this tutorial we will use a Sprite2D,
  33. as it is the easiest CanvasItem to start drawing with.
  34. In the Inspector, click beside "Texture" where it says "[empty]" and select
  35. "Load", then select "icon.svg". For new projects, this is the Godot icon. You
  36. should now see the icon in the viewport.
  37. Next, look down in the Inspector, under the CanvasItem section, click beside
  38. "Material" and select "New ShaderMaterial". This creates a new Material
  39. resource. Click on the sphere that appears. Godot currently doesn't know whether
  40. you are writing a CanvasItem Shader or a Spatial Shader and it previews the
  41. output of spatial shaders. So what you are seeing is the output of the default
  42. Spatial Shader.
  43. Click beside "Shader" and select "New Shader". Finally, click on the shader
  44. you just created and the shader editor will open. You are now ready to begin writing
  45. your first shader.
  46. Your first CanvasItem shader
  47. ----------------------------
  48. In Godot, all shaders start with a line specifying what type of shader they are.
  49. It uses the following format:
  50. .. code-block:: glsl
  51. shader_type canvas_item;
  52. Because we are writing a CanvasItem shader, we specify ``canvas_item`` in the
  53. first line. All our code will go beneath this declaration.
  54. This line tells the engine which built-in variables and functionality to supply
  55. you with.
  56. In Godot you can override three functions to control how the shader operates;
  57. ``vertex``, ``fragment``, and ``light``. This tutorial will walk you through
  58. writing a shader with both vertex and fragment functions. Light functions are
  59. significantly more complex than vertex and fragment functions and so will not be
  60. covered here.
  61. Your first fragment function
  62. ----------------------------
  63. The fragment function runs for every pixel in a Sprite2D and determines what color
  64. that pixel should be.
  65. They are restricted to the pixels covered by the Sprite2D, that means you cannot
  66. use one to, for example, create an outline around a Sprite2D.
  67. The most basic fragment function does nothing except assign a single color to
  68. every pixel.
  69. We do so by writing a ``vec4`` to the built-in variable ``COLOR``. ``vec4`` is
  70. shorthand for constructing a vector with 4 numbers. For more information about
  71. vectors see the :ref:`Vector math tutorial <doc_vector_math>`. ``COLOR`` is both
  72. an input variable to the fragment function and the final output from it.
  73. .. code-block:: glsl
  74. void fragment(){
  75. COLOR = vec4(0.4, 0.6, 0.9, 1.0);
  76. }
  77. .. image:: img/blue-box.png
  78. Congratulations! You're done. You have successfully written your first shader in
  79. Godot.
  80. Now let's make things more complex.
  81. There are many inputs to the fragment function that you can use for calculating
  82. ``COLOR``. ``UV`` is one of them. UV coordinates are specified in your Sprite2D
  83. (without you knowing it!) and they tell the shader where to read from textures
  84. for each part of the mesh.
  85. In the fragment function you can only read from ``UV``, but you can use it in
  86. other functions or to assign values to ``COLOR`` directly.
  87. ``UV`` varies between 0-1 from left-right and from top-bottom.
  88. .. image:: img/iconuv.png
  89. .. code-block:: glsl
  90. void fragment() {
  91. COLOR = vec4(UV, 0.5, 1.0);
  92. }
  93. .. image:: img/UV.png
  94. Using ``TEXTURE`` built-in
  95. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  96. The default fragment function reads from the set Sprite2D texture and displays it.
  97. When you want to adjust a color in a Sprite2D you can adjust the color
  98. from the texture manually like in the code below.
  99. .. code-block:: glsl
  100. void fragment(){
  101. // This shader will result in a blue-tinted icon
  102. COLOR.b = 1.0;
  103. }
  104. Certain nodes, like Sprite2Ds, have a dedicated texture variable that can be accessed
  105. in the shader using ``TEXTURE``. If you want to use the Sprite2D texture to combine
  106. with other colors, you can use the ``UV`` with the ``texture`` function to access
  107. this variable. Use them to redraw the Sprite2D with the texture.
  108. .. code-block:: glsl
  109. void fragment(){
  110. COLOR = texture(TEXTURE, UV); // Read from texture again.
  111. COLOR.b = 1.0; //set blue channel to 1.0
  112. }
  113. .. image:: img/blue-tex.png
  114. Uniform input
  115. ^^^^^^^^^^^^^
  116. Uniform input is used to pass data into a shader that will be the same across
  117. the entire shader.
  118. You can use uniforms by defining them at the top of your shader like so:
  119. .. code-block:: glsl
  120. uniform float size;
  121. For more information about usage see the :ref:`Shading Language doc
  122. <doc_shading_language>`.
  123. Add a uniform to change the amount of blue in our Sprite2D.
  124. .. code-block:: glsl
  125. uniform float blue = 1.0; // you can assign a default value to uniforms
  126. void fragment(){
  127. COLOR = texture(TEXTURE, UV); // Read from texture
  128. COLOR.b = blue;
  129. }
  130. Now you can change the amount of blue in the Sprite2D from the editor. Look back
  131. at the Inspector under where you created your shader. You should see a section
  132. called "Shader Param". Unfold that section and you will see the uniform you just
  133. declared. If you change the value in the editor, it will overwrite the default
  134. value you provided in the shader.
  135. Interacting with shaders from code
  136. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  137. You can change uniforms from code using the function ``set_shader_parameter()``
  138. which is called on the node's material resource. With a Sprite2D node, the
  139. following code can be used to set the ``blue`` uniform.
  140. .. tabs::
  141. .. code-tab:: gdscript
  142. var blue_value = 1.0
  143. material.set_shader_parameter("blue", blue_value)
  144. .. code-tab:: csharp
  145. var blueValue = 1.0;
  146. ((ShaderMaterial)Material).SetShaderParameter("blue", blueValue);
  147. Note that the name of the uniform is a string. The string must match exactly
  148. with how it is written in the shader, including spelling and case.
  149. Your first vertex function
  150. --------------------------
  151. Now that we have a fragment function, let's write a vertex function.
  152. Use the vertex function to calculate where on the screen each vertex should end
  153. up.
  154. The most important variable in the vertex function is ``VERTEX``. Initially, it
  155. specifies the vertex coordinates in your model, but you also write to it to
  156. determine where to actually draw those vertices. ``VERTEX`` is a ``vec2`` that
  157. is initially presented in local-space (i.e. not relative to the camera,
  158. viewport, or parent nodes).
  159. You can offset the vertices by directly adding to ``VERTEX``.
  160. .. code-block:: glsl
  161. void vertex() {
  162. VERTEX += vec2(10.0, 0.0);
  163. }
  164. Combined with the ``TIME`` built-in variable, this can be used for basic
  165. animation.
  166. .. code-block:: glsl
  167. void vertex() {
  168. // Animate Sprite2D moving in big circle around its location
  169. VERTEX += vec2(cos(TIME)*100.0, sin(TIME)*100.0);
  170. }
  171. Conclusion
  172. ----------
  173. At their core, shaders do what you have seen so far, they compute ``VERTEX`` and
  174. ``COLOR``. It is up to you to dream up more complex mathematical strategies for
  175. assigning values to those variables.
  176. For inspiration, take a look at some of the more advanced shader tutorials, and
  177. look at other sites like `Shadertoy
  178. <https://www.shadertoy.com/results?query=&sort=popular&from=10&num=4>`_ and `The
  179. Book of Shaders <https://thebookofshaders.com>`_.