// Init.
 void Awake()
 {
     _collider = GetComponent<Collider> ();
     _renderer = GetComponent<Renderer> ();
     _im = GetComponent<InteractionManager> ();
     _camera = GameObject.FindWithTag ("Player").GetComponentInChildren<Camera> ();
     _im.onAwake ();
 }