大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
对象池概念:用来优化游戏,提升游戏性能,如飞机大战 ,当触及到大量的物体需要不断的重新的被创建的时候,这个时候就适合用到对象池。
创新互联公司专注于企业营销型网站、网站重做改版、鄯善网站定制设计、自适应品牌网站建设、H5场景定制、电子商务商城网站建设、集团公司官网建设、成都外贸网站建设公司、高端网站制作、响应式网页设计等建站业务,价格优惠性价比高,为鄯善等各大城市提供网站开发制作服务。下面我会写一个例子更详细的来说明下这个对象池的用法:
对象池主要有2个方法
1:从池里去找东西
2:往池里放东西
这里我是写了一个打砖块的例子,后续我会把整个游戏的代码分享出来,里面包含一个拿和一个放的方法。
using UnityEngine;
using System.Collections;
using System.Collections.Generic; //用字典必须加上这个
public class ObjectPool : MonoBehaviour
{
public static ObjectPool intance; //单例模式
public static Dictionary
void Start()
{
intance = this;
}
//从对象池里拿到我们的对象
public Object Get(string prefabName, Vector3 position, Quaternion rotation)
{
string key = prefabName + "(Clone)";
Object o;
if (pool.ContainsKey(key) && pool[key].Count > 0) //判断这个池里有没有要拿的对象
{
ArrayList list = pool[key];
o = list[0] as Object;
list.RemoveAt(0);
//重新初始化相关状态
(o as GameObject).SetActive(true);
(o as GameObject).transform.position = position;
(o as GameObject).transform.rotation = rotation;
}
else
{
o = Instantiate(Resources.Load(prefabName), position, rotation); //如果池里没有对象了就实例化一个出来
}
// Object o = Instantiate(Resources.Load(prefabName), position, rotation);
//初似化池里面的数据
DelayDestroy dd = (o as GameObject).GetComponent
dd.Init();
return o;
}
//把对象放回对象池
public Object Return(GameObject o)
{
string key = o.name;
print("Return key" + key);
if (pool.ContainsKey(key)) //判断池里是否有我们要拿的对象
{
ArrayList list = pool[key];
list.Add(o);
}
else
{
pool[key] = new ArrayList() { o };
}
o.SetActive(false); //让对象隐藏
return o;
}
}
代码2://销毁对象的代码
using UnityEngine;
using System.Collections;
public class DelayDestroy : MonoBehaviour {
//需要初始化的所有属性
public void Init()
{
StartCoroutine(ReturnToPool());
}
//协程函数
IEnumerator ReturnToPool()
{
yield return new WaitForSeconds (2f);
ObjectPool.intance.Return(this.gameObject);
}
}
这是游戏效果
看到Ball(Clone)就是我们从对象池拿的对象,这样我们就可以提高我们游戏的性能,实现了游戏优化
另外有需要云服务器可以了解下创新互联cdcxhl.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。