Hello. I am a new user of ALINE. So far, when it works, it works fine.
But sadly, often for some reason it just doesnt draw anything.
It is really strange, some of my draw-codelines work ( always ).
And some of them just don’t ( ever ).
There is nothing special about them.
Simple scripts.
E.g:
using Drawing;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Sirenix.OdinInspector;
public class LookAtTarget : MonoBehaviour
{
public bool debug = true;
public Color debugColor = Color.red;
Transform _tr;
public void Start()
{
_tr = transform;
}
public void Update()
{
if (debug)
{
Draw.Cross(_tr.position, Color.red);
}
}
}
Nothing is drawn.
I use Unity 2020.1.9f1
Hope for some help. For such a price it should simply just work.
Thank you very much in advance.
Otherwise, I love the Package.
Best regards, David