perf: Optimize NetworkList indexer setter performance #3585
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds an equality check to the
NetworkList<T>
indexer setter, aligning its behavior withNetworkVariable<T>.Value
. SinceNetworkList<T>
already constrainsT
toIEquatable<T>
, this change is both safe and broadly applicable. It avoids redundant assignments when the new value is equal to the current value, which improves runtime efficiency and avoids unnecessary event dispatch and network synchronization.Changelog
com.unity.netcode.gameobjects
NetworkList<T>
indexer setter to skip operations when the new value equals the existing value, improving performance by avoiding unnecessary list events and network synchronization.Testing and Documentation
Backport
Not applicable.