Hi!
First of all you made a great job! Thank you!
Godot 4.4 make major update for Dictionaries. Now you can use typed Dictionary.
Unfortunately GDScript-Formatter died when see typed Dictionary
For Example this works well:
var dict: Dictionary = {}
This isnt:
var dict: Dictionary[String, Resource] = {}
Hi!
First of all you made a great job! Thank you!
Godot 4.4 make major update for Dictionaries. Now you can use typed Dictionary.
Unfortunately GDScript-Formatter died when see typed Dictionary
For Example this works well:
var dict: Dictionary = {}This isnt:
var dict: Dictionary[String, Resource] = {}