Setup Infinite 2D Space Game Background

This kind of background, I have for my infinite space theme based 2d game.

You can able to go infinitely within the space and you will get different types of enemies and planets to explore.

Now my question is, how to show this background infinite scrollable area?

Though I don’t want to set this as static background, I want to give player a feeling that he is moving.

I hope you get my point, at present, I am blank on this so asking here to get some suggestion :slight_smile:

2 quick & easy ways:

  1. Create copies, and move these along with the player. When the player crosses the right side of the image, move the copy from the left side over to the right. Crossing the top? Move the image from the bottom to above. etc.
  2. Don’t move the Image at all. Instead, use UV-scrolling to move the texture inside of the image. Then keep the image-position static (relative to the player).