한 걸음 두 걸음
unity UI Image 변경 본문
반응형
충돌 발생할 때마다 HP 줄어들다가 이미지 따란~하고 나타나게 하는 코드
using UnityEngine;
using System.Collections;
using UnityEngine.UI;
public class Sound : MonoBehaviour {
public AudioClip sndExp;
public Text countText;
public Image image;
private int count = 100;
void OnCollisionEnter(Collision coll)
{
if (coll.gameObject.CompareTag("pacman"))
{
AudioSource.PlayClipAtPoint(sndExp, transform.position);
transform.position = new Vector3(43, 3, 40);
count -= 20;
setCountText();
}
}
void setCountText() {
countText.text = "Pacman HP : " + count.ToString();
if (count <= 0)
{
countText.text = "게임 종료";
image.enabled = true;
}
}
// Use this for initialization
void Start () {
image.enabled = false;
}
// Update is called once per frame
void Update () {
}
}
반응형
'Unity' 카테고리의 다른 글
unity bgm 배경음 입히기 (0) | 2019.05.24 |
---|---|
AR rendering (0) | 2019.05.13 |
VR트래킹 (0) | 2019.04.08 |
유니티 오른쪽 클릭 회전 막힘 / 우클릭회전 해결 (0) | 2019.04.06 |
가상증강현실및실습 0405 ] NevMesh 활용하여 Pacman 및 gohost 구현 / VR 환경 세팅(android studio 및 googleVR) (0) | 2019.04.05 |