使用真机来调试
1 //加速度的默认状态是关闭的,需要手动的开启 2 Device::setAccelerometerEnabled(true); 3 4 //auto listener = EventListenerAcceleration::create(const std::function<void (Acceleration *, Event *)> &callback); 5 //如何添加加速度的事件监听器,使用的是EventListenerAcceleration, 6 //他的穿进来的参数类型是个个函数,所以为了简写代码,都放在一起写了 7 Director::getInstance()->getEventDispatcher()->addEventListenerWithSceneGraphPriority(EventListenerAcceleration::create([](Acceleration *a, Event *e){ 8 log("x:%g,y:%g,z:%g",a->x,a->y,a->z);//获取相关信息 9 }), this);
时间: 2024-11-10 15:35:02