Button click event in the Ogre3d for ios
- by user1184398
Is it possible to access the button click event by using the cursor?
These are the steps I followed for the button click event using the SDK trays
m_pTrayMgr = new OgreBites::SdkTrayManager("TrayMgr", m_pRenderWnd, m_pMouse, this);
I create the buttons
m_LeftBtn = tray->createButton(OgreBites:: TL_LEFT, "sdk_button_down", "Left");
m_RightBtn = tray->createButton(OgreBites::TL_RIGHT, "sdk_button_up", "Right");
And I am calling this function
void OgreFramework::buttonHit(OgreBites::Button* button)
{
if(button->getName().compare("sdk_button_down") == 0 )
{
printf("XXX");
}
}
But the button hit function is not getting called... Could somebody provide some sample code? I'm not using any cursor for the click.