Files
XCEngine/docs/api/XCEngine/Audio/AudioSystem/UnregisterSource.md

27 lines
429 B
Markdown
Raw Normal View History

2026-03-26 16:45:24 +08:00
# AudioSystem::UnregisterSource
2026-04-08 16:07:03 +08:00
**命名空间**: `XCEngine::Audio`
**类型**: `method`
**头文件**: `XCEngine/Audio/AudioSystem.h`
## 签名
2026-03-26 16:45:24 +08:00
```cpp
void UnregisterSource(Components::AudioSourceComponent* source);
```
2026-04-08 16:07:03 +08:00
## 作用
2026-03-26 16:45:24 +08:00
2026-04-08 16:07:03 +08:00
更新 `m_activeSources`
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
- 会更新 `m_activeSources`
- 当前实现会调用 `find``begin``end``erase`
2026-03-26 16:45:24 +08:00
## 相关文档
2026-04-08 16:07:03 +08:00
- [AudioSystem](AudioSystem.md)