Neist
Neist
I created a [thread](https://forum.unity.com/threads/burst-compiler-exception-within-hdrp-12-1-6-edit-caused-by-missingunityevents.1313601/) on the Unity forum a few days ago where you can see the error I was getting.
After watching the Unity conference about Burst compiler, it seems that Jobs use a lightweight version of C# that allows them to prevent aliasing and other things, which in turns...
I'm using Unity 2020.2 and I have been creating custom packages with samples. The problem is that the sample folder is a "hidden" folder called `Samples~`, and Unity can detect...
Well I fixed my issue by renaming the samples directory from `Samples~` to `.Samples` and updating the sample path accordingly in the package.json, it works but then the folder is...
I was able to make the `SystemInstanceProvider` `SpawnInstance` method work with reflection, probably a dirty fix but at least it confirms the cause: ```csharp public object SpawnInstance(IObjectResolver resolver) { if...