fixed enemies not dying if pinned
This commit is contained in:
parent
3ad6568707
commit
dcfae28ee3
@ -4,7 +4,9 @@ using UnityEngine;
|
|||||||
|
|
||||||
public class EnemyPatrol : MonoBehaviour {
|
public class EnemyPatrol : MonoBehaviour {
|
||||||
|
|
||||||
|
[Header("Tambourine")]
|
||||||
[HideInInspector] public bool pinned = false;
|
[HideInInspector] public bool pinned = false;
|
||||||
|
[HideInInspector] public TambourineBehavior pinnedTambourine;
|
||||||
|
|
||||||
[Header("Horizontal")]
|
[Header("Horizontal")]
|
||||||
public bool isHorizontal;
|
public bool isHorizontal;
|
||||||
@ -60,13 +62,15 @@ public class EnemyPatrol : MonoBehaviour {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void TogglePin(bool isPinned) {
|
public void TogglePin(bool isPinned, TambourineBehavior tambourine) {
|
||||||
|
this.pinned = isPinned;
|
||||||
if (isPinned) {
|
if (isPinned) {
|
||||||
animator.speed = 0;
|
animator.speed = 0;
|
||||||
|
this.pinnedTambourine = tambourine;
|
||||||
} else {
|
} else {
|
||||||
animator.speed = 1;
|
animator.speed = 1;
|
||||||
|
this.pinnedTambourine = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void DefeatEnemy() {
|
public void DefeatEnemy() {
|
||||||
@ -75,10 +79,18 @@ public class EnemyPatrol : MonoBehaviour {
|
|||||||
|
|
||||||
IEnumerator Defeat() {
|
IEnumerator Defeat() {
|
||||||
isPlayingDefeatAnimation = true;
|
isPlayingDefeatAnimation = true;
|
||||||
|
if (pinned) {
|
||||||
|
pinnedTambourine.DestroySelf();
|
||||||
|
TogglePin(false, this.pinnedTambourine);
|
||||||
|
}
|
||||||
this.gameObject.GetComponent<BoxCollider2D>().enabled = false;
|
this.gameObject.GetComponent<BoxCollider2D>().enabled = false;
|
||||||
animator.Play("Explosion");
|
animator.Play("Explosion");
|
||||||
|
float explosionTime = .25f;
|
||||||
|
// print("explosiontime: " + explosionTime);
|
||||||
this.gameObject.GetComponent<AudioSource>().Play();
|
this.gameObject.GetComponent<AudioSource>().Play();
|
||||||
yield return new WaitForSeconds(animator.GetCurrentAnimatorStateInfo(0).length);
|
// print("reached early point");
|
||||||
|
yield return new WaitForSeconds(explosionTime);
|
||||||
|
// print("reached late point");
|
||||||
this.gameObject.GetComponent<BoxCollider2D>().enabled = true;
|
this.gameObject.GetComponent<BoxCollider2D>().enabled = true;
|
||||||
isPlayingDefeatAnimation = false;
|
isPlayingDefeatAnimation = false;
|
||||||
this.gameObject.SetActive(false);
|
this.gameObject.SetActive(false);
|
||||||
|
@ -72,14 +72,13 @@ public class TambourineBehavior : MonoBehaviour {
|
|||||||
if (col.tag == "Enemy") {
|
if (col.tag == "Enemy") {
|
||||||
this.gameObject.GetComponent<BoxCollider2D>().enabled = false;
|
this.gameObject.GetComponent<BoxCollider2D>().enabled = false;
|
||||||
collidedObject = col.gameObject;
|
collidedObject = col.gameObject;
|
||||||
print("Pinning to enemy");
|
// print("Pinning to enemy");
|
||||||
this.gameObject.GetComponent<CircleCollider2D>().enabled = false;
|
this.gameObject.GetComponent<CircleCollider2D>().enabled = false;
|
||||||
collidedObject.GetComponent<EnemyPatrol>().pinned = true;
|
collidedObject.GetComponent<EnemyPatrol>().TogglePin(true, this);
|
||||||
collidedObject.GetComponent<EnemyPatrol>().TogglePin(true);
|
|
||||||
} else if (col.tag == "Projectile") {
|
} else if (col.tag == "Projectile") {
|
||||||
this.gameObject.GetComponent<BoxCollider2D>().enabled = false;
|
this.gameObject.GetComponent<BoxCollider2D>().enabled = false;
|
||||||
collidedObject = col.gameObject;
|
collidedObject = col.gameObject;
|
||||||
print("pinned to projectile");
|
// print("pinned to projectile");
|
||||||
this.gameObject.GetComponent<CircleCollider2D>().enabled = false;
|
this.gameObject.GetComponent<CircleCollider2D>().enabled = false;
|
||||||
collidedObject.GetComponent<ProjectileBehavior>().Pin();
|
collidedObject.GetComponent<ProjectileBehavior>().Pin();
|
||||||
}
|
}
|
||||||
@ -106,8 +105,10 @@ public class TambourineBehavior : MonoBehaviour {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (collidedObject != null && collidedObject.tag == "Enemy") {
|
if (collidedObject != null && collidedObject.tag == "Enemy") {
|
||||||
collidedObject.GetComponent<EnemyPatrol>().pinned = false;
|
EnemyPatrol enemy = collidedObject.GetComponent<EnemyPatrol>();
|
||||||
collidedObject.GetComponent<EnemyPatrol>().TogglePin(false);
|
if (!enemy.isPlayingDefeatAnimation) {
|
||||||
|
enemy.TogglePin(false, this);
|
||||||
|
}
|
||||||
} else if (collidedObject != null && collidedObject.tag == "Projectile") {
|
} else if (collidedObject != null && collidedObject.tag == "Projectile") {
|
||||||
collidedObject.GetComponent<ProjectileBehavior>().Explode();
|
collidedObject.GetComponent<ProjectileBehavior>().Explode();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user