27 lines
436 B
Markdown
27 lines
436 B
Markdown
|
|
# ScriptComponent::OnEnable
|
||
|
|
|
||
|
|
**命名空间**: `XCEngine::Scripting`
|
||
|
|
|
||
|
|
**类型**: `method`
|
||
|
|
|
||
|
|
**头文件**: `XCEngine/Scripting/ScriptComponent.h`
|
||
|
|
|
||
|
|
## 签名
|
||
|
|
|
||
|
|
```cpp
|
||
|
|
void OnEnable() override;
|
||
|
|
```
|
||
|
|
|
||
|
|
## 当前实现行为
|
||
|
|
|
||
|
|
直接转发到:
|
||
|
|
|
||
|
|
```cpp
|
||
|
|
ScriptEngine::Get().OnScriptComponentEnabled(this);
|
||
|
|
```
|
||
|
|
|
||
|
|
## 相关文档
|
||
|
|
|
||
|
|
- [OnDisable](OnDisable.md)
|
||
|
|
- [ScriptEngine::OnScriptComponentEnabled](../ScriptEngine/OnScriptComponentEnabled.md)
|