Skip to content

Instantly share code, notes, and snippets.

@Diablo9818
Created March 29, 2024 18:20
Show Gist options
  • Save Diablo9818/cb62e76e2b7d749ad10f56e7d292a6c3 to your computer and use it in GitHub Desktop.
Save Diablo9818/cb62e76e2b7d749ad10f56e7d292a6c3 to your computer and use it in GitHub Desktop.
public void Enable()
{
_enable = true;
StartEnableAnimation();
}
public void Disable()
{
_enable = false;
Free();
}
private void StartEnableAnimation()
{
_effects.StartEnableAnimation();
}
private void Free()
{
_pool.Free(this);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment