tools-unity-object-pooling

Installation
SKILL.md

Unity Object Pooling

Overview

Object pooling reuses GameObjects instead of instantiating/destroying them, reducing GC pressure and improving performance.

When to Use

  • Frequently spawned objects (projectiles, particles, enemies)
  • UI list items
  • Audio sources
  • Network messages
  • Any high-frequency instantiation

Basic Object Pool

Generic Pool Implementation

Related skills
Installs
1
GitHub Stars
1
First Seen
Mar 14, 2026