diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-02-07 18:38:17 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-02-07 18:38:17 +0800 |
| commit | 5ad175c2532880da714e82b283770a7a2a45364f (patch) | |
| tree | 5e3fc5a3f382adadf037adc54f70e8710f59bb33 /systems/asset/src/asset.rs | |
| parent | 4f184a439056d2b5dff7aa2fa1b1a73a1cbe9582 (diff) | |
Rename asset crate to asset_system
Diffstat (limited to 'systems/asset/src/asset.rs')
| -rw-r--r-- | systems/asset/src/asset.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/systems/asset/src/asset.rs b/systems/asset/src/asset.rs index 247a654..78ee0e4 100644 --- a/systems/asset/src/asset.rs +++ b/systems/asset/src/asset.rs @@ -522,17 +522,17 @@ macro_rules! apply { ]; // Batch precheck - if let Err(e) = asset::asset::apply_precheck_rename_operations(&rename_ops).await { - return Err(asset::error::DataApplyError::PrecheckFailed(e)); + if let Err(e) = asset_system::asset::apply_precheck_rename_operations(&rename_ops).await { + return Err(asset_system::error::DataApplyError::PrecheckFailed(e)); } // Per-handle precheck - if let Err(e) = asset::asset::apply_precheck(&$first).await { - return Err(asset::error::DataApplyError::PrecheckFailed(e)); + if let Err(e) = asset_system::asset::apply_precheck(&$first).await { + return Err(asset_system::error::DataApplyError::PrecheckFailed(e)); } $( - if let Err(e) = asset::asset::apply_precheck(&$rest).await { - return Err(asset::error::DataApplyError::PrecheckFailed(e)); + if let Err(e) = asset_system::asset::apply_precheck(&$rest).await { + return Err(asset_system::error::DataApplyError::PrecheckFailed(e)); } )+ |
