在 cocos2d 中有人知道如何使精灵居中吗?现在,我有一个精灵可以移动到您在屏幕上触摸的位置。问题是精灵与左下角对齐。这意味着如果您只触摸底部一点点,精灵就会向上移动,而不是向下移动。提前致谢!
这是我的代码...
(BOOL) ccTouchesBegan:(NSSet *)touches withEvent:(UIEvent *) event {
UITouch *touch = [touches anyObject];
CGPoint point = [touch locationInView: [touch view]];
[mainSprite do:[MoveTo actionWithDuration:0.5 position:ccp(point.x, 480 - point.y)]];
return YES;
}