https://github.com/JanSeliv/PoolManager
Open-source plugin that helps reuse objects in UE5.4
https://github.com/JanSeliv/PoolManager
c-plus-plus cpp game-development object-pool object-pool-pattern object-pooling objectpool objectpool-pattern plugin plugin-repo ue4 ue4-plugin ue5-plugin unreal unreal-engine unreal-engine-4 unreal-engine-code-plugin unreal-engine-cpp-plugin unreal-engine-plugin unreal-plugin
Last synced: 7 months ago
JSON representation
Open-source plugin that helps reuse objects in UE5.4
- Host: GitHub
- URL: https://github.com/JanSeliv/PoolManager
- Owner: JanSeliv
- License: mit
- Created: 2023-04-27T02:25:48.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-25T03:06:52.000Z (about 1 year ago)
- Last Synced: 2024-10-26T16:43:42.800Z (about 1 year ago)
- Topics: c-plus-plus, cpp, game-development, object-pool, object-pool-pattern, object-pooling, objectpool, objectpool-pattern, plugin, plugin-repo, ue4, ue4-plugin, ue5-plugin, unreal, unreal-engine, unreal-engine-4, unreal-engine-code-plugin, unreal-engine-cpp-plugin, unreal-engine-plugin, unreal-plugin
- Language: C++
- Homepage:
- Size: 468 MB
- Stars: 89
- Watchers: 4
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-unreal - Pool Manager - A plugin that helps reuse objects, improving game performance by maintaining a pool of objects for reuse instead of creating and destroying them each time. (Utilities)
README


๐ Pool Manager
Reuse any objects and actors to improve performance
Join our Discord โบโบ
Releases
ยท
Docs
## ๐ About
The Pool Manager helps reuse objects that show up often, instead of creating and destroying them each time.
Creating and destroying objects, like projectiles or explosions, can be slow and cause issues such as making the game slow or laggy when done frequently.
The Pool Manager alleviates these problems by maintaining a pool of objects. Instead of creating and destroying objects all the time, the Pool Manager keeps these objects for reuse. This strategy improves the smoothness of the game.

## ๐ Sample Projects
Check out our [Release](https://github.com/JanSeliv/PoolManager/releases) page for two sample projects showcasing the Pool Manager, one with blueprints and another in C++.
Also, explore this [game project repository](https://github.com/JanSeliv/Bomber) to view the Pool Manager in action.
## ๐
Changelog
#### 2025-01-01
- Updated to **Unreal Engine 5.5**.
- Implemented **[Priorities](https://docs.google.com/document/d/1YxbIdc9lZRl5ozI7_1LTBfdzJWTwhxwz2RKA-r0Q4po/edit?tab=t.0#heading=h.72e3golkh2jm)** to process important objects faster than others:
>
- Implemented **[Pool Object Callback interface](https://docs.google.com/document/d/1YxbIdc9lZRl5ozI7_1LTBfdzJWTwhxwz2RKA-r0Q4po/edit?tab=t.0#heading=h.re9d8tpdk6q1)** by [Bigotry0](https://github.com/Bigotry0) to notify objects when they are taken from or returned:
>
#### 2024-05-05
- Updated to **Unreal Engine 5.4**.
- Implemented **User Widgets support** allowing to pool widgets.
> 
- Added [Take From Pool Array](https://docs.google.com/document/d/1YxbIdc9lZRl5ozI7_1LTBfdzJWTwhxwz2RKA-r0Q4po/edit#heading=h.m317652zeuu9) and [Return To Pool Array](https://docs.google.com/document/d/1YxbIdc9lZRl5ozI7_1LTBfdzJWTwhxwz2RKA-r0Q4po/edit#heading=h.la64v3qmhabw) functions to support pooling multiple objects:
> 
#### 2023-11-25
- Updated to **Unreal Engine 5.3**.
- Introduced **Factories** to handle differences in pools by object archetypes (e.g.: uobjects, actors, components, widgets etc.).
- **Take From Pool** now spreads out the creation of large pools of UObjects and Actors over multiple frames to avoid any hitches.
> 
#### 2023-05-28
- ๐ Initial public release on Unreal Engine 5.2
## ๐ซ Feedback & Contribution
Feedback and contributions from the community are highly appreciated!
If you'd like to contribute, please fork the project and create a pull request targeting the `develop` branch.
If you've found a bug or have an idea for a new feature, please open a new issue on GitHub or join our [Discord](https://discord.gg/jbWgwDefnE). Thank you!
## ๐ License
This project is licensed under the terms of the MIT license. See [LICENSE](LICENSE) for more details.
We hope you find this plugin useful and we look forward to your feedback and contributions.