Stop SKSpriteNode from slowing down
Asked Answered
S

2

6

I am trying to keep my SKSpriteNodes moving at a constant speed forever, even after collisions. I have set gravity to 0, friction to 0, and linear and angular dampening to zero, but the Sprites still slowly slow down to zero velocity. How can I keep them moving?

Based on the answer below, this is what I have tried: EDIT This code below works! I just had to check if the nodes were going slower than the limit and speed them up.

[self enumerateChildNodesWithName:kBallName usingBlock:^(SKNode *node, BOOL *stop)
    {
        SKSpriteNode *ball = (SKSpriteNode *)node;
        if (ball.physicsBody.velocity.dx < 0) {
            if (ball.physicsBody.velocity.dx > -50)
                ball.physicsBody.velocity = CGVectorMake(-50, ball.physicsBody.velocity.dy);
        }
        if (ball.physicsBody.velocity.dx > 0) {
            if (ball.physicsBody.velocity.dx < 50)
               ball.physicsBody.velocity = CGVectorMake(50, ball.physicsBody.velocity.dy);
        }
        if (ball.physicsBody.velocity.dy < 0) {
            if (ball.physicsBody.velocity.dy > -50)
                ball.physicsBody.velocity = CGVectorMake(ball.physicsBody.velocity.dx, -50);
        }
        if (ball.physicsBody.velocity.dy > 0) {
            if (ball.physicsBody.velocity.dy > 50)
                ball.physicsBody.velocity = CGVectorMake(ball.physicsBody.velocity.dx, 50);
        }
    }];
Sharla answered 10/3, 2015 at 19:33 Comment(2)
How do you get them moving in the first place?Assurgent
I just apply an impulse when I create them. What code should I post? I figured it would mostly just be generic Sprite creation code, but I can put it in if needed.Sharla
A
3

If you apply an impulse to a node's physics body it is only applied once. Think of kicking a ball. Applying a force on the other hand is like a continuos push, like an engine moving a car. Keep in mind that if you continue to apply force, your node will get faster and faster so you will have to assign a speed limit at some point. You can do that with something like this:

if(myNode.physicsBody.velocity.dx > 300)
    myNode.physicsBody.velocity = CGVectorMake(300, myNode.physicsBody.velocity.dy);

That will limit your "moving right" speed to 300.

Another option is to move your node manually by changing it's position. You can do that by using something like myNode.position = CGPointMake(myNode.position.x+1, myNode.position.y);. That will move your node to the right by 1 every time the code is run.

Assurgent answered 10/3, 2015 at 23:16 Comment(5)
Thanks! would you apply the speed limit in update (or similar)? Just enumerate the nodes I want to keep moving and then slow them down?Sharla
@Sharla - Yes. You would do all that in the update method. Exactly how depends on your code and how it is structured.Assurgent
@Sharla - Try setting the restitution property to 1.0 on all your moving nodes.Assurgent
After reading the docs, applyForce is only for one game cycle. I had to keep speeding them up.Sharla
Thank you a lot, i wonder why i can stop my ball from rolling, -forceApply was called in renderer(updateAtTime) function, and continuously apllied force and moving ball foreverPansir
N
0

Set the restitution property of your nodes to 1.0. Restitution is how much of a node's energy is retained after a collision.

https://developer.apple.com/library/mac//documentation/SpriteKit/Reference/SKPhysicsBody_Ref/index.html#//apple_ref/occ/instp/SKPhysicsBody/restitution

Example:

marble_node.physicsBody?.restitution = 1.0  

The default restitution is 0.2. Changing it to 1.0 will keep things very bouncy!

Niles answered 22/6, 2016 at 17:17 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.