Quick answer: Store rotation as a discrete step count (0-3) for the logic, and on release snap the visual angle to the nearest multiple of 90 degrees with a short tween.
Rotation puzzles depend on pieces resting at clean right angles so connections can be checked. If a piece can settle at 37 degrees, your rotation is continuous with no snapping. Quantize to 90-degree steps on release.
How to fix it
1. Keep a discrete rotation state
Track each piece's orientation as an integer 0-3 representing 0/90/180/270 degrees. Use this integer for all connection and win logic, never the raw visual angle.
2. Snap the visual angle on release
When the drag ends, round the current angle to the nearest 90 and tween the transform to round(angle/90)*90 so it lands clean.
3. Update logic from the snapped step
After snapping, set the integer state from the final angle and re-run any connection or match checks that depend on orientation.
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 Unity 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.
The errors you never hear about are the ones quietly costing you players. Visibility turns them into a worklist.