написал простенький скрипт, который удаляет игровой обьект, когда к тому прикасается обьект с тегом "object", запускаю, и ничего не происходит...
скрипт:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Eating : MonoBehaviour
{
public float Grow;
private void OnCollisionEnter2D(Collider2D collision)
{
if (collision.gameObject.tag == "object")
{
transform.localScale += new Vector3(Grow, Grow, Grow);
Destroy(collision.gameObject, 0);
}
}
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}