DrawGizmos() public method

public DrawGizmos ( ) : void
return void
Ejemplo n.º 1
0
 void OnDrawGizmos()
 {
     if (_fullBodyIK != null)
     {
         _fullBodyIK.DrawGizmos();
     }
 }
Ejemplo n.º 2
0
 void OnDrawGizmos()
 {
     if (_cache_fullBodyIK == null)
     {
         _cache_fullBodyIK = fullBodyIK;
     }
     if (_cache_fullBodyIK != null)
     {
         _cache_fullBodyIK.DrawGizmos();
     }
 }