瀏覽代碼

Add clarification on how to connect C# signals in the editor (#2963)

* add clarification on how to see c# signals in the editor

* reference the top right build button instead of the mono tab
theowiik 5 年之前
父節點
當前提交
640816652d
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      getting_started/scripting/c_sharp/c_sharp_features.rst

+ 1 - 0
getting_started/scripting/c_sharp/c_sharp_features.rst

@@ -96,6 +96,7 @@ Declaring a signal in C# is done with the ``[Signal]`` attribute on a delegate.
     delegate void MySignalWithArguments(string foo, int bar);
 
 These signals can then be connected either in the editor or from code with ``Connect``.
+If you want to connect a signal in the editor, you need to (re)build the project assemblies to see the new signal. This build can be manually triggered by clicking the “Build” button at the top right corner of the editor window. 
 
 .. code-block:: csharp