JanSeliv / PoolManager

Open-source plugin that helps reuse objects in UE5.4

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

πŸ”„ Pool Manager

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.

PoolManager

πŸ“š Documentation

Detailed documentation about the Pool Manager can be found here.

πŸŽ“ Sample Projects

Check out our Release page for two sample projects showcasing the Pool Manager, one with blueprints and another in C++.

Also, explore this game project repository to view the Pool Manager in action.

πŸ“… Changelog

2024-05-05

  • Updated to Unreal Engine 5.4.
  • Implemented User Widgets support allowing to pool widgets.

UserWidgets

PoolManagerArray

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.

image

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. Thank you!

πŸ“œ License

This project is licensed under the terms of the MIT license. See LICENSE for more details.

We hope you find this plugin useful and we look forward to your feedback and contributions.