codetranslator
codetranslator copied to clipboard
Add Dictionary Support
GDScript Dictionaries can be created using
var dict = {"a": 10, "some": Vector2(10, 11)}
In C# we can use a similar syntax
var dict = new Godot.Collections.Dictionary {
{"a", 10},
{"some", Vector2(10, 11)}
};