Advertisement
kadyr

Untitled

Oct 10th, 2021
1,333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1.         [SerializeField]
  2.         private Vector3 center;
  3.  
  4.         [SerializeField]
  5.         private Vector3 size;
  6.  
  7.         public void OnDrawGizmos()
  8.         {
  9.             Gizmos.color = new Color(255, 0, 0, 0.4f);
  10.             center = transform.position;
  11.             Gizmos.DrawCube(center, size);
  12.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement