Skip to content

Add section about goods assets library #141

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

Merged
merged 3 commits into from
May 30, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions content/posts/newsletter-010/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,24 @@ If needed, a section can be split into subsections with a "------" delimiter.

## Library & Tooling Updates

### [Goods](https://crates.io/crates/goods)

Asset management library that aims to be easy to use, flexible, extensible and support virtually any use-case.

Need to load complex asset that pulls subassets with zero boilerplate on call-site? All heavy-lifting for loading subassets can be done in `Format` implementation for the asset type.

Asset is made of GPU resources and access to graphics device is required to create asset instance? `Asset::build` receives reference to `Asset::Context`.

Targeting browser? `goods` support building for wasm and bundle Fetch API based asset data source.

Target doesn't have `std`? Core types and traits are `no_std` compatible (but `alloc` is required).

Looking to keep things tidy and fast to build? Clean build of the crate with no features takes about ~3s on modern CPU.

Integration with `serde` ecosystem? Special `Format` implementations can load assets whose representation implement `serde::de::DeserializeOwned`. Crate includes `Format`s for JSON, YAML and RON.

Crate's repo has few examples with nearly each line of the code explained.

## Popular Workgroup Issues in Github

<!-- Up to 10 links to interesting issues -->
Expand Down