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