你好,
我是spriteKit的新手,正在尝试制作游戏。在游戏中,我有一个玩家从一个楼梯跳到另一个楼梯,从屏幕的顶部无限跳来跳去(就像在Doodle Jump中一样,只有该跳动是由玩家的触摸来控制的)。我试图通过向玩家施加冲动来进行跳跃,但是我想通过玩家的触摸持续时间来控制跳跃强度。我该怎么办?当玩家开始触摸屏幕时执行跳转,因此我无法测量跳转强度(通过计算触摸持续时间)...有什么想法吗?
提前致谢!!! (:
最佳答案
这是一个简单的演示,可在触摸持续时间内将脉冲应用于节点。该方法很简单:在触摸开始时设置BOOL变量YES
,在触摸结束时设置NO
。触摸时,它将在update
方法中施加恒定的脉冲。
为了使游戏更加自然,您可能需要优化脉冲动作,或者在节点上升时向下滚动背景。
GameScene.m:
#import "GameScene.h"
@interface GameScene ()
@property (nonatomic) SKSpriteNode *node;
@property BOOL touchingScreen;
@property CGFloat jumpHeightMax;
@end
@implementation GameScene
- (void)didMoveToView:(SKView *)view
{
self.physicsBody = [SKPhysicsBody bodyWithEdgeLoopFromRect:self.frame];
// Generate a square node
self.node = [SKSpriteNode spriteNodeWithColor:[SKColor redColor] size:CGSizeMake(50.0, 50.0)];
self.node.position = CGPointMake(CGRectGetMidX(self.frame), CGRectGetMidY(self.frame));
self.node.physicsBody = [SKPhysicsBody bodyWithRectangleOfSize:self.node.size];
self.node.physicsBody.allowsRotation = NO;
[self addChild:self.node];
}
const CGFloat kJumpHeight = 150.0;
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
self.touchingScreen = YES;
self.jumpHeightMax = self.node.position.y + kJumpHeight;
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
self.touchingScreen = NO;
self.jumpHeightMax = 0;
}
- (void)update:(CFTimeInterval)currentTime
{
if (self.touchingScreen && self.node.position.y <= self.jumpHeightMax) {
self.node.physicsBody.velocity = CGVectorMake(0, 0);
[self.node.physicsBody applyImpulse:CGVectorMake(0, 50)];
} else {
self.jumpHeightMax = 0;
}
}
@end
关于ios - 如何测量 Sprite 的跳跃强度?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32540312/