Unity——對象池管理
Unity對象池管理
一、Demo展示
二.邏輯
在遊戲中會出現大量重複的物體需要頻繁的創建和銷毀;比如子彈,敵人,成就列表的格子等;
頻繁的創建刪除物體會造成很大的開銷,像這種大量創建重複且非持續性保持作用的對象我們會使用對象池將其管理起來,用空間換效率;
對象池的要對外提供創建銷毀對象的介面,已經添加對象池的介面;
對內要提供創建對象,根據路徑查找預製的介面;
整體邏輯如下:
二.載入/添加對象池
添加資源路徑,分為Resources文件夾下和SteamingAssets文件下資源;
Resources載入時路徑不需要後綴,SteamingAssets需要後綴,根據path路徑開頭的判斷載入方式,同時對路徑做處理;
SteamingAssets需要根據平台添加路徑頭Application.streamingAssetsPath;
Resources需要去掉格式後綴,如.perfab;
這裡我測試只使用Resources路徑,正式項目自行處理;
存放預創建好的對象:
private Dictionary<string,List<GameObject>> pool;
存放預製體路徑:
private Dictionary<string, string> objPath;
public void InitPath()
{
//測試用,正常肯定要做字元串處理的,需要加後綴
objPath.Add("cube","Cube");
objPath.Add("sphere","Sphere");
}
public void Add(string key, int num)
{
if (pool.ContainsKey(key))
{
for (int i = 0; i < num; ++i)
{
//AssetBundle ab = AssetBundle.LoadFromFile($"{path}/{objPath[key]}");
//GameObject go = Instantiate(ab.LoadAsset<GameObject>(key));
//由於我的測試資源就放在Resources下,正式項目需要根據路徑做個判斷;
GameObject go = Instantiate(Resources.Load<GameObject>(objPath[key]));
go.SetActive(false);
pool[key].Add(go);
}
}
else
{
List<GameObject> goList = new List<GameObject>();
pool.Add(key, goList);
for (int i = 0; i < num; ++i)
{
//AssetBundle ab = AssetBundle.LoadFromFile(objPath[key]);
//GameObject go = Instantiate(ab.LoadAsset<GameObject>(key));
GameObject go = Instantiate(Resources.Load<GameObject>(objPath[key]));
go.SetActive(false);
pool[key].Add(go);
}
}
}
三.管理對象池
對象池管理需要對外提供創建對象,銷毀對象,延遲銷毀和清空池的方法;
創建對象時,需要提供key,坐標,旋轉;
現查找是否有對象池,沒有則添加;
這裡提供了四元素和歐拉角的重載方法;
1.創建對象
public GameObject FindUsable(string key
{
if(pool.ContainsKey(key))
{
foreach (GameObject item in poo
{
if (!item.activeSelf)
return item;
}
Debug.Log($"{key}的對象池數量不夠");
}
else
{
Debug.Log($"{key}未添加對象池");
}
return null;
}
/// <summary>創建一個遊戲物體到場景 </summary>
public GameObject CreateObject(string k
{
GameObject tempGo = FindUsable(key)
if (tempGo == null)
{
Debug.Log($"{key}的對象池數量不夠");
Add(key, 10);
tempGo = FindUsable(key);
}
tempGo.transform.position = positio
tempGo.transform.rotation = quatern
tempGo.SetActive(true);
return tempGo;
}
public GameObject CreateObject(string k
{
GameObject tempGo = FindUsable(key)
if (tempGo == null)
{
Debug.Log($"{key}的對象池數量不夠");
Add(key, 10);
tempGo = FindUsable(key);
}
tempGo.transform.position = positio
tempGo.transform.rotation = Quatern
tempGo.SetActive(true);
return tempGo;
}
2.銷毀對象
延時銷毀可使用回調(invoke)或協程;
public void Destory(GameObject destoryGo)
{
destoryGo.SetActive(false);
}
/// <summary>將對象歸入池中<summary>
public void Destory(GameObject tempGo, float delay)
{
StartCoroutine(DelayDestory(tempGo,delay));
}
/// <summary>延遲銷毀</summary>
private IEnumerator DelayDestory(GameObject destoryGO, float delay)
{
yield return new WaitForSeconds(delay);
Destory(destoryGO);
}
3.清空池
/// <summary>清空某類遊戲對象</summary>
public void Clear(string key)
{
pool.Remove(key);
}
/// <summary>清空池中所有遊戲對象</summary>
public void ClearAll()
{
pool.Clear();
}
四、測試程式碼
兩個按鈕分別創建方塊和球,每次創建更改一次位置;滑鼠射線點擊延遲1s銷毀;
public class Test : MonoBehaviour
{
public Button btnCube;
public Button btnSphere;
void Start()
{
GameObjectPool.I.InitPath();
GameObjectPool.I.Add("cube",10);
GameObjectPool.I.Add("sphere",10);
btnCube.onClick.AddListener(OnBtnCube);
btnSphere.onClick.AddListener(OnBtnSphere);
}
private Vector3 deltaPos = new Vector3(1, 1, 1);
private Vector3 pos =new Vector3(-10,0,0);
private void OnBtnCube()
{
GameObject go = GameObjectPool.I.CreateObject("cube", pos, Vector3.zero);
go.transform.SetParent(null);
SceneManager.MoveGameObjectToScene(go, SceneManager.GetSceneByName("1"));
go.transform.position += deltaPos;
pos = go.transform.position;
}
private Vector3 pos1 =new Vector3(0,0,0);
private void OnBtnSphere()
{
GameObject go = GameObjectPool.I.CreateObject("sphere", pos1, Vector3.zero);
go.transform.SetParent(null);
SceneManager.MoveGameObjectToScene(go, SceneManager.GetSceneByName("1"));
go.transform.position += deltaPos;
pos1 = go.transform.position;
}
private void Update()
{
if(Input.GetMouseButtonDown(0)){
Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
RaycastHit hitInfo;
if(Physics.Raycast(ray,out hitInfo)){
Debug.DrawLine(ray.origin,hitInfo.point);
GameObject gameObj = hitInfo.collider.gameObject;
Debug.Log("click object name is " + gameObj.name);
GameObjectPool.I.Destory(gameObj,1);
}
}
}
}