소스 검색

Merge pull request #6700 from paulloz/csharp/signals-must-be-public

C# signal delegates must be public
Max Hilbrunner 2 년 전
부모
커밋
f41639577e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tutorials/scripting/c_sharp/c_sharp_signals.rst

+ 1 - 1
tutorials/scripting/c_sharp/c_sharp_signals.rst

@@ -36,7 +36,7 @@ In addition, you can always access signal names associated with a node type thro
 Custom signals as C# events
 ---------------------------
 
-To declare a custom event in your C# script, use the ``[Signal]`` attribute on a delegate type.
+To declare a custom event in your C# script, use the ``[Signal]`` attribute on a public delegate type.
 Note that the name of this delegate needs to end with ``EventHandler``.
 
 .. code-block:: csharp