SKSprite没有定位在

时间:2016-03-19 01:12:34

标签: sprite-kit skspritenode cgpath cgpathref

我在游戏中有一个角色,它应该射击子弹。我已经为角色设置了一切,并设置了子弹穿过的路径。这是我正在使用的代码:

//The destination of the bullet
int x = myCharacter.position.x - 1000 * sin(myCharacter.zRotation);
int y = myCharacter.position.y + 1000 * cos(myCharacter.zRotation);


//The line to test the path
SKShapeNode* beam1 = [SKShapeNode node];

//The path
CGMutablePathRef pathToDraw = CGPathCreateMutable();

//The starting position for the path (i.e. the bullet)
//The NozzleLocation is the location of the nozzle on my character Sprite
CGPoint nozzleLoc=[self convertPoint:myCharacter.nozzleLocation fromNode:myCharacter];
CGPathMoveToPoint(pathToDraw, NULL, nozzleLoc.x, nozzleLoc.y);
CGPathAddLineToPoint(pathToDraw, NULL, x, y);

//The bullet
SKSpriteNode *bullet = [SKSpriteNode spriteNodeWithTexture:bulletTexture size:CGSizeMake(6.f, 6.f)];
bullet.physicsBody = [SKPhysicsBody bodyWithCircleOfRadius:3 center:bullet.position ];
[bullet.physicsBody setAffectedByGravity:NO];
[bullet.physicsBody setAllowsRotation:YES];
[bullet.physicsBody setDynamic:YES];
bullet.physicsBody.categoryBitMask = bulletCategory;
bullet.physicsBody.contactTestBitMask = boundsCategory;

//These log the correct locations for the character
//and the nozzle Location
NSLog(@"myposition: %@",NSStringFromCGPoint(myCharacter.position));
NSLog(@"nozloc: %@",NSStringFromCGPoint(nozzleLoc));

bullet.position = [bullet convertPoint:nozzleLoc fromNode:self];
[self addChild:bullet];
NSLog(@"Bullet Position: %@",NSStringFromCGPoint(bullet.position));
[bullet runAction:[SKAction followPath:pathToDraw duration:6.f]];

//I'm using this to test the path
beam1.path = pathToDraw;
[beam1 setStrokeColor:[UIColor redColor]];
[beam1 setName:@"RayBeam"];
[self addChild:beam1];

这是我从上面使用的NSLog中得到的:

  

myposition:{122.58448028564453,109.20420074462891}

     

nozloc:{145.24272155761719,77.654090881347656}

     

子弹位置:{145.24272155761719,77.654090881347656}

所以一切都应该有效,对吧?但我遇到的问题是子弹是从略有不同的位置拍摄的。您可以从下图中看到:

enter image description here

我对齐了角色,以便子弹从中间的那个小方块开始。通过这种方式,您可以看到子弹应该从哪里开始的距离(在我的角色持有的枪前),以及屏幕中间的方块。

子弹在一条直线上正确移动,并且线的角度与路径的角度相同(路径和线子弹的形状是平行的,如图所示)。当我移动我的线时,子弹也以相同的方式移动。我认为问题是节点之间的点转换,但我已经尝试了两个

[self convertPoint:myCharacter.nozzleLocation fromNode:myCharacter]
[bullet convertPoint:nozzleLoc fromNode: self]
[self convertPoint:nozzleLoc toNode:bullet]

但是,它们都会导致子弹的完全相同的起点。你知道为什么我有这个问题吗?是因为我使用setScale缩小我的角色精灵(我将它设置为0.3)?

非常感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

这不是您的问题,但nozzleLoc已经在场景的坐标空间中,所以它应该是:

bullet.position = nozzleLoc;

这将节省必须计算的快速第二次转换。

followPath:duration:followPath:asOffset:orientToPath:duration:的{​​{1}}相同 - 它使用您当前的位置作为路径的来源。请参阅文档here

要解决此问题,您需要asOffset: YESasOffset(需要上面的完整方法调用)您可以将其保留原样并取出该行设置子弹位置的代码。