I have read a few tutorials explaining transform matrices for XNA/Monogame. The problem is that these matrices are applied to
SpriteBatch.Begin(...matrix);
This means that all Draw code will be transformed. How do I apply a transformation matrix to a single drawable object? In my case I want to transform a scrolling background so that it automatically wraps.
SpriteBatch.Draw(.. this has no transform matrix parameter?);