3 个版本 (破坏性更新)
0.4.0 | 2023年10月18日 |
---|---|
0.3.0 | 2023年9月14日 |
0.2.0 | 2023年4月18日 |
#16 在 #asset-manager
每月206次下载
用于 21 个crate(通过 wick-config)
32KB
862 代码行
此crate提供AssetManager特性的派生宏。
示例
use derive_asset_container::AssetManager;
#[derive(Clone, AssetManager)]
#[asset(asset(TestAsset))]
struct Struct {
field: TestAsset,
inner: InnerStruct,
}
#[derive(Clone, AssetManager)]
#[asset(asset(TestAsset), lazy)]
struct InnerStruct {
field: TestAsset,
}
依赖项
~1.3–2.1MB
~42K SLoC