Fix warning in Signal Documentation
This commit is contained in:
parent
f16c5b564b
commit
c868c9fc41
|
@ -6,7 +6,7 @@
|
||||||
<description>
|
<description>
|
||||||
[Signal] is a built-in [Variant] type that represents a signal of an [Object] instance. Like all [Variant] types, it can be stored in variables and passed to functions. Signals allow all connected [Callable]s (and by extension their respective objects) to listen and react to events, without directly referencing one another. This keeps the code flexible and easier to manage.
|
[Signal] is a built-in [Variant] type that represents a signal of an [Object] instance. Like all [Variant] types, it can be stored in variables and passed to functions. Signals allow all connected [Callable]s (and by extension their respective objects) to listen and react to events, without directly referencing one another. This keeps the code flexible and easier to manage.
|
||||||
In GDScript, signals can be declared with the [code]signal[/code] keyword. In C#, you may use the [code][Signal][/code] attribute on a delegate.
|
In GDScript, signals can be declared with the [code]signal[/code] keyword. In C#, you may use the [code][Signal][/code] attribute on a delegate.
|
||||||
[codeblock]
|
[codeblocks]
|
||||||
[gdscript]
|
[gdscript]
|
||||||
signal attacked
|
signal attacked
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@
|
||||||
[Signal]
|
[Signal]
|
||||||
delegate void ItemDropped(itemName: string, amount: int);
|
delegate void ItemDropped(itemName: string, amount: int);
|
||||||
[/csharp]
|
[/csharp]
|
||||||
[/codeblock]
|
[/codeblocks]
|
||||||
</description>
|
</description>
|
||||||
<tutorials>
|
<tutorials>
|
||||||
<link title="Using Signals">$DOCS_URL/getting_started/step_by_step/signals.html</link>
|
<link title="Using Signals">$DOCS_URL/getting_started/step_by_step/signals.html</link>
|
||||||
|
|
Loading…
Reference in New Issue