public void FractureObject()

in Assets/BreakableAsteroids/Scripts/Fracture.cs [10:14]


    public void FractureObject()
    {
        Instantiate(fractured, transform.position, transform.rotation); //Spawn in the broken version
        Destroy(gameObject); //Destroy the object to stop it getting in the way
    }