mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 00:13:30 +00:00
Remove [Signal]
attribute from events
- Remove event as a valid target of `SignalAttribute` - Stop adding the `[Signal]` attribute to events in bindings_generator - Make bindings_generator use the `EventHandler` suffix to be consistent with the C# source generator - Remove obsolete comment about the signal's delegate name
This commit is contained in:
parent
9876382df8
commit
9c9b8fcd34
3 changed files with 3 additions and 7 deletions
|
@ -117,10 +117,6 @@ namespace Godot.SourceGenerators
|
|||
source.Append(symbol.NameWithTypeParameters());
|
||||
source.Append("\n{\n");
|
||||
|
||||
// TODO:
|
||||
// The delegate name already needs to end with 'Signal' to avoid collision with the event name.
|
||||
// Requiring SignalAttribute is redundant. Should we remove it to make declaration shorter?
|
||||
|
||||
var members = symbol.GetMembers();
|
||||
|
||||
var signalDelegateSymbols = members
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue