2021-03-17 21:50:08 +01:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
public class RollingBoulder : MonoBehaviour
|
|
|
|
{
|
2021-03-17 23:07:33 +01:00
|
|
|
Rigidbody rb;
|
|
|
|
// Float for speed of the arrow.
|
|
|
|
[SerializeField] private float speed;
|
|
|
|
// Float for time in seconds to wait to destroy the arrow on contact with any other gameobject that is no the player.
|
|
|
|
[SerializeField] private float waitToDestroy;
|
|
|
|
// Vector3 to set direction of travel for the arrow once the trigger is activated.
|
|
|
|
//[SerializeField] private Vector3 direction;
|
|
|
|
|
|
|
|
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.useGravity = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void OnCollisionEnter(Collision collision)
|
2021-03-17 21:50:08 +01:00
|
|
|
{
|
2021-03-17 23:07:33 +01:00
|
|
|
if (collision.gameObject.TryGetComponent(out PlayerDeath playerDeath))
|
|
|
|
{
|
|
|
|
// Start Respawn coroutine.
|
|
|
|
playerDeath.Respawn();
|
|
|
|
// Destroy arrow on contact with player.
|
|
|
|
Destroy(gameObject);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// If arrow makes contact with any other gameobject start DestroyArrow corountine.
|
|
|
|
StartCoroutine(DestoryBoulder());
|
|
|
|
}
|
2021-03-17 21:50:08 +01:00
|
|
|
}
|
|
|
|
|
2021-03-17 23:07:33 +01:00
|
|
|
public IEnumerator DestoryBoulder()
|
2021-03-17 21:50:08 +01:00
|
|
|
{
|
2021-03-17 23:07:33 +01:00
|
|
|
// set boulder velocity to zero wait for destory time and then destory the boulder.
|
|
|
|
rb.velocity = Vector3.zero;
|
|
|
|
yield return new WaitForSeconds(waitToDestroy);
|
|
|
|
Destroy(gameObject);
|
2021-03-17 21:50:08 +01:00
|
|
|
}
|
|
|
|
}
|