aboutsummaryrefslogtreecommitdiff
path: root/td/Assets/Scripts/touchScript.cs
diff options
context:
space:
mode:
authorJakob Stendahl <jakob.stendahl@outlook.com>2017-10-06 16:04:38 +0200
committerJakob Stendahl <jakob.stendahl@outlook.com>2017-10-06 16:04:38 +0200
commite13fd4cf1fc0ad9eff857295fd5abc15ab01462c (patch)
tree91786e1557ef801a64e059857dc0ad71c1d281df /td/Assets/Scripts/touchScript.cs
parentc5a786326fab8850342005a1eb4da9653c4642c8 (diff)
downloadTD-e13fd4cf1fc0ad9eff857295fd5abc15ab01462c.tar.gz
TD-e13fd4cf1fc0ad9eff857295fd5abc15ab01462c.zip
Startet på tårn, fiksa dev-mode, laga stats UI
Diffstat (limited to 'td/Assets/Scripts/touchScript.cs')
-rw-r--r--td/Assets/Scripts/touchScript.cs37
1 files changed, 0 insertions, 37 deletions
diff --git a/td/Assets/Scripts/touchScript.cs b/td/Assets/Scripts/touchScript.cs
deleted file mode 100644
index c8cdd6a..0000000
--- a/td/Assets/Scripts/touchScript.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
-
-public class touchScript : MonoBehaviour {
-
-
- private RuntimePlatform platform = Application.platform;
-
- void Update(){
- if(platform == RuntimePlatform.Android || platform == RuntimePlatform.IPhonePlayer){
- if(Input.touchCount > 0) {
- if(Input.GetTouch(0).phase == TouchPhase.Began){
- checkTouch(Input.GetTouch(0).position);
- }
- }
- }else if(platform == RuntimePlatform.WindowsEditor){
- if(Input.GetMouseButtonDown(0)) {
- checkTouch(Input.mousePosition);
- }
- }
- }
-
- void checkTouch(Vector3 pos){
- Vector3 wp = Camera.main.ScreenToWorldPoint(pos);
- Vector2 touchPos = new Vector2(wp.x, wp.y);
- Collider2D hit = Physics2D.OverlapPoint(touchPos);
- Debug.Log("Checking");
- if(hit){
- //hit.transform.gameObject.SendMessage("Clicked",0,SendMessageOptions.DontRequireReceiver);
- Debug.Log("CLICKED");
- }
- }
-
-
-
-}