Swift 4 Change Physics Gravity

988 Views Asked by At

since swift 4 the old gravity code doesn't work anymore...

self.physicsWorld.gravity = CGVectorMake(0,0)

That´s not working ↑ can you give me the new code? Thanks!

1

There are 1 best solutions below

0
On BEST ANSWER

CGVectorMake has been deprecated. Use the following syntax to initialise a CGVector:

self.physicsWorld.gravity = CGVector(dx: 0, dy: 0)

Or, since you want a vector with both components 0:

self.physicsWorld.gravity = CGVector.zero