Fix function name for emit in GDScript

Rename emit() to emit_signal() since this is the right name
This commit is contained in:
Julian Konchunas
2018-12-03 21:52:28 +02:00
committed by GitHub
parent 5a8fd214e1
commit 613312b095

View File

@@ -184,7 +184,7 @@ To emit a signal via code, use the ``emit`` function:
signal my_signal
func _ready():
emit("my_signal")
emit_signal("my_signal")
.. code-tab:: csharp