12 lines
273 B
C#
12 lines
273 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class SpikyBall : MonoBehaviour{
|
|
|
|
void OnTriggerEnter2D(Collider2D col){
|
|
if(col.gameObject.tag == "BallDestroyer"){
|
|
Destroy(gameObject);
|
|
}
|
|
}
|
|
}
|