Fix GDScript warnings pertaining to unused arguments

Those warnings can be ignored by prefixing the argument with an
underscore.
This commit is contained in:
Hugo Locurcio 2019-12-27 16:14:01 +01:00
parent e06586edce
commit 386473845e
No known key found for this signature in database
GPG key ID: 39E8F8BE30B0A49C
5 changed files with 6 additions and 7 deletions

View file

@ -82,4 +82,4 @@ func _on_VisibilityButton_pressed() -> void:
func _on_LineEdit_text_changed(new_text : String) -> void:
Global.canvas.layers[i][2] = new_text
label.text = new_text
label.text = new_text