File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
com.unity.netcode.gameobjects Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ Additional documentation and release notes are available at [Multiplayer Documen
1212
1313### Fixed
1414
15+ - Fixed issue where some temporary debug console logging was left in a merged PR. (#2562 )
1516- Fixed the "Generate Default Network Prefabs List" setting not loading correctly and always reverting to being checked. (#2545 )
1617- Fixed missing value on ` NetworkListEvent ` for ` EventType.RemoveAt ` events. (#2542 ,#2543 )
1718- Fixed the inspector throwing exceptions when attempting to render ` NetworkVariable ` s of enum types. (#2529 )
Original file line number Diff line number Diff line change @@ -41,13 +41,11 @@ private void Init(MonoScript script)
4141 {
4242 m_NetworkVariableNames . Add ( ObjectNames . NicifyVariableName ( fields [ i ] . Name ) ) ;
4343 m_NetworkVariableFields . Add ( ObjectNames . NicifyVariableName ( fields [ i ] . Name ) , fields [ i ] ) ;
44- Debug . Log ( $ "Adding NetworkVariable { fields [ i ] . Name } ") ;
4544 }
4645 if ( ft . IsGenericType && ft . GetGenericTypeDefinition ( ) == typeof ( NetworkList < > ) && ! fields [ i ] . IsDefined ( typeof ( HideInInspector ) , true ) )
4746 {
4847 m_NetworkVariableNames . Add ( ObjectNames . NicifyVariableName ( fields [ i ] . Name ) ) ;
4948 m_NetworkVariableFields . Add ( ObjectNames . NicifyVariableName ( fields [ i ] . Name ) , fields [ i ] ) ;
50- Debug . Log ( $ "Adding NetworkList { fields [ i ] . Name } ") ;
5149 }
5250 }
5351 }
You can’t perform that action at this time.
0 commit comments