iTweenPoint.cs 166 B

1234567
  1. using UnityEngine;
  2. public class iTweenPoint : MonoBehaviour {
  3. public float size = .1f;
  4. void OnDrawGizmos(){
  5. Gizmos.DrawWireSphere(transform.position,size);
  6. }
  7. }