Ok so currently I have a camera coded into my project. I added my background to the game and it doesn't move currently. However, I want to add more things that aren't affected by the camera such as a ground.
Here is my current code:
background.position = CGPoint.zero
background.zPosition = -10
camera.addChild(background)
The code I have above only allows me to center the item but will not let me put it at a certain point I want. How can I do this?