我正在旋转一个 sprite( rect
) 以面对屏幕上的触摸位置。代码有效,但有几度的偏移量,精灵越垂直,偏移量越大。我在下面添加了一张图片,非常清楚地说明了我的问题。
红点是我在 Photoshop 中添加的触摸位置,用于显示偏移问题。所以唯一可见的精灵是矩形(IE rect
)。
当我处于 90 度角时,偏移是最明显的。然后它逐渐消失,我越接近中心。
我怎样才能使精灵准确地面向触摸位置?或者我该如何纠正这个偏移量?
- (void) ccTouchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{
UITouch *touch = [touches anyObject];
CGPoint location = [touch locationInView:[touch view]];
location = [[CCDirector sharedDirector] convertToGL:location];
float angle = atan2f(location.y-rect.position.y, location.x-rect.position.y);
angle = CC_RADIANS_TO_DEGREES(angle);
angle *=-1;
rect.rotation = angle;
float distance = sqrtf(pow((location.x-rect.position.x), 2)+pow(location.y-rect.position.y, 2));
rect.scaleX = distance;
}