- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在制作一个非常简单的跳跃游戏。当我的“英雄”与地面发生碰撞时,它会调用 didBeginContact
并进行跳跃。非常基本,但效果不佳,因为一段时间后(有时更快,有时更晚......)它停止工作,如您所见。我想知道我是否做错了什么,或者是否有更好的方法,或者 spriteKit 中是否存在我从未听说过的已知错误......图片是gif。如果看不到运动,请在新标签页中打开它
@interface XYZWorld1()
@property (nonatomic) SKSpriteNode *hero;
@property (nonatomic) SKSpriteNode *groundPhysics;
@end
@implementation XYZWorld1
static const uint32_t ground = 0x2 << 2;
static const uint32_t bee = 0x3 << 3;
创建地面的方法:
-(SKSpriteNode*)createGroundxPos:(float)x yPos:(float)y width:(CGFloat)width height:(CGFloat)height
{
SKSpriteNode *ground = [SKSpriteNode spriteNodeWithColor:[UIColor colorWithHue:1 saturation:1 brightness:1 alpha:1] size:CGSizeMake(width, height)];
SKPhysicsBody *groundFisica =[SKPhysicsBody bodyWithRectangleOfSize:ground.size];
[ground setName:@"ground"];
[groundFisica setDynamic:NO];
[groundFisica setAffectedByGravity:NO];
[groundFisica setAllowsRotation:NO];
[groundFisica setRestitution:0];
[groundFisica setUsesPreciseCollisionDetection:YES];
[groundFisica setCategoryBitMask:ground];
[groundFisica setContactTestBitMask:bee];
[groundFisica setCollisionBitMask:bee];
ground.physicsBody = groundFisica;
[ground setPosition:CGPointMake(x, y)];
return ground;
}
创建英雄的方法
-(SKSpriteNode*)crearHero
{
SKTexture *temp = _heroWalkingFrames[0];
SKSpriteNode *hero = [SKSpriteNode spriteNodeWithTexture:temp];
hero.name = @"hero";
hero.zPosition = 1;
if(IS_IPHONE_5){
[hero setPosition:CGPointMake(100, 280)];
}
else {
[hero setPosition:CGPointMake(100, 220)];
}
[hero setSize:CGSizeMake(25, 25)];
hero.physicsBody = [SKPhysicsBody bodyWithRectangleOfSize:CGSizeMake(23, 24)];
[hero.physicsBody setDensity:0.95];
[hero.physicsBody setDynamic:YES];
[hero.physicsBody setAffectedByGravity:YES];
[hero.physicsBody setAllowsRotation:NO];
[hero.physicsBody setUsesPreciseCollisionDetection:YES];
[hero.physicsBody setRestitution:0];
[hero.physicsBody setVelocity:CGVectorMake(0, 0)];
return hero;
}
游戏开始前预加载所有东西的方法:
-(void)preloadAssets
{
//hero
_heroWalkingFrames = [self cargarArrayAtlas:@"astroJump.atlas" imageName:@"astronautaJump_000"];
_hero = [self crearHero];
_hero.physicsBody.categoryBitMask = bee;
_hero.physicsBody.collisionBitMask = bee | cubico | ground | bicho ;
_hero.physicsBody.contactTestBitMask = bee | cubico | ground | bicho ;
//Ground
_groundPhysics = [self createGroundxPos:100 yPos:142 width:42 height:23.25];
}
两个物体第一次接触时调用的方法:
-(void) didBeginContact:(SKPhysicsContact *)contact
{
//if hero collides with ground
if((contact.bodyA.categoryBitMask == bee && contact.bodyB.categoryBitMask == ground) ||
(contact.bodyA.categoryBitMask == ground && contact.bodyB.categoryBitMask == bee) )
{
if(_jumping == NO && _groundPhysics.position.y+_groundPhysics.size.height/2<=_hero.position.y-11.5)
{
[self jumping];
}
}
}
跳转调用的方法:
-(void)jumping{
//Play sound file
[self runAction:self.jumpSound withKey:@"jumpSound"];
if(IS_IPHONE_5){
_diferencia=(164 * 9)/_hero.position.y;
}else{
_diferencia=(164 * 7)/_hero.position.y;
}
[_hero.physicsBody applyImpulse:CGVectorMake(0,_diferencia)];
_jumping = YES;
[_hero removeActionForKey:@"astroJump"];
[self astroJump];
}
-(void)astroJump
{
//runAction animation method
[_hero runAction:[SKAction animateWithTextures:_heroWalkingFrames
timePerFrame:0.05f
resize:NO
restore:NO] withKey:@"astroJump"];
return;
}
if 语句中的 bool 值(self.jumping),在 update
和 initGameContent
中:
-(void)update:(CFTimeInterval)currentTime
{
if(_hero.physicsBody.velocity.dy < 0 )_jumping = NO;
}
-(void)initGameContent
{
_jumping = NO;
最佳答案
当检测到与地面接触时,您可能需要确保将玩家位置重置为高于地面。否则,当调用 [self Jump];
时,玩家仍可能与地面接触,这有时会导致玩家被“卡住”。在进行碰撞检测时,我在我的游戏中看到过类似的问题。下面的代码显示了您可以采取哪些措施来解决此问题。
if (_jumping == NO && _groundPhysics.position.y+_groundPhysics.size.height/2<=_hero.position.y-11.5)
{
_hero.position.y = _groundPhysics.position.y + _groundPhysics.size.height/2 + 1;
[self jumping];
}
关于ios - spriteKit 中的常规碰撞错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23998112/
当给定两个 bool 参数时,^ 运算符执行异或,例如 true ^ true == false true ^ false == true false ^ true == true false ^ f
我需要下载一个文件(例如: https://www.betaseries.com/srt/391160 )所以我在网上找到了不同的方法: def download(String remoteUrl,
可以说,我们正在计算考试成绩的平均值: 起始考试成绩:75、80、92、64、83、99、79 平均值= 572/7 = 81.714 ... 现在给出81.714,如果您不知道初始测试分数,是否可以
我和一个 friend 正在争论线程池中的线程数应该是处理器计数+ 1还是仅仅是处理器计数。 我之所以选择处理器数量,是因为每个处理器可以分配偶数个线程,而他选择处理器数量+ 1是因为他认为这将帮助他
我已经养成了尽可能使用闭包来代替常规方法的习惯,即使我不需要访问自由变量。所以,我将使用这个: def addNumbers = { 左、右 -> 左 + 右 } ..而不是这个: def addNu
我对 Groovy 非常陌生,我正在尝试《Groovy in Action》书中的这个示例。我有这个 fibonacci.groovy 程序,当尝试使用 java 命令运行该程序时,我收到 NoCla
我有 3 个 TextView 。我需要将它们的权重设置为 Light、Regular 和 Condensed。有人可以帮助我了解如何在 Android 中实现这一点吗? 最佳答案 在 TextVie
如果用户启动我的应用程序并最初选择不允许位置服务,我想通过 UIAlertMessage 提示用户重新考虑(“更新”和“不,谢谢。”)。 “不,谢谢。”这将是一个简单的取消,我希望“更新”将它们直接链
如何在 groovy 中显示一个值是真还是假?我使用 Eclipse 作为我的 IDE。 assert 4 * ( 2 + 3 ) - 6 == 14 //integers only 而且我也
我的问题与“多处理器编程的艺术”一书有关。第4章介绍安全/常规/原子寄存器及其实现。 以下是安全多读取器单写 boolean 寄存器的以下实现,该寄存器基于安全单读取器单写 boolean 寄存器,被
使用下面的代码来保存 float 的值 domainInstance.standardScore = params["standardScore"] as float 在这种情况下,我的输入是 17.
使用下面的代码来保存 float 的值 domainInstance.standardScore = params["standardScore"] as float 在这种情况下,我的输入是 17.
在iOS的about部分中,它具有有关设备的大量信息。 我和我可以访问此信息吗? 我想快速获取settings -> General -> About的数据。在iOS中获得相同的价格是否可行? 最佳答
我正在开发Windows服务,它将承载两件事: WCF服务 用于定期作业执行的“常规” Windows服务(使用Quartz.net) 因此,基本上,一个应用程序(可执行)承载这两种服务类型。 这两种
在mysql中,我有一个名为users的表,其中包含系统中的用户列表... id | name | surname | active ____________________________ 1
所以我在 Debian 服务器上设置了一个 MySQL 数据库,并且它在 phpMyAdmin 客户端上运行良好。我目前正在开发一个项目,编写一个 Java 服务器,该服务器能够通过 JDBC 连接使
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
前两天考试了,其中一道题是把@前面的字母换成新的名字 所以在试卷中我们有 array = "toto@yahoo.com","mimi@yahoo.com".soso@yahoo.com"所以我们应该
大家好 如果字符串语法如下,我如何从字符串中获取数字(正数): t_def_type_id_2 t_def_type_id_22 t_def_type_id_334 所以,在第一个字符串中我想得到 1
我正在寻找不会在内核中阻塞的文件描述符类型。我知道我可以使用 fstat(2) 但 fstat 还会给我各种元数据信息(访问时间等),这些信息可能会阻塞任意时间(特别是在网络文件系统上)。 编辑:我正
我是一名优秀的程序员,十分优秀!