revival/game/Assets/Scripts/Traps/FallawayFloor.cs

42 lines
1.2 KiB
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class FallawayFloor : MonoBehaviour
{
2021-03-02 20:47:28 +01:00
// Speed at which the object moves towards the ground.
public float speed;
2021-03-02 20:47:28 +01:00
// Time it takes for ogjecct to begin moving towards the ground.
public float fallAwayTime;
// Time taken for object to be destroyed.
public float destroyObjectTime;
public Material dissolve;
Rigidbody rb;
private void Start()
{
2021-03-02 20:47:28 +01:00
// Get Rigidbody component.
rb = GetComponent<Rigidbody>();
}
private void OnTriggerEnter(Collider other)
{
if (other.gameObject.CompareTag("Player"))
{
2021-03-02 20:47:28 +01:00
// Start the Destroy floor coroutine and switch to the dissolve material.
StartCoroutine(DestroyFloor());
GetComponent<Renderer>().material = dissolve;
}
}
IEnumerator DestroyFloor()
{
2021-03-02 20:47:28 +01:00
// Take fallAwayTime, speed, and destroyObjectTime from editor and apply
yield return new WaitForSeconds(fallAwayTime);
rb.velocity = Vector3.down * speed;
2021-03-02 20:47:28 +01:00
yield return new WaitForSeconds(destroyObjectTime);
Destroy(gameObject);
}
}