this post was submitted on 10 Sep 2024
29 points (96.8% liked)

Godot

5679 readers
8 users here now

Welcome to the programming.dev Godot community!

This is a place where you can discuss about anything relating to the Godot game engine. Feel free to ask questions, post tutorials, show off your godot game, etc.

Make sure to follow the Godot CoC while chatting

We have a matrix room that can be used for chatting with other members of the community here

Links

Other Communities

Rules

We have a four strike system in this community where you get warned the first time you break a rule, then given a week ban, then given a year ban, then a permanent ban. Certain actions may bypass this and go straight to permanent ban if severe enough and done with malicious intent

Wormhole

!roguelikedev@programming.dev

Credits

founded 1 year ago
MODERATORS
top 5 comments
sorted by: hot top controversial new old
[–] emr@lemmy.sdf.org 7 points 1 week ago (2 children)

I'm so hype for typed dictionaries

[–] GammaGames@beehaw.org 3 points 1 week ago

We finally don’t need custom resources for simple exports!

[–] gccalvin@lemmy.world 1 points 1 week ago (1 children)

Would you be willing to explain what a typed dictionary is and when it would be useful in the context of Godot?

[–] julianh@lemm.ee 3 points 1 week ago (1 children)

Gdscript let's you do static typing, so "var a : int" ensures that a is an integer. This can help prevent bugs and bad code, and even speeds up the interpreter since it can make some assumptions.

So until now, you couldn't do that with dictionaries, they always allowed any type as a key or value. This adds that functionality so dictionaries can be used with stricter rules, preventing bugs and making them faster.

[–] gccalvin@lemmy.world 1 points 6 days ago