Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Dictionary Support #5

Open
HaSa1002 opened this issue Oct 15, 2020 · 0 comments
Open

Add Dictionary Support #5

HaSa1002 opened this issue Oct 15, 2020 · 0 comments
Labels
bug Something isn't working converter:csharp enhancement New feature or request

Comments

@HaSa1002
Copy link
Owner

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)}
};
@HaSa1002 HaSa1002 added bug Something isn't working converter:csharp enhancement New feature or request labels Oct 15, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working converter:csharp enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant