Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
ScanConnections() causes heavy load in play mode, even with all Curvy objects removed
#6
(07-23-2021, 12:28 PM)_Aka_ Wrote: 1- After digging in this subject, I see that ScanConnections  is not set to be executed every frame. It is supposed to execute only when the hierarchy changes. Does your hierarchy change every frame?

Yes, because we're loading and unloading assets dynamically (the level is large). Right now we're using SECTR_Stream, but it's just additively loading scenes and terrains. But at edit time, obviously we're only changing the hierarchy every time we click the mouse, so not quite every frame.

(07-23-2021, 12:28 PM)_Aka_ Wrote:
2- I tested with 20k cubes, and ScanConnections did not show any significant CPU usage. Maybe it is because your game objects are way more complex?

Yes, I'd say that's right. But our use case would be typical of a modern open-world game. We try to keep the hierarchy as flat as possible but still any kind of FindAll() is going to take several milliseconds.

(07-23-2021, 12:28 PM)_Aka_ Wrote:
3- Here is an optimization to ScanConnections:
replace
CurvyConnection[] o = GameObject.FindObjectsOfType<CurvyConnection>();
with
CurvyConnection[] o = CurvyGlobalManager.Instance.GetComponentsInChildren<CurvyConnection>();
Since I couldn't reproduce the issue, I wasn't able to test how efficient this optimization is, but it is theoretically efficient. Can you please apply it on your project and tell me what was the result? Thanks

Sure, we'll give it a try.
Reply


Messages In This Thread
RE: ScanConnections() causes heavy load in play mode, even with all Curvy objects removed - by bennett - 07-23-2021, 03:32 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Play() does not cause SplineController to produce expected behaviour ConCat 8 2,025 02-08-2026, 11:54 AM
Last Post: _Aka_
  Curvy Line Renderer for UI Spline? gekido 7 6,792 07-13-2025, 07:11 PM
Last Post: _Aka_
  Method of scattering objects along spline joebain 1 1,582 11-26-2024, 03:20 PM
Last Post: _Aka_
  making objects solid cielpandapie 1 1,490 10-18-2024, 12:17 AM
Last Post: _Aka_

Forum Jump: