missingエラー解消

This commit is contained in:
kimura 2021-08-30 12:15:54 +09:00
parent 98da20e695
commit ade48751a1
1 changed files with 2 additions and 1 deletions

View File

@ -29,7 +29,8 @@ public class HeartAnimation : MonoBehaviour
this.CallWaitForSeconds(1f, () =>
{
callback?.Invoke();
Destroy(bigHeart, 1f);
Destroy(bigHeart);
Destroy(gameObject);
});
});
});