From 3fcbe00654d040d913847cf4042864f9af42ba7d Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Tue, 3 Mar 2020 22:54:23 +0100 Subject: [PATCH] Update the C# `EmitSignal()` code sample in the signals tutorial The GDScript code sample was updated in f044f2607e0801e1d2a1d946b9849a67abca03ee. This updates the C# code sample. --- getting_started/step_by_step/signals.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting_started/step_by_step/signals.rst b/getting_started/step_by_step/signals.rst index 938f75caf..d3ed66426 100644 --- a/getting_started/step_by_step/signals.rst +++ b/getting_started/step_by_step/signals.rst @@ -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); } }