Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help  Burst not installed?
#3
(16-07-2024, 08:14 AM)josemendez Wrote: Hi,

If Burst is not being used, your ObiSolver component will show a warning like this one:
[Image: burst_warning.png]

Keep in mind that installing the Burst package alone isn't enough, you must install Jobs, Collections and Mathematics too. If any of these is not installed, the engine won't use Burst. Is it only OBI_BURST that's not defined, or are OBI_MATHEMATICS and/or OBI_COLLECTIONS undefined too?

kind regards,

Ahh, Collections wasn't installed. Jobs is installed by default as part of Unity's core.  So, with all packages present in the project, I then had the following compile error:

Quote:Assets\Obi\Scripts\Common\Backends\Burst\DataStructures\NativeMultilevelGrid.cs(74,46): error CS1061: 'UnsafeList<K>' does not contain a definition for 'length' and no accessible extension method 'length' accepting a first argument of type 'UnsafeList<K>' could be found (are you missing a using directive or an assembly reference?)

After thinking something was still wrong with package installation, and wasting more time on that, I found a post on this forum from over a year ago which pointed out that there's a typo on that line. `length` needs to change to `Length`  It would be good if you would apply that fix to the download package.
Reply


Messages In This Thread
Burst not installed? - by Barliesque - 16-07-2024, 01:16 AM
RE: Burst not installed? - by josemendez - 16-07-2024, 08:14 AM
RE: Burst not installed? - by Barliesque - 16-07-2024, 08:21 PM
RE: Burst not installed? - by josemendez - 17-07-2024, 07:43 AM
RE: Burst not installed? - by Barliesque - 17-07-2024, 08:28 PM
RE: Burst not installed? - by josemendez - 18-07-2024, 09:37 AM
RE: Burst not installed? - by Barliesque - 18-07-2024, 05:47 PM