Skip to content
Snippets Groups Projects
Commit 6f84849e authored by Salomo309's avatar Salomo309
Browse files

del: nightmare

parent 8092cfab
Branches main
No related merge requests found
using UnityEngine; using UnityEngine;
using System.Collections; using System.Collections;
using Nightmare;
namespace Nightmare
{ public class KerocoHealth : MonoBehaviour
public class Keroco : MonoBehaviour
{ {
public int startingHealth = 100; public int startingHealth = 100;
public float sinkSpeed = 2.5f; public float sinkSpeed = 2.5f;
...@@ -17,7 +17,7 @@ namespace Nightmare ...@@ -17,7 +17,7 @@ namespace Nightmare
CapsuleCollider capsuleCollider; CapsuleCollider capsuleCollider;
EnemyMovement enemyMovement; EnemyMovement enemyMovement;
void Awake() void Awake()
{ {
anim = GetComponent<Animator>(); anim = GetComponent<Animator>();
enemyAudio = GetComponent<AudioSource>(); enemyAudio = GetComponent<AudioSource>();
...@@ -98,4 +98,3 @@ namespace Nightmare ...@@ -98,4 +98,3 @@ namespace Nightmare
return currentHealth; return currentHealth;
} }
} }
}
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