Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public void Enable()
- {
- if (_enable == false)
- {
- _enable = true;
- _effects.StartEnableAnimation();
- }
- }
- public void Disable()
- {
- if (_enable)
- {
- _enable = false;
- _pool.Free(this);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement