48 lines
1 KiB
C#
48 lines
1 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class PlataformaFalling : MonoBehaviour {
|
|
|
|
public float fallDelay = 1f;
|
|
public float respawnDelay = 5f;
|
|
|
|
private Rigidbody2D rb2d;
|
|
private PolygonCollider2D pc2d;
|
|
private Vector3 start;
|
|
|
|
// Use this for initialization
|
|
void Start () {
|
|
rb2d = GetComponent<Rigidbody2D>();
|
|
pc2d = GetComponent<PolygonCollider2D>();
|
|
start = transform.position;
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update () {
|
|
|
|
}
|
|
|
|
void OnCollisionEnter2D(Collision2D col){
|
|
if (col.gameObject.CompareTag("Player")){
|
|
Invoke("Fall", fallDelay);
|
|
Invoke("Respawn", fallDelay + respawnDelay);
|
|
}
|
|
if (col.gameObject.CompareTag("Bullet")){
|
|
Invoke("Fall", 0.1f);
|
|
Invoke("Respawn", 0.1f + respawnDelay);
|
|
}
|
|
}
|
|
|
|
void Fall(){
|
|
rb2d.isKinematic = false;
|
|
pc2d.isTrigger = true;
|
|
}
|
|
|
|
void Respawn(){
|
|
transform.position = start;
|
|
rb2d.isKinematic = true;
|
|
rb2d.velocity = Vector3.zero;
|
|
pc2d.isTrigger = false;
|
|
}
|
|
}
|