ダメージアニメーションとHPをつける
ダメージアニメーション
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerHP : MonoBehaviour {
private Animator anim;
void Start () {
anim = GetComponent<Animator> ();
}
void OnControllerColliderHit(ControllerColliderHit hit){
if(hit.gameObject.CompareTag("EnemyAttack")){
Destroy (hit.gameObject);
anim.SetBool ("DamageDown", true);
}
}
}
ダメージアニメーション
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerHP : MonoBehaviour {
private Animator anim;
void Start () {
anim = GetComponent<Animator> ();
}
void OnControllerColliderHit(ControllerColliderHit hit){
if(hit.gameObject.CompareTag("EnemyAttack")){
Destroy (hit.gameObject);
anim.SetBool ("DamageDown", true);
}
}
}
ダメージアニメーションとHPをつける