docs: update resources API docs

This commit is contained in:
2026-03-20 02:35:35 +08:00
parent fd792b7df1
commit ea756c0177
314 changed files with 9439 additions and 1360 deletions

View File

@@ -0,0 +1,25 @@
# AsyncLoader::IsLoading
```cpp
bool IsLoading() const
```
检查是否有正在加载的资源。
**参数:**
**返回:** 如果有待处理或完成的加载请求返回 `true`,否则返回 `false`
**复杂度:** O(1)
**示例:**
```cpp
if (AsyncLoader::Get().IsLoading()) {
printf("Resources are still loading...\n");
}
```
## 相关文档
- [AsyncLoader 总览](asyncloader.md) - 返回类总览