Помогите пожалуйста, не могу найти в чем проблема, вроде все скобки на месте
Ошибка: Assets\scripts\ExploteCubes.cs(20,1): error CS1022: Type or namespace definition, or end-of-file expected
Код:
using UnityEngine;
public class ExploteCubes : MonoBehaviour {
private bool _collisionSet;
private void OnCollisionEnter(Collision collision) {
if(collision.gameObject.tag == "Cube" && !_collisionSet) {
for(private int i = collision.transform.childCount-1; i >= 0; i--) {
Transform child = collision.transform.GetChild(i);
child.gameObject.AddComponent<Rigidbody>();
child.gameObject.GetComponent<Rigidbody>().AddExplosionForce(70f, Vector3.up, 5f);
child.SetParent(null);
}
Destroy(collision.gameObject);
_collisionSet = true;
}
}
}