What is the simplest way to make the cards trail? (SOLVED)

Awesome, glad to help!

Yeah, it’s easy, though my example was overly-complicated. Basically just:

  1. Set view and projection as you would normally
  2. Enable render target
    2.5. Normally—render.clear(), In this case skip it to make trail effect.
  3. Draw stuff
  4. Disable render target
  5. Set view and projection so quad model for render target fills the screen
  6. Enable render target texture
  7. Draw render target quad model
  8. Disable render target texture

(for anyone reading in the future)

7 Likes