-
-
Notifications
You must be signed in to change notification settings - Fork 22k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UNUSED_SIGNAL warning if signal is only used via emit_signal() #89632
Comments
Thank you for your report, consolidating in: |
I do not think this is the same bug. The linked issue seems to be for a different problem from back in 3.x where you'd get the warning if you did not explicitly use The reported issue is that you now get the warning even when using |
Yes, this is expected, which is why we added "explicitly" to the warning message. Note that you can use We could add an exception for
It's a bug fix, the |
I see, but then I think it could be a good idea to either add an exception for Otherwise I think you might get a lot more confused bug reports like this one once 4.3 is released and more people start getting these warnings that were not they may perceptive as incorrect just like I did. |
Uhm, yeah its still annoying even when for example you try to emit signals inside a new thread. You cant use
For example: extends Node
signal serverlist_updated(list_var)
var g_thread :Thread
var threading:bool = true
var list_var = {}
func g_loop():
while threading:
if 2 == 3:
call_deferred("emit_signal","serverlist_updated",list_var)
pass
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
g_thread = Thread.new()
g_thread.start(g_loop,Thread.PRIORITY_HIGH)
pass # Replace with function body. |
You can use |
This warning triggers when the Signal is connected from the Editor Signals panel. Perhaps the Project Settings default should be set to Ignore instead of Warn. Most new Godot users will be using the Editor panel, and will be confused by the warning. I'm already starting to see this show up in the community Reddit, and expect more instances once 4.3.0 is fully released. |
i prefer not to use editor to connect stuff that way because later on you can forget what was connected to where, as the codebase gets more convoluted and overall it would result in a mess.. i did that with input_action bindings... never again.. spent too many hours trying to debug why it dont work when it turned out i have previously bound the button so some different action.. it was a pain to debug.. Thats why i always try to do everything in code if possible.. that way all you have to do is read through it and youll see the whole picture on how everything is connected and works.. |
Commented on the other issue, but I'll paste it here as well. You can explicitly ignore the warning for a specific signal if you want: @warning_ignore("unused_signal")
signal some_signal https://docs.godotengine.org/en/stable/tutorials/scripting/gdscript/warning_system.html I do this in spots where I know that the signal is called from elsewhere. If you always call signals like... some_node.some_signal.emit() You can find all references to the signal easily in the IDE. |
Tested versions
v4.3.dev5
not reproducable in v4.3.dev4
System information
macOS 14.4
Issue description
If you emit signals using emit_signal("signal_name") this will no longer register in 4.3dev5 as using this signal and trigger an UNUSED_SIGNAL warning for the signal.
Steps to reproduce
Write a simple script like
And observer the warning:
Line 3 (UNUSED_SIGNAL):The signal "value_changed" is declared but never explicitly used in the class.
If you instead use
value_changed.emit()
the warning is not shown.If the script is used in the project you'll get a similar warning in the debug output running the game.
Minimal reproduction project (MRP)
See script lines above.
The text was updated successfully, but these errors were encountered: