The documentation notes that you should inherit from MonoBehaviourGizmos to use ALINE to draw gizmos. If you don’t do this, an error appears in the console telling you such but the drawing happens correctly anyway.
Is there a reason that we need to do this inheritance? I have a common MonoBehaviour subclass with utility methods that I use all throughout the project. I’d prefer not to create a separate base class or add the ALINE code to all of my components.
Is it possible to just disable this error? It seems to render fine.