![]() |
[Solved] Burst backend warning despite having dependencies - Printable Version +- Obi Official Forum (https://obi.virtualmethodstudio.com/forum) +-- Forum: Obi Users Category (https://obi.virtualmethodstudio.com/forum/forum-1.html) +--- Forum: Obi Fluid (https://obi.virtualmethodstudio.com/forum/forum-3.html) +--- Thread: [Solved] Burst backend warning despite having dependencies (/thread-3949.html) |
[Solved] Burst backend warning despite having dependencies - 7Dev.io - 29-07-2023 I'm getting the Burst backend warning despite having all the dependencies installed. Unity 2022.3.4f1 and Obi Fluid 6.5.4. The collection's package is supposed to be replacing jobs still I tried to manually add the old job package just to test and even then it still shows the warning. ![]() RE: Burst backend warning despite having dependencies - josemendez - 30-07-2023 (29-07-2023, 06:52 PM)7Dev.io Wrote: I'm getting the Burst backend warning despite having all the dependencies installed. Hi! The jobs package doesn’t show up in your package manager. Make sure you’ve installed it by clicking the + sign at the top of the PM window, selecting “add package from git url” and typing “com.unity.jobs” (see http://obi.virtualmethodstudio.com/manual/6.3/backends.html ) After doing this, it should appear in the package manager and the Burst warning should go away. let me know if I can be of further help, kind regards RE: Burst backend warning despite having dependencies - 7Dev.io - 02-08-2023 (30-07-2023, 09:23 AM)josemendez Wrote: Hi!Ok I get why the error wasn't going away even with jobs imported, there was an error on this line Code: for (int i = 0; i < contents.length; ++i) It is supposed to be contents.Length, it was causing a compiler error. |