Exemple #1
0
 private void OnDrawGizmos()
 {
     Draw.Axis(Vector3.zero, transform);
     if (_ShowName)
     {
         Draw.Text(Vector3.zero, name, localTransform: transform);
     }
 }
Exemple #2
0
// #if USING_SHAPES
        private void OnDrawGizmos()
        {
            Draw.Axis(Vector3.zero, Internal_Transform);
            Draw.Text(Position - new Vector3(0, 0.2f, 0), $"{name}", color: Colors.Yellow);
        }