BloodAndGore/Assets/Scripts/Guns/EnemyBullet.cs

72 lines
2.2 KiB
C#
Raw Normal View History

2019-08-18 20:32:07 +02:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Saltosion.OneWeapon.Player;
using Saltosion.OneWeapon.Enemies;
using Saltosion.OneWeapon.Effects;
using Saltosion.OneWeapon.Environment;
namespace Saltosion.OneWeapon.Guns {
[RequireComponent(typeof(Bullet))]
public class EnemyBullet : MonoBehaviour {
public Rigidbody2D Body;
public GameObject Sprite;
public ParticleSystem Trail;
public ParticleSystem Explosion;
[Tooltip("This currently does not affect the Fun damage.")]
public float Damage = 12;
private float DeathTimer = 0;
private Bullet Bullet;
void Start() {
Bullet = GetComponent<Bullet>();
Vector2 Direction = Bullet.Direction;
float Rot = Bullet.InitialRotation;
Body.velocity = Direction * 15;
Body.rotation = Rot - 90;
Explosion.Stop();
}
void Update() {
DeathTimer += Time.deltaTime;
if (DeathTimer > 20) {
Destroy(gameObject);
}
}
void OnTriggerEnter2D(Collider2D collider) {
Bullet.HasExploded = true;
Destroy(Sprite);
Destroy(Body);
Destroy(GetComponent<CapsuleCollider2D>());
Explosion.Play();
Trail.Stop();
DeathTimer = 19;
// Do damage here, kill everyone
PlayerFun Player = collider.GetComponent<PlayerFun>();
Health OtherEnemyHealth = collider.GetComponent<Health>();
if (Player != null) {
Player.TakeDamage();
}
if (OtherEnemyHealth != null) {
OtherEnemyHealth.Damage(Damage, Bullet.Direction, false);
}
if (collider.tag == "Environment") {
DebrisLauncher.Splatter(DebrisType.Structural, transform.position, Bullet.Direction, 5, 30, 360);
}
if (collider.attachedRigidbody != null && collider.attachedRigidbody.bodyType == RigidbodyType2D.Dynamic) {
collider.attachedRigidbody.AddForce(Bullet.Direction * 4, ForceMode2D.Impulse);
}
}
}
}