54 lines
1.5 KiB
C#
54 lines
1.5 KiB
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class Arrow : MonoBehaviour
|
||
|
{
|
||
|
Rigidbody rb;
|
||
|
// Float for speed of the arrow.
|
||
|
public float speed;
|
||
|
// Float for time in seconds to wait to destroy the arrow on contact with any other gameobject that is no the player.
|
||
|
public float waitToDestroy;
|
||
|
// Vector3 to set direction of travel for the arrow once the trigger is activated.
|
||
|
public Vector3 direction;
|
||
|
[SerializeField] private DeathZone dz;
|
||
|
|
||
|
private void Start()
|
||
|
{
|
||
|
rb = GetComponent<Rigidbody>();
|
||
|
}
|
||
|
|
||
|
private void OnTriggerEnter(Collider other)
|
||
|
{
|
||
|
// Checks to make sure other collider is the Player using tag.
|
||
|
if (other.gameObject.CompareTag("Player"))
|
||
|
{
|
||
|
rb.velocity = direction * speed;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private void OnCollisionEnter(Collision collision)
|
||
|
{
|
||
|
if (collision.gameObject.CompareTag("Player"))
|
||
|
{
|
||
|
// Start Respawn coroutine.
|
||
|
StartCoroutine(dz.RespawnPlayer());
|
||
|
// Destroy arrow on contact with player.
|
||
|
Destroy(gameObject);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
// If arrow makes contact with any other gameobject start DestroyArrow corountine.
|
||
|
StartCoroutine(DestoryArrow());
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public IEnumerator DestoryArrow()
|
||
|
{
|
||
|
// set arrow velocity to zero wait for destory time and then destory the arrow.
|
||
|
rb.velocity = Vector3.zero;
|
||
|
yield return new WaitForSeconds(waitToDestroy);
|
||
|
Destroy(gameObject);
|
||
|
}
|
||
|
}
|