1
0
Fork 0
This repository has been archived on 2022-10-04. You can view files and clone it, but cannot push or open issues or pull requests.
godot-thunderk-basics/type_tool.gd

6 lines
128 B
GDScript

tool
static func update_dict(base: Dictionary, incoming: Dictionary):
for key in incoming.keys():
base[key] = incoming[key]