Skip to content

Commit f416395

Browse files
authored
Merge pull request #6700 from paulloz/csharp/signals-must-be-public
C# signal delegates must be public
2 parents c59431e + ebdd928 commit f416395

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorials/scripting/c_sharp/c_sharp_signals.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ In addition, you can always access signal names associated with a node type thro
3636
Custom signals as C# events
3737
---------------------------
3838

39-
To declare a custom event in your C# script, use the ``[Signal]`` attribute on a delegate type.
39+
To declare a custom event in your C# script, use the ``[Signal]`` attribute on a public delegate type.
4040
Note that the name of this delegate needs to end with ``EventHandler``.
4141

4242
.. code-block:: csharp

0 commit comments

Comments
 (0)