最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

Unity的update()和Event事件系統(tǒng)性能比較

2022-02-20 02:04 作者:不想努力了工作室  | 我要投稿

注意,從國外文章看到UnityEvent系統(tǒng)比c#自帶的Event系統(tǒng)性能要差,但是好處是可以在編譯器可視化。其結(jié)果如下圖:


英語原文:

C# events beat?UnityEvent?for each number of arguments. The gap widens as more args are dispatched to the listeners. In the best case,?UnityEvent?takes 2.25x longer than C# events but in the worst case it takes almost 40x longer!

In conclusion,?UnityEvent?creates less garbage than C# events if you add more than two listeners to it, but creates more garbage otherwise. It creates garbage when dispatched (Update: the first time) where C# events do not. And it’s at least twice as slow as C# events. There doesn’t seem to be a compelling case to use it, at least by these metrics.?


然后是Update()和Event的性能比較,原文是

For anyone interested in this and stumbling upon it later, I have run three tests and the TLDR is: Unsurprisingly, do not use Update on too many game objects active in a scene at the same time, even on low frequency methods like this.

My test script simply spawns X amount of GameObjects based on a prefab that has either a

  • a) script with the computation done in its Update method, (Update方程,每幀檢查)


  • b) a script to subscribe to an event published by a manager behaviour, or (事件系統(tǒng),觸發(fā)了才會運(yùn)行)

  • c) a script that adds itself to a list to be later iterated through by the manager behaviour (based on?/u/Xeros778?suggestion). (觸發(fā)了遍歷的系統(tǒng),具體寫法是:Maybe option three, by having the manager class directly call a public function on each gameobject. This would require no event calls, but would require the manner class to store a list of all objects.)

In all cases, the test method is called after 2 seconds have passed, with corresponding time checks done in the relevant Update method. The test method itself generates 10,000 random numbers from a base random - nothing useful or very computationally difficult. But the test method, ultimately, did not matter, as Update being present on Monobehaviours is the biggest drain.

For 20,000 game objects that run the test method in a 2 second interval,

a) 5.24ms CPU/frame, total memory 6.97 GB
b) 0.17ms CPU/frame, total memory 7.49 GB
c) 0.14ms CPU/frame, total memory 6.02 GB

總結(jié),c勝者,b更占內(nèi)存,a非常消耗cpu

For 100,000 game objects, also running a test method in a 2 second interval:

a) 26.62ms CPU/frame, total memory 11.08 GB
b) 0.17ms CPU/frame, total memory 10.34 GB
c) 0.15ms CPU/frame, total memory 9.59 GB

同上,c是顯著勝者

So, the List option does somewhat better than Events in this test at least, also in regards to memory usage. Update is magnitudes worse compared to either approach.

Even without any computations done in Update, the mere presence of the method call is the culprit. I was not aware of the severity of this. 100k game objects active is of course a huge number, but still.

Depending on the weight of what actually needs to be calculated each interval, using a job system for the actual computations might indeed be worthwhile.


Unity的update()和Event事件系統(tǒng)性能比較的評論 (共 條)

分享到微博請遵守國家法律
通辽市| 沅陵县| 石林| 阜新市| 望江县| 东港市| 屯留县| 临洮县| 金昌市| 太和县| 和平区| 弥勒县| 绥阳县| 自治县| 清镇市| 伊宁市| 来凤县| 赤城县| 乐业县| 陵川县| 泰州市| 富宁县| 溆浦县| 泸定县| 彭州市| 商丘市| 工布江达县| 包头市| 宁阳县| 青川县| 宣城市| 新龙县| 新建县| 县级市| 炎陵县| 大渡口区| 汉源县| 白山市| 凤台县| 确山县| 新丰县|