C.M.
0
Q:

public image unity

 using UnityEngine;  using System.Collections; using UnityEngine.UI;  public class Radar : MonoBehaviour {   public Image Arrow;  void OnTriggerEnter( Collider other) {      if (other.gameObject.tag == "Enemy")          Arrow.gameObject.SetActive(true);  } }
0

New to Communities?

Join the community