The point follower script, on Unity, does not unsuscrite from the event when it is destroyed
adding this seem enough (the same thing the bone follower use)
void OnDestroy () {
if (skeletonRenderer != null)
skeletonRenderer.OnRebuild -= HandleRebuildRenderer;
}