Arch
                                
                                
                                
                                    Arch copied to clipboard
                            
                            
                            
                        Adding Parallel = true to query makes it only work for static functions.
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