-
-
Notifications
You must be signed in to change notification settings - Fork 688
Implementing dictionary operators #656
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
Conversation
|
Currently crashes on attempting to update the variant in the dictionary. |
|
Changing over to using However, the Looks like it unreferences the dictionary held within when the variable goes out of scope. |
840cf02 to
c3cda0c
Compare
|
I guess you need to update godot-headers to latest upstream to fix the build. |
c3cda0c to
b008810
Compare
Yup, all done now |
|
Thanks! |
Requires godotengine/godot#55247
Implement accessing dictionary through index. The test case in our test project works but fails on returning the dictionary which is a different issue. The problem here is that
return dictwill do a swap with a temporary dictionary object. This object does not instance a Godot object and the error happens on trying to free this non-existent object. We can see in the log that the dictionary was returned correctly:CI will fail until
godot-headersis updated.