docs: update README.md and fix components module docs

- Update README.md project structure docs/api section
  - Add missing audio/, components/, scene/ directories
  - Reorder alphabetically
- Update Components test count from 2+ to 3
- Expand documentation section with module listings
- Remove incomplete audio-source and audio-listener component docs
  from components.md (referenced 30+ and 16+ non-existent method docs)
This commit is contained in:
2026-03-22 13:28:14 +08:00
parent a399eeec26
commit 750ac95951
9 changed files with 0 additions and 174 deletions

View File

@@ -0,0 +1,28 @@
# MaterialLoader::~MaterialLoader
## 方法签名
```cpp
virtual ~MaterialLoader() override;
```
## 详细描述
`MaterialLoader` 类的析构函数,用于清理 `MaterialLoader` 实例占用的资源。当前实现为默认析构函数。
## 参数
## 返回值
## 示例
```cpp
{
MaterialLoader loader;
// 使用 loader...
} // loader 在此自动销毁
```