环境:
cocos2dx-3.3,iphone6 - 10.2
问题:
在iphone手机上存在重力感应延时,但是在安卓上是好的。(目前只查了iphone手机端,没有继续查安卓端)
找到文件 CCDevice-ios.mm 路径:cocos / platform / ios
#define SENSOR_DELAY_GAME 0.02 //重力感应延迟时间,单位秒
- (id) init
{
if( (self = [super init]) ) {
_acceleration = new cocos2d::Acceleration();
_motionManager = [[CMMotionManager alloc] init];
_motionManager.accelerometerUpdateInterval = SENSOR_DELAY_GAME; //找到本方法,此处添加本语句
} return self; }
原文链接:https://www.f2er.com/cocos2dx/338907.html