Signature is dictated by its usage as a ComponentPredicate.
RCS1242 - Do not pass non-read-only struct by read-only reference
using DefaultEcs.System;
namespace DummyNamespace
{
class DummyClass
{
[WithPredicate]
bool DummyMethod(in object _) => true;
}
}
The IDE does not detect that the method signature is dictated by its usage as a ComponentPredicate through the WithPredicateAttribute and under normal circumstances, it would be reasonable to change its signature.
The IDE does not detect that the method signature is dictated by its usage as a ComponentPredicate through the WithPredicateAttribute.