![]() |
Attention | Topic was automatically imported from the old Question2Answer platform. |
![]() |
Asked By | stryker31313 |
Lets say you have a dictionary
var dict : Dictionary = {}
Lets say you wanted to set_defer a value.
The way I am aware of how to do this is like such…
func _ready():
var key = "Key"
var value = "Value"
call_deferred("set_deferred_dict",key,value)
func set_deferred_dict(key,value):
dictionary[key] = value
However, I would like to know if it is possible to do this via the set_deferred
Is it possible to do something like
set_deferred("dict",???)