12 lines
312 B
C#
12 lines
312 B
C#
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using UnityEngine;
|
||
|
|
using UnityEngine.EventSystems;
|
||
|
|
|
||
|
|
public class PlayClickSound_Only : MonoBehaviour, IPointerUpHandler
|
||
|
|
{
|
||
|
|
public void OnPointerUp(PointerEventData eventData)
|
||
|
|
{
|
||
|
|
SoundInfo.Ins.Play_OneShot(eSound.s003_Click, 0.5f);
|
||
|
|
}
|
||
|
|
}
|