docs: sync api and planning docs

This commit is contained in:
2026-04-08 16:07:03 +08:00
parent 08c3278e10
commit 31756847ab
1826 changed files with 44502 additions and 29645 deletions

View File

@@ -1,31 +1,25 @@
# Component::Update
更新运行时状态。
**命名空间**: `XCEngine::Components`
**类型**: `method`
**头文件**: `XCEngine/Components/Component.h`
## 签名
```cpp
virtual void Update(float deltaTime);
```
该方法声明于 `XCEngine/Components/Component.h`,当前页面用于固定 `Component` 类目录下的方法级 canonical 路径。
## 作用
**参数:**
- `deltaTime` - 参数语义详见头文件声明。
当前实现为空。
**返回:** `void` - 无返回值。
## 当前实现
**示例:**
```cpp
#include <XCEngine/Components/Component.h>
void Example() {
XCEngine::Components::Component object;
// 根据上下文补齐参数后调用 Component::Update(...)。
(void)object;
}
```
- 当前函数体为空。
## 相关文档
- [返回类总览](Component.md)
- [返回模块目录](../Components.md)
- [Component](Component.md)