Commit 2984e326 authored by 15김민규's avatar 15김민규

고쳐지지 않은 오탈자 고침

parent 328a22f5
......@@ -64,11 +64,11 @@ public abstract class JiJoo : Boss {
public IEnumerator Heal(float hp, float time)
{
float delta = hp - currHealth;
float delta = hp - CurrHealth;
for (float t = 0; t <= time; t += Time.deltaTime)
{
yield return null;
currHealth += (delta * t / time);
CurrHealth += (delta * t / time);
}
}
......
......@@ -58,7 +58,7 @@ public class EnemyAir : Enemy {
// - Knockback coroutine
protected override IEnumerator Knockback(float knockbackDist, float knockbackTime)
{
Vector2 knockbackDir = (transform.parent.position - enemyManager.Player.transform.position).normalized;
Vector2 knockbackDir = (transform.parent.position - GameManager.Instance.player.transform.position).normalized;
Vector2 knockbackVelocity = (knockbackDist / knockbackTime) * knockbackDir;
ChangeAngleZ(90 + Mathf.Rad2Deg * Mathf.Atan2(knockbackDir.y, knockbackDir.x));
......
......@@ -36,14 +36,14 @@ public class JiJooRoom : BossRoomInGame {
}
protected void Phase1()
{
if (bosses[0].currHealth <= 0 && bosses[1].currHealth <= 0)
if (bosses[0].CurrHealth <= 0 && bosses[1].CurrHealth <= 0)
{
CurPhase++;
}
}
protected void Phase2()
{
if (bosses[0].currHealth <= 0 && bosses[1].currHealth <= 0)
if (bosses[0].CurrHealth <= 0 && bosses[1].CurrHealth <= 0)
{
CurPhase++;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment