We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7c39ef commit c41601fCopy full SHA for c41601f
modules/mono/glue/GodotSharp/GodotSharp/Core/Dictionary.cs
@@ -174,7 +174,7 @@ public ICollection<Variant> Values
174
var keys = Array.CreateTakingOwnershipOfDisposableValue(keysArray);
175
176
godot_array valuesArray;
177
- NativeFuncs.godotsharp_dictionary_keys(ref self, out valuesArray);
+ NativeFuncs.godotsharp_dictionary_values(ref self, out valuesArray);
178
var values = Array.CreateTakingOwnershipOfDisposableValue(valuesArray);
179
180
int count = NativeFuncs.godotsharp_dictionary_count(ref self);
0 commit comments