コード例 #1
0
        // Token: 0x06000092 RID: 146 RVA: 0x00005504 File Offset: 0x00003704
        public void CreateEffect(GameObject prefab, LVector2 pos)
        {
            bool flag = prefab == null;

            if (!flag)
            {
                LFloat      liveTime    = prefab.GetComponent <IRollbackEffect>().LiveTime;
                EffectProxy effectProxy = new EffectProxy();
                GameObject  gameObject  = null;
                bool        flag2       = !this._globalStateService.IsVideoLoading;
                if (flag2)
                {
                    gameObject = Object.Instantiate <GameObject>(prefab, base.transform.position + pos.ToVector3(), Quaternion.identity);
                }
                bool flag3 = this.tail == null;
                if (flag3)
                {
                    this.head = (this.tail = effectProxy);
                }
                else
                {
                    effectProxy.pre = this.tail;
                    this.tail.next  = effectProxy;
                    this.tail       = effectProxy;
                }
                effectProxy.DoStart(base.CurTick, (gameObject != null) ? gameObject.GetComponent <IRollbackEffect>() : null, liveTime);
            }
        }
コード例 #2
0
        public void CreateEffect(GameObject prefab, LVector2 pos)
        {
            if (prefab == null)
            {
                return;
            }
            var        liveTime = prefab.GetComponent <IRollbackEffect>().LiveTime;
            var        comp     = new EffectProxy();
            GameObject go       = null;

            if (!_constStateService.IsVideoLoading)
            {
                go = GameObject.Instantiate(prefab, transform.position + pos.ToVector3(), Quaternion.identity);
            }

            if (tail == null)
            {
                head = tail = comp;
            }
            else
            {
                comp.pre  = tail;
                tail.next = comp;
                tail      = comp;
            }

            comp.DoStart(CurTick, go?.GetComponent <IRollbackEffect>(), liveTime);
        }
コード例 #3
0
        // Token: 0x06000093 RID: 147 RVA: 0x000055D0 File Offset: 0x000037D0
        public void DestroyEffect(object obj)
        {
            EffectProxy effectProxy = obj as EffectProxy;
            bool        flag        = effectProxy.Effect != null;

            if (flag)
            {
                Component component = effectProxy.Effect as Component;
                Object.Destroy(component.gameObject);
            }
        }
コード例 #4
0
        public override void Backup(int tick)
        {
            var node = head;
            var temp = node;

            while (node != null)
            {
                temp = node;
                node = node.next;
                if (temp.IsLive(tick))
                {
                    temp.DoUpdate(tick);
                }
                else
                {
                    if (head == temp)
                    {
                        head = temp.next;
                    }

                    if (tail == temp)
                    {
                        tail = temp.pre;
                    }

                    if (temp.pre != null)
                    {
                        temp.pre.next = temp.next;
                    }

                    if (temp.next != null)
                    {
                        temp.next.pre = temp.pre;
                    }

                    DestroyEffect(temp);
                }
            }
        }
コード例 #5
0
        // Token: 0x06000094 RID: 148 RVA: 0x0000560C File Offset: 0x0000380C
        public override void Backup(int tick)
        {
            EffectProxy next = this.head;

            while (next != null)
            {
                EffectProxy effectProxy = next;
                next = next.next;
                bool flag = effectProxy.IsLive(tick);
                if (flag)
                {
                    effectProxy.DoUpdate(tick);
                }
                else
                {
                    bool flag2 = this.head == effectProxy;
                    if (flag2)
                    {
                        this.head = effectProxy.next;
                    }
                    bool flag3 = this.tail == effectProxy;
                    if (flag3)
                    {
                        this.tail = effectProxy.pre;
                    }
                    bool flag4 = effectProxy.pre != null;
                    if (flag4)
                    {
                        effectProxy.pre.next = effectProxy.next;
                    }
                    bool flag5 = effectProxy.next != null;
                    if (flag5)
                    {
                        effectProxy.next.pre = effectProxy.pre;
                    }
                    this.DestroyEffect(effectProxy);
                }
            }
        }