Quick answer: Set the project Sampling to Nearest for pixel art, round ScrollX/ScrollY to whole pixels, and use Low quality fullscreen scaling so tiles map to integer screen pixels.
Your Construct 3 tilemap shows hairline seams between tiles that shimmer while scrolling. Linear sampling at fractional scroll values is the cause.
How to fix it
1. Use nearest sampling
In Project Properties set Sampling to Point (Nearest) so the renderer does not blend texels across tile edges.
2. Round the scroll position
Snap the scroll to whole pixels (for example set ScrollX to round(player.X)) so tiles align to integer screen pixels and seams stop appearing.
3. Match fullscreen scaling to integers
Use the Low quality / integer fullscreen scaling option so the layout scales by whole factors instead of fractional ones that force sub-texel sampling.
Catching the ones you can't reproduce
The hardest version of this to fix is the one you can't reproduce — it only happens on a player's hardware, OS, driver, or save state, under conditions that simply aren't present on your machine. A report that says “it crashed” or “it froze” gives you nothing to act on, so the bug survives release after release while quietly costing you players.
Automatic error capture closes that gap. Each failure arrives with its full stack trace, the device and OS, the build number, and a breadcrumb trail of what the player did right before it broke, so even a failure you have never seen becomes a specific, reproducible issue. Fold identical failures into one signature ranked by how many players each hits, and your worklist sorts itself worst-first instead of arriving as a stream of vague complaints.
This is where a tool like Bugnet earns its place. Its SDK captures every Construct 3 error automatically with the full stack trace plus device, OS, memory, build, and game-state context, folds duplicates into one grouped issue with an occurrence count, and ties each to the build it first appeared on — so you fix the problem that hurts the most players first and confirm it is gone when its signature disappears from the next release.
Most of the time the fix is small. Seeing the failure clearly is the part that actually costs you.