您可以在PhysicsExample中看到用於更改重心的代碼。
您必須使用與您找到的示例中相同的代碼分支。請注意,我鏈接了PhysicsExample的GLES2-AnchorCenter分支版本。這個分支是最新的。沒有AccelerometerData
班。它已更名爲AccelerationData
。
可以以類似的方式檢測傾斜(手機方向)。您必須在您的活動中調用以下方法並傳遞正確的偵聽器。
protected boolean enableOrientationSensor(final IOrientationListener pOrientationListener) {
return this.mEngine.enableOrientationSensor(this, pOrientationListener);
}
protected boolean enableOrientationSensor(final IOrientationListener pOrientationListener, final OrientationSensorOptions pLocationSensorOptions) {
return this.mEngine.enableOrientationSensor(this, pOrientationListener, pLocationSensorOptions);
}
來源
2014-01-28 06:39:11
sm4