首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >SKSpriteNode定位

SKSpriteNode定位
EN

Stack Overflow用户
提问于 2014-09-28 02:27:11
回答 1查看 102关注 0票数 2

我真的很难将我的精灵节点定位在屏幕的顶部,精灵之间的间距相等/接近相等。精灵显示了,但我不知道如何编写它,使其在所有iDevices(除了iPads)上都能工作。请帮助:)

代码语言:javascript
复制
SKTexture *ure = [SKTexture textureWithImageNamed:@"enemy"];
SKSpriteNode *temp = [[SKSpriteNode alloc] initWithTexture:ure color:nil size:CGSizeMake(400, ure.size.height)];
CGPoint pos = CGPointMake(70,50);
[temp setPosition: [self convertPointFromView:pos]];
temp.physicsBody.affectedByGravity = NO;
[self addChild:temp];


SKTexture *ure2 = [SKTexture textureWithImageNamed:@"enemy"];
SKSpriteNode *temp2 = [[SKSpriteNode alloc] initWithTexture:ure color:nil size:CGSizeMake(400, ure2.size.height)];
CGPoint pos2 = CGPointMake(170,50);
[temp2 setPosition: [self convertPointFromView:pos2]];
temp2.physicsBody.affectedByGravity = NO;
[self addChild:temp2];


SKTexture *ure3 = [SKTexture textureWithImageNamed:@"enemy"];
SKSpriteNode *temp3 = [[SKSpriteNode alloc] initWithTexture:ure color:nil size:CGSizeMake(400, ure3.size.height)];
CGPoint pos3 = CGPointMake(270,50);
[temp3 setPosition: [self convertPointFromView:pos3]];
temp3.physicsBody.affectedByGravity = NO;
[self addChild:temp3]; 
EN

回答 1

Stack Overflow用户

发布于 2014-09-28 04:01:30

代码语言:javascript
复制
SKTexture *ure = [SKTexture textureWithImageNamed:@"enemy"];
    SKSpriteNode *temp = [[SKSpriteNode alloc] initWithTexture:ure color:nil size:CGSizeMake(self.size.width/10, ure.size.height)];//self.size.width/10 for example.
    CGPoint pos = CGPointMake(self.size.width/2 + pos.frame.size.width, self.size.height - pos.frame.size.height);
    [temp setPosition: [self convertPointFromView:pos]];
    temp.physicsBody.affectedByGravity = NO;
    [self addChild:temp];


    SKTexture *ure2 = [SKTexture textureWithImageNamed:@"enemy"];
    SKSpriteNode *temp2 = [[SKSpriteNode alloc] initWithTexture:ure color:nil size:CGSizeMake(self.size.width/10, ure2.size.height)];
    CGPoint pos2 = CGPointMake(self.size.width/2, self.size.height - pos2.frame.size.height);
    [temp2 setPosition: [self convertPointFromView:pos2]];
    temp2.physicsBody.affectedByGravity = NO;
    [self addChild:temp2];


    SKTexture *ure3 = [SKTexture textureWithImageNamed:@"enemy"];
    SKSpriteNode *temp3 = [[SKSpriteNode alloc] initWithTexture:ure color:nil size:CGSizeMake(self.size.width/10, ure3.size.height)];
    CGPoint pos3 = CGPointMake(self.size.width/2 - pos3.frame.size.width, self.size.height - pos3.frame.size.height);;
    [temp3 setPosition: [self convertPointFromView:pos3]];
    temp3.physicsBody.affectedByGravity = NO;
    [self addChild:temp3];
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/26077792

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档