You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a performance analyzer that would issue a warning when using GetNode<T>() or GetNode() in the _Process() method of a script or other performance-critical context. The call is rather costly and usually should be done in _Ready() and the resulting object should be reused.
The text was updated successfully, but these errors were encountered:
van800
changed the title
Add a performance warning for GetNode usage in _Process
Add a performance inspection for GetNode usage in _Process
May 19, 2020
Add a performance analyzer that would issue a warning when using
GetNode<T>()
orGetNode()
in the_Process()
method of a script or other performance-critical context. The call is rather costly and usually should be done in_Ready()
and the resulting object should be reused.The text was updated successfully, but these errors were encountered: