我應該使用什麼方法來平滑移動響應觸摸的精靈? 我使用的CCMoveTo方法的持續時間和我的觸摸位置是。我的精靈會移動,但它(精靈)會跳到讓它跳動的位置。我想讓精靈(用戶可控制的一個精靈)在拖過屏幕時跟隨我的手指。預先感謝您:)平滑移動與觸摸
-Dustin
*編輯
- (BOOL)ccTouchBegan:(UITouch *)touch withEvent:(UIEvent *)event {
return YES;
}
- (void)ccTouchEnded:(UITouch *)touch withEvent:(UIEvent *)event {
CGPoint location = [self convertTouchToNodeSpace: touch];
//[player stopAllActions];
//[player runAction: [CCMoveTo actionWithDuration:.1 position:location]];
player.position = location;
}
這是該代碼後,我直接設置精靈的位置。
非常感謝! – 2011-05-11 11:10:09