Update the C# EmitSignal() code sample in the signals tutorial

The GDScript code sample was updated in
f044f2607e. This updates the C#
code sample.
This commit is contained in:
Hugo Locurcio
2020-03-03 22:54:23 +01:00
parent f044f2607e
commit 3fcbe00654
+1 -1
View File
@@ -251,7 +251,7 @@ To pass values, add them as the second argument to the ``emit_signal`` function:
public override void _Ready()
{
EmitSignal(nameof(MySignal));
EmitSignal(nameof(MySignal), true, 42);
}
}