GroundPlane.cs 366 B

123456789101112131415161718
  1. using UnityEngine;
  2. using System.Collections;
  3. public class GroundPlane : MonoBehaviour {
  4. //BattleController battleController;
  5. // Use this for initialization
  6. void Start ()
  7. {
  8. //this.battleController = transform.parent.GetComponent<BattleController>();
  9. }
  10. void OnMouseUp()
  11. {
  12. //Debuger.Log("Ground plane click "+battleController.groundClickLock);
  13. }
  14. }