File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
getting_started/step_by_step
tutorials/shaders/shader_reference Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,8 @@ the following line of code:
101101 .. code-tab :: csharp C#
102102
103103 using Godot;
104-
104+ using System;
105+
105106 public partial class MySprite2D : Sprite2D
106107 {
107108 }
@@ -327,7 +328,8 @@ Here is the complete ``sprite_2d.gd`` file for reference.
327328 .. code-tab :: csharp C#
328329
329330 using Godot;
330-
331+ using System;
332+
331333 public partial class MySprite2D : Sprite2D
332334 {
333335 private int _speed = 400;
Original file line number Diff line number Diff line change @@ -132,9 +132,9 @@ is usually:
132132+--------------------------------+----------------------------------------------------+
133133| inout float **POINT_SIZE ** | Point size for point drawing. |
134134+--------------------------------+----------------------------------------------------+
135- | in vec4 **CUSTOM0 ** | |
135+ | in vec4 **CUSTOM0 ** | Custom value from vertex primitive. |
136136+--------------------------------+----------------------------------------------------+
137- | in vec4 **CUSTOM1 ** | |
137+ | in vec4 **CUSTOM1 ** | Custom value from vertex primitive. |
138138+--------------------------------+----------------------------------------------------+
139139
140140Fragment built-ins
You can’t perform that action at this time.
0 commit comments