예제 #1
0
    void Update()
    {
        for (int i = 0; i < pool.affectedPairs; i++)
        {
            var ao = pool.contacts[i].a;
            var bo = pool.contacts[i].b;
            if (ao.teamTag == bo.teamTag)
            {
                continue;
            }

            long c = (ao.id << 32) | bo.id;
            if (!effects.ContainsKey(c))
            {
                GameObject o = recycleBin.Allocate();
                if (o == null)
                {
                    break;
                }
                o.SetActive(true);
                PartawnHitEffect hitEffect = o.GetComponent <PartawnHitEffect>();
                hitEffect.Play(
                    ao.location, bo.location,
                    () => {
                    effects.Remove(c);
                    recycleBin.Deallocate(o);
                });
            }
        }
    }