Ejemplo n.º 1
0
 protected override void DrawGizmos()
 {
     if (m_sphere != null)
     {
         m_sphere.DrawGizmos(m_gizmosColor);
     }
 }
Ejemplo n.º 2
0
        public static void DrawSphere(Transform center, float radius, Color color)
        {
            var sphere = new KaiTool_Sphere(center, radius);

            sphere.DrawGizmos(color);
        }