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!
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!
Copyright © 2021 Jogjafile Inc.
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