this post was submitted on 03 May 2024
44 points (81.4% liked)

Rust

5876 readers
71 users here now

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

Wormhole

[email protected]

Credits

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

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 12 points 5 months ago (2 children)

clap and bevy are big offenders there. It's really hard to learn how to use them due to this.

[–] [email protected] 5 points 5 months ago (1 children)

Are you kidding me? Clap has some of the best documentation of any crate.

[–] [email protected] 1 points 5 months ago (1 children)

I just checked again, and apparently they finally added some documentation since I last checked. The section about the macro stuff just used to say “look at the examples”.

[–] [email protected] 1 points 5 months ago

Ah that explains it.

[–] [email protected] 2 points 5 months ago (1 children)

It sucks that there aren't (in my limited experience) a ton of engines out there with good documentation (at least that are built in Rust). I've started trying to build my own engine, but the complexity and time required are certainly a bit of a barrier, especially for the game I'm working on. (N.B. - The game is nowhere close to being in any sort of state to be shown, so please don't ask 😆)

[–] [email protected] 2 points 5 months ago (1 children)

My experience has been that good documentation is mostly something done if somebody gets paid for the work. People working on stuff in their spare time just don't care enough to document their project.

[–] [email protected] 1 points 5 months ago

That, or they don't care enough to pick it back up if they ever drop it. Nothing hurts worse than forgetting what you're trying to do because you don't even comment your code.