27 lines
508 B
Markdown
27 lines
508 B
Markdown
# TransformComponent::Deserialize
|
|
|
|
**命名空间**: `XCEngine::Components`
|
|
|
|
**类型**: `method`
|
|
|
|
**头文件**: `XCEngine/Components/TransformComponent.h`
|
|
|
|
## 签名
|
|
|
|
```cpp
|
|
void Deserialize(std::istream& is) override;
|
|
```
|
|
|
|
## 作用
|
|
|
|
执行 `getline`、`empty`、`find` 协同流程。
|
|
|
|
## 当前实现
|
|
|
|
- 会更新 `m_localPosition`、`m_localRotation`、`m_localScale`。
|
|
- 当前实现会调用 `getline`、`empty`、`find`、`substr`。
|
|
|
|
## 相关文档
|
|
|
|
- [TransformComponent](TransformComponent.md)
|