I want to create one game in cocos2d in which one object is running .
I want to move this object from left and right base on device accelerometer. I am getting the value of the accelerometer and update the location of the object. even I can see the new location in the LOG. but the object is not moving from it's possion. here it the code which I have writen in the app .
- (void) accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration1 { acceleration = acceleration1; CGPoint position = mainPlayer.position; if(acceleration.y < -0.25) { // tilting the device to the right position.y -= 0.25; } else if (acceleration.y > 0.25) { // tilting the device to the left position.y += 0.25; } else { } // newPosition = position; CCAction *action = [CCMoveTo actionWithDuration:0.01 position:position]; [mainPlayer runAction:action]; // mainPlayer.position = ccp(position.x, position.y); }
I have try both way by setting position direct and by using action.
Dose any one knows why this problem is occure or any setting need for accelerometer to work.
Please give any link for such kind example.
Try using MoveBy instead of MoveTo: