this post was submitted on 30 Sep 2025
35 points (100.0% liked)

Rust

7466 readers
20 users here now

Welcome to the Rust community! This is a place to discuss about the Rust programming language.

Wormhole

!performance@programming.dev

Credits

  • The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)

founded 2 years ago
MODERATORS
top 4 comments
sorted by: hot top controversial new old
[–] alex_is@infosec.exchange 5 points 1 month ago

@turbohz oh hell yea. Godot is pretty cool. Honestly, I think it's the first of the more notable engines to actually have Rust integration. Unreal would be way better if you could use Rust. I tried the C# stuff for a while and I just disliked the language a lot (used it professionally for years too)

[–] Kissaki@programming.dev 4 points 1 month ago

godot-rust v0.4

40% complete! /s

[–] thingsiplay@beehaw.org 3 points 1 month ago (1 children)

Looking at the example code of Export Groups, I don't understand why a #[export] is needed, if there is already a #[export_group(...)] or #[export_subgroup(...)] . Its surely possible in Rust to automatically invoke #[export] if one of the group-macros are invoked, right?

[–] TitanNano@vger.social 1 points 1 month ago

In the initial implementation, export groups have been added as an independent attribute. One attribute creates groups, and the other marks fields for exporting. So yes, this is not being auto-inferred right now, but it could probably be added.