An open API service indexing awesome lists of open source software.

https://github.com/UnityPatterns/ObjectPool

Instead of creating and destroying new objects all the time, this script reduces garbage by pooling instances, allowing you to seemingly create hundreds of new objects while only actually using a recycled few.
https://github.com/UnityPatterns/ObjectPool

Last synced: 8 months ago
JSON representation

Instead of creating and destroying new objects all the time, this script reduces garbage by pooling instances, allowing you to seemingly create hundreds of new objects while only actually using a recycled few.

Awesome Lists containing this project

README

          

ObjectPool
==========

Instead of creating and destroying new objects all the time, this script reduces garbage by pooling instances, allowing you to seemingly create hundreds of new objects while only actually using a recycled few.