mirror of https://github.com/axmolengine/axmol.git
Merge pull request #9133 from pyrosphere/fix-wp8-back-key
Fix Back Key behaviour and Director::getInstance()->end() on WP8
This commit is contained in:
commit
9fdd85a1be
|
@ -179,6 +179,11 @@ bool GLViewImpl::isOpenGLReady()
|
||||||
void GLViewImpl::end()
|
void GLViewImpl::end()
|
||||||
{
|
{
|
||||||
m_windowClosed = true;
|
m_windowClosed = true;
|
||||||
|
std::string str;
|
||||||
|
if (m_delegate) {
|
||||||
|
// Terminate app on Director::getInstance()->end();
|
||||||
|
m_delegate->Invoke(Cocos2dEvent::TerminateApp, stringToPlatformString(str));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -193,11 +198,8 @@ void GLViewImpl::OnResuming(Platform::Object^ sender, Platform::Object^ args)
|
||||||
// user pressed the Back Key on the phone
|
// user pressed the Back Key on the phone
|
||||||
void GLViewImpl::OnBackKeyPress()
|
void GLViewImpl::OnBackKeyPress()
|
||||||
{
|
{
|
||||||
std::string str;
|
EventKeyboard event(EventKeyboard::KeyCode::KEY_ESCAPE, false);
|
||||||
if(m_delegate)
|
Director::getInstance()->getEventDispatcher()->dispatchEvent(&event);
|
||||||
{
|
|
||||||
m_delegate->Invoke(Cocos2dEvent::TerminateApp, stringToPlatformString(str));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void GLViewImpl::OnPointerPressed(CoreWindow^ sender, PointerEventArgs^ args)
|
void GLViewImpl::OnPointerPressed(CoreWindow^ sender, PointerEventArgs^ args)
|
||||||
|
|
Loading…
Reference in New Issue