-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathButtonPressShrink.cs
59 lines (51 loc) · 1.56 KB
/
ButtonPressShrink.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;
using UnityEngine.UI;
public class ButtonPressShrink : MonoBehaviour, IPointerDownHandler, IPointerUpHandler {
public Vector3 shrinkSize;
private Vector3 originalSize;
public AudioSource audSource;
public AudioClip[] audClips;
Image img;
public Color pointerDownColor;
Color originalColor;
// Use this for initialization
void Start () {
originalSize = transform.localScale;
img = GetComponent<Image>();
originalColor = img.color;
if (GetComponent<AudioSource>() != null)
{
audSource = GetComponent<AudioSource>();
}else
{
audSource = gameObject.AddComponent<AudioSource>() as AudioSource; //add an audiosource if there isn't one on there already
}
audSource.playOnAwake = false; //otherwise it'll play whatever sound is in there
}
// Update is called once per frame
void Update () {
}
public void OnPointerDown(PointerEventData data)
{
transform.localScale = shrinkSize;
audSource.clip = audClips[0];//the click in sfx
audSource.Play();
img.color = pointerDownColor;
}
public void OnPointerUp(PointerEventData data)
{
transform.localScale = originalSize;
audSource.clip = audClips[1];
audSource.Play();
img.color = originalColor;
}
public void ShrinkMe()
{
}
public void ResetMySize()
{
}
}