![]() |
Bug / Crash ObiCloth 6.3: compile error with Unity Collections 1.1.0 - Printable Version +- Obi Official Forum (https://obi.virtualmethodstudio.com/forum) +-- Forum: Obi Users Category (https://obi.virtualmethodstudio.com/forum/forum-1.html) +--- Forum: General (https://obi.virtualmethodstudio.com/forum/forum-5.html) +--- Thread: Bug / Crash ObiCloth 6.3: compile error with Unity Collections 1.1.0 (/thread-3199.html) |
ObiCloth 6.3: compile error with Unity Collections 1.1.0 - timconkling - 23-11-2021 I just updated to ObiCloth 6.3, and I'm getting a compile error: Code: Assets/ThirdParty/Obi/Scripts/Common/Backends/Burst/BurstMath.cs(681,74): I'm using version 1.1.0 of Unity's Collections package (which was just released yesterday, so I assume the type signature probably changed). Changing the type constraint of RemoveRangeBurst<T> to "unmanaged" (from "struct") fixes the compile error: Code: public static unsafe void RemoveRangeBurst<T>(this NativeList<T> list, int index, int count) RE: ObiCloth 6.3: compile error with Unity Collections 1.1.0 - josemendez - 24-11-2021 Hi Tim, Thanks a lot for reporting this one, the 1.1.0 update caught me totally off-guard. I've published the fix to the store. |