Fix documentation links and add missing destructor docs

- Add missing ~ProxyAllocator destructor entry to proxy-allocator.md
- Fix relative link paths in resources documentation
This commit is contained in:
2026-03-19 01:14:36 +08:00
parent 7332a2a592
commit 94beec946b
3 changed files with 16 additions and 3 deletions

View File

@@ -17,6 +17,7 @@
| 方法 | 描述 |
|------|------|
| `ProxyAllocator` | 构造代理分配器 |
| `~ProxyAllocator` | 析构函数 |
### 内存操作

View File

@@ -58,9 +58,13 @@
| 方法 | 描述 |
|------|------|
| `Containers::Array<ResourceGUID> TopologicalSort() const` | 拓扑排序(按依赖顺序 |
| `Containers::Array<ResourceGUID> TopologicalSort() const` | 拓扑排序(当前返回空数组 - stub |
| `bool Unload(ResourceGUID guid)` | 安全卸载(考虑依赖关系) |
## 实现说明
**注意**: `TopologicalSort()` 当前为 stub返回空数组。
### 清理
| 方法 | 描述 |

View File

@@ -15,8 +15,8 @@
| 方法 | 描述 |
|------|------|
| `virtual Core::UniqueRef<ImportSettings> Clone() const = 0` | 克隆一份设置 |
| `virtual bool LoadFromJSON(const Containers::String& json)` | 从 JSON 加载设置 |
| `virtual Containers::String SaveToJSON() const` | 保存为 JSON 字符串 |
| `virtual bool LoadFromJSON(const Containers::String& json)` | 从 JSON 加载设置(当前返回 false - stub |
| `virtual Containers::String SaveToJSON() const` | 保存为 JSON 字符串(当前返回空字符串 - stub |
---
@@ -26,6 +26,10 @@
**头文件**: `XCEngine/Resources/TextureImportSettings.h`
## 实现说明
**注意**: `LoadFromJSON()``SaveToJSON()` 当前为 stub 实现。
### 枚举类型
#### MipmapFilter
@@ -85,6 +89,10 @@
**头文件**: `XCEngine/Resources/MeshImportSettings.h`
## 实现说明
**注意**: `LoadFromJSON()``SaveToJSON()` 当前为 stub 实现。
### MeshImportFlags
| 值 | 描述 |