窗口失去焦点时不再自动暂停
This commit is contained in:
parent
2e01f9cb1a
commit
4dfa00e97f
|
|
@ -281,12 +281,12 @@ void e2d::EApp::showConsole(bool show /* = true */)
|
||||||
|
|
||||||
bool e2d::EApp::onActivate()
|
bool e2d::EApp::onActivate()
|
||||||
{
|
{
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool e2d::EApp::onInactive()
|
bool e2d::EApp::onInactive()
|
||||||
{
|
{
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool e2d::EApp::onCloseWindow()
|
bool e2d::EApp::onCloseWindow()
|
||||||
|
|
|
||||||
|
|
@ -34,12 +34,12 @@ void e2d::EScene::onExit()
|
||||||
|
|
||||||
bool e2d::EScene::onActivate()
|
bool e2d::EScene::onActivate()
|
||||||
{
|
{
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool e2d::EScene::onInactive()
|
bool e2d::EScene::onInactive()
|
||||||
{
|
{
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool e2d::EScene::onCloseWindow()
|
bool e2d::EScene::onCloseWindow()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue