DragonBones / DragonBonesCSharp

DragonBones C# Runtime
MIT License
533 stars 198 forks source link

对象池存在问题 #50

Open jonny91 opened 6 years ago

jonny91 commented 6 years ago

在不确定的时候 播放时候时出现如下错误 ` if (this.displayControl) { for (int i = 0, l = this._slotTimelines.Count; i < l; ++i) { var timeline = this._slotTimelines[i]; var displayController = timeline.slot.displayController; //此处timeline.slot == null

                    if (
                        displayController == null ||
                        displayController == this.name ||
                        displayController == this.group
                    )
                    {
                        if (timeline.playState <= 0)
                        {
                            timeline.Update(time);
                        }
                    }
                }
            }`

正在寻找必现的方法 如果找到了 跟帖上传

ErQing commented 6 years ago

我也遇到了这样的问题 , 这个异常让所有动画不能正常运行 , 非常的严重.

akdcl commented 6 years ago

该 bug 已经在 dev 分支修复,感谢提交的 issue。

Carloskb2 commented 5 years ago

Hi Guys, Having the same issue here, could you please tell me how you manage to solve it? Thanks.