Arch icon indicating copy to clipboard operation
Arch copied to clipboard

Adding Parallel = true to query makes it only work for static functions.

Open emelrad12 opened this issue 1 year ago • 1 comments

Example this works

[Query(Parallel = false)]
private void SomeQuery(in Entity entity)
{
  this.somethng
}

but this doesnt

[Query(Parallel = true)]
private void SomeQuery(in Entity entity)
{
  this.somethng
}

This behavior should not happen just by switching the parallel options

emelrad12 avatar Sep 30 '24 14:09 emelrad12

Not released yet, will follow once Arch 1.3.0 is released :)

genaray avatar Oct 08 '24 10:10 genaray

Should be fixed in the new source generator, if not please re open :)

genaray avatar Mar 31 '25 11:03 genaray

I've tried the new source generator and this wasn't fixed there.

Houtamelo avatar Aug 15 '25 14:08 Houtamelo