Draw.ingame not working even with your demos

ALINE Draw.ingame does not work. Even in the examples.
Unity 2021.2.14f1

Draw.ingame is acceptable but it does not appear to have any accessible methods or values beyond that.
This is causing your own items to fail. When I look at them the error always begins after igame.ERRORITEM

If you have a variable such as var draw=Draw.ingame; then it fail immediately after draw.THISFAILS

Hi

I cannot replicate any failures. Code such as this works perfectly fine for me:

Draw.ingame.Line(Vector3.zero, Vector3.one);
var draw = Draw.ingame;
draw.Line(Vector3.zero, Vector3.left);

What error messages are you getting?