私はゲームを書いています。ユーザーが画面の左側に触れるとプレーヤーは左に移動し、ユーザーが画面の右側に触れるとプレーヤーは右に移動します。
現在、プレーヤーは最初に画面に触れたときにのみ移動します。ユーザーが画面に指を置いている間、力を加えたいのですが...これに対するAPI呼び出しが見つからないようです。私は何をしなければなりませんか?
- (void)ccTouchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
[self handleFrankMove:touches withEvent:event];
}
-(void)ccTouchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{
[self handleFrankMove:touches withEvent:event];
}
-(void)ccTouchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
[self handleFrankMove:touches withEvent:event];
}