

Applies a retro pixelation effect to The Sledding Game's rendering. Configurable pixel size via MelonPreferences.
Edit <Sledding Game>/UserData/MelonPreferences.cfg:
[SledPixelate]
Enabled = true
Divisor = 4
| Divisor | Effect |
|---|---|
| 1 | Native resolution (no effect) |
| 2 | Half resolution — subtle |
| 4 | Quarter resolution — nice retro look (default) |
| 8 | Eighth resolution — very chunky pixels |
The mod redirects Camera.main's render target to a small RenderTexture (width/height divided by Divisor), then a PixelateBlitter component draws it back to the full screen each frame using Unity's GUI.DrawTexture with point filtering (no blurring).
See INSTALLATION_GUIDE.txt.