diff options
author | Jakob Stendahl <jakob.stendahl@outlook.com> | 2017-09-30 23:12:37 +0200 |
---|---|---|
committer | Jakob Stendahl <jakob.stendahl@outlook.com> | 2017-09-30 23:12:37 +0200 |
commit | 149bd76007f3c1edcda05ae6bc9bf0b48cf28aae (patch) | |
tree | 88075bffa74b85ee89f7515aeae1a33170abb4fb /td/Assets/Scripts | |
parent | 44bbc99517da0b0ee0251fbf519f117a3e7abfdb (diff) | |
download | TD-149bd76007f3c1edcda05ae6bc9bf0b48cf28aae.tar.gz TD-149bd76007f3c1edcda05ae6bc9bf0b48cf28aae.zip |
Started with towerPlacements
Diffstat (limited to 'td/Assets/Scripts')
-rw-r--r-- | td/Assets/Scripts/touchScript.cs | 37 | ||||
-rw-r--r-- | td/Assets/Scripts/touchScript.cs.meta | 12 |
2 files changed, 49 insertions, 0 deletions
diff --git a/td/Assets/Scripts/touchScript.cs b/td/Assets/Scripts/touchScript.cs new file mode 100644 index 0000000..c8cdd6a --- /dev/null +++ b/td/Assets/Scripts/touchScript.cs @@ -0,0 +1,37 @@ +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"); + } + } + + + +} diff --git a/td/Assets/Scripts/touchScript.cs.meta b/td/Assets/Scripts/touchScript.cs.meta new file mode 100644 index 0000000..ab0ba6c --- /dev/null +++ b/td/Assets/Scripts/touchScript.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8b15d2b1b4d2f4f7fadf48b92f7edec2 +timeCreated: 1506804974 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: |