Quick answer: Compute pure data on the background thread, then marshal the results to the main thread via the captured SynchronizationContext or a main-thread dispatcher queue before touching Unity objects.
You moved an expensive calculation to a thread, but it ends with transform.position = result; and Unity throws “get_transform can only be called from the main thread.” Only the engine API is restricted; your math is fine off-thread. Here is how to split the work correctly.
How to fix it
1. Separate data from engine calls
Do all the CPU work on the thread and produce a plain struct or array. Do not read or write any Unity object inside the threaded code path.
2. Marshal back with the context
Capture SynchronizationContext.Current on the main thread, then call ctx.Post(_ => transform.position = result, null) from the worker so the engine call runs on the main thread.
3. Or drain a main-thread queue
Push results into a ConcurrentQueue and dequeue them in Update(), applying them to transforms there. This avoids per-result context allocation in hot loops.
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.
Reproduce it once with full context and the fix writes itself. The hunt is the expensive part.