Files
Crash-Course/Assets/Scripts/FallPlatform.cs

44 lines
1.1 KiB
C#
Raw Normal View History

using System.Collections;
using UnityEngine;
public class FallPlatform : MonoBehaviour
{
public float fallDelay = 2f;
public float resetDelay = 4f;
bool falling;
Rigidbody2D rb;
//Vector3 defposition;
void Start()
{
//defposition = transform.position;
rb = transform.parent.GetComponent<Rigidbody2D>();
2025-03-03 19:03:34 -05:00
}
private void OnTriggerEnter2D(Collider2D collision)
{
2025-03-03 13:44:31 -05:00
if (!falling/* && collision.gameObject.CompareTag("Player")*/)
{
StartCoroutine(FallAfterDelay());
}
}
private IEnumerator FallAfterDelay()
{
falling = true;
yield return new WaitForSeconds(fallDelay);
rb.bodyType = RigidbodyType2D.Dynamic;
yield return new WaitForSeconds(resetDelay);
//Respawn();
}
//only resets the object script is attached to, need to fix so platform will reset with fall trigger object
//private void Respawn()
//{
//falling = false;
//rb.bodyType = RigidbodyType2D.Static;
//transform.position = defposition;
//}
}