summaryrefslogtreecommitdiffstats
path: root/doc/classes/Callable.xml
diff options
context:
space:
mode:
authorAdam Scott <ascott.ca@gmail.com>2023-06-15 09:54:17 -0400
committerAdam Scott <ascott.ca@gmail.com>2023-06-15 10:45:46 -0400
commit810806e6b57cd1eda34bdfd1e75766d5faf4a6fb (patch)
tree6b62a0f42f8376ee3bfb00f2c16f3ede3b119de2 /doc/classes/Callable.xml
parent773414606079fa745d1c37fce49324ab6a09e972 (diff)
downloadredot-engine-810806e6b57cd1eda34bdfd1e75766d5faf4a6fb.tar.gz
Add note in `Callable` documentation about methods of native types
- Adds a workaround/code example too. - Fixes #58912 (the issue itself is not a bug, but the solution was to add a documentation entry about the "issue")
Diffstat (limited to 'doc/classes/Callable.xml')
-rw-r--r--doc/classes/Callable.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/classes/Callable.xml b/doc/classes/Callable.xml
index 87f1f0b538..5eea774cf4 100644
--- a/doc/classes/Callable.xml
+++ b/doc/classes/Callable.xml
@@ -46,6 +46,17 @@
# Prints "Attack!", when the button_pressed signal is emitted.
button_pressed.connect(func(): print("Attack!"))
[/codeblock]
+ [b]Note:[/b] Methods of native types such as [Signal], [Array], or [Dictionary] are not of type [Callable] in order to avoid unnecessary overhead. If you need to pass those methods as [Callable], use a lambda function as a wrapper.
+ [codeblock]
+ func _init():
+ var my_dictionary = { "hello": "world" }
+
+ # This will not work, `clear` is not a callable.
+ create_tween().tween_callback(my_dictionary.clear)
+
+ # This will work, as lambdas are custom callables.
+ create_tween().tween_callback(func(): my_dictionary.clear())
+ [/codeblock]
</description>
<tutorials>
</tutorials>