15 lines
391 B
C#
15 lines
391 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class NearMiss : MonoBehaviour
|
|
{
|
|
void OnTriggerExit2D(Collider2D other){
|
|
if(PlayerController.instance.PowerupActive){return;}
|
|
if(other.tag == "asteroid"){
|
|
DataManager.AddItem("add_near_miss.php");
|
|
PlayerController.NearMissFX();
|
|
}
|
|
}
|
|
}
|