dslabkowski / ObjectPool

Object Pool component for Unreal Engine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ObjectPooling for Unreal Engine

What is object pooling?

Object Pooling is a great way to optimize your projects and lower the burden that is placed on the CPU when having to rapidly create and destroy GameObjects. It is a good practice and design pattern to keep in mind to help relieve the processing power of the CPU to handle more important tasks and not become inundated by repetitive create and destroy calls.

With this plugin you can create and use object pooling straight from your blueprints, any class (inheriting from an actor) can become a pool element without any changes! ObjectPool Plugin is a single class in C++ that contains all needed functions exposed to blueprints. There is no need to use C++.

Learn more about object pooling pattern.

Documentation

Check how to use plugin.

License

Copyright (c) 2022 Dawid Slabkowski
This project is licensed under the terms of the MIT license.
You can check out full license here.

About

Object Pool component for Unreal Engine

License:MIT License


Languages

Language:C++ 89.3%Language:C# 10.7%