06-12-2021, 11:47 AM
(This post was last modified: 06-12-2021, 11:47 AM by josemendez.)
Hi there!
Thanks for reporting this! add the following code to line 918 of BurstSolverImpl.cs:
Should look like this:
That should fix the issue. Let me know how it goes!
Thanks for reporting this! add the following code to line 918 of BurstSolverImpl.cs:
Quote:dequeueHandle.Complete();
Should look like this:
Code:
var dequeueQueryResults = new DequeueIntoArrayJob<BurstQueryResult>()
{
InputQueue = resultsQueue,
OutputArray = results.AsNativeArray<BurstQueryResult>()
};
var dequeueHandle = dequeueQueryResults.Schedule();
dequeueHandle.Complete(); //<---- new line
var distanceJob = new CalculateQueryDistances()
{
That should fix the issue. Let me know how it goes!