Files
XCEngine/docs/api/XCEngine/Components/LightComponent/Serialize.md

26 lines
416 B
Markdown
Raw Normal View History

2026-03-26 16:45:24 +08:00
# LightComponent::Serialize
2026-04-08 16:07:03 +08:00
**命名空间**: `XCEngine::Components`
**类型**: `method`
**头文件**: `XCEngine/Components/LightComponent.h`
## 签名
2026-03-26 16:45:24 +08:00
```cpp
void Serialize(std::ostream& os) const override;
```
2026-04-08 16:07:03 +08:00
## 作用
2026-03-26 16:45:24 +08:00
2026-04-08 16:07:03 +08:00
执行 `Serialize` 对应的公开操作。
2026-03-26 16:45:24 +08:00
2026-04-08 16:07:03 +08:00
## 当前实现
2026-03-26 16:45:24 +08:00
2026-04-08 16:07:03 +08:00
- 具体定义位于 `engine/src/Components/LightComponent.cpp`
2026-03-26 16:45:24 +08:00
## 相关文档
2026-04-08 16:07:03 +08:00
- [LightComponent](LightComponent.md)