cocos2d-x之加速度传感器初试
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cocos2d-x之加速度传感器初试相关的知识,希望对你有一定的参考价值。
bool HelloWorld::init()
{
if ( !Layer::init() )
{
return false;
}
Device::setAccelerometerEnabled(true);
Director::getInstance()->getEventDispatcher()->addEventListenerWithSceneGraphpriority(EventListenerAcceleration::create([](Acceleration *a,Event *e){
log("x:%g,y:%g,z:%g",a->x,a->y,a->z);
}),this);
return true;
}
以上是关于cocos2d-x之加速度传感器初试的主要内容,如果未能解决你的问题,请参考以下文章