Giter VIP home page Giter VIP logo

unity3d-prefab-pool's Introduction

Description outdated - will be updated soon ! unity3d-prefab-pool

Simple Prefab Pool for Unity3D

Summary: This project provides a simple implementation for pool of prefabs to avoid performance issues with runtime prefab instantiation.

The project contains an example of usage. You can also read about simple prefab pool from my blog post on blogger.


The usage is extremely simple. First you create an instance of PrefabPool (there are overloaded constructors for flexibility). The constructor with all parameters:

Creating the pool

	// Create pool of cubes containing instantiated cubePrefabs
	PrefabPool cubesPool = 
		new PrefabPool(cubePrefab, parent, initialPoolSize, growth, maxPoolSize);

This is the code that creates a pool of cubePrefab transform objects, instantiates initialPoolSize number of them (items are inactive after instantiation). If there is a need to instantiate more prefabs they will be batch instantiated growth number at a time. You can also limit the size of your pool by specifying maxPoolSize.

Now the only methods you should care about are ObtainPrefab and RecyclePrefab. When you obtain prefab from the pool it is set to be active and you specify its new position, rotation and scale.

Obtaining instantiated prefab from the pool

Transform retrievedCubeInstance1 = cubesPool.ObtainPrefabInstance(newParent.gameObject); 

Recycling active instantiated prefab

cubesPool.RecyclePrefab(retrievedCubeInstance1);

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.