Gordon Buellerson

Results 6 comments of Gordon Buellerson

I fixed this up locally - NavMeshQuery's InitSlicedFindPath earlies out too fast if the source and destination polyID's are the same Move the check down below after the query has...

There's probably other methods that have these bugs too, e.g MergeCorridorStartShortcut

This also gets my vote, I have requirements to maintain the lifetime of and unload msbuild from my process when done with it.

Have you tried Nito.AsyncEx.Context https://www.nuget.org/packages/Nito.AsyncEx.Context We use it all over the place to create a single threaded await context, this works for me: .csproj .cs ``` public abstract class PSAsyncCmdlet...

This isn't some old version of framework, it's v4.7.2

I think I've figured it out, was me being an idiot. I was on the UI thread doing this unintentionally AsyncContext.Run(() => { // Create UI control here! }); This...