Example #1
0
 public DrawLinesAni AddLine(Vector3 a, Vector3 b, Color color)
 {
     if (_lineDrawer == null)
     {
         throw new ArgumentException("Call first DrawLinesAni.Set method");
     }
     _lineDrawer.Color(color);
     _lineDrawer.Line(a, b);
     return(this);
 }