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
12
12
13
13
### Fixed
14
14
15
+ - Fixed issue where some temporary debug console logging was left in a merged PR. (#2562 )
15
16
- Fixed the "Generate Default Network Prefabs List" setting not loading correctly and always reverting to being checked. (#2545 )
16
17
- Fixed missing value on ` NetworkListEvent ` for ` EventType.RemoveAt ` events. (#2542 ,#2543 )
17
18
- 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)
41
41
{
42
42
m_NetworkVariableNames . Add ( ObjectNames . NicifyVariableName ( fields [ i ] . Name ) ) ;
43
43
m_NetworkVariableFields . Add ( ObjectNames . NicifyVariableName ( fields [ i ] . Name ) , fields [ i ] ) ;
44
- Debug . Log ( $ "Adding NetworkVariable { fields [ i ] . Name } ") ;
45
44
}
46
45
if ( ft . IsGenericType && ft . GetGenericTypeDefinition ( ) == typeof ( NetworkList < > ) && ! fields [ i ] . IsDefined ( typeof ( HideInInspector ) , true ) )
47
46
{
48
47
m_NetworkVariableNames . Add ( ObjectNames . NicifyVariableName ( fields [ i ] . Name ) ) ;
49
48
m_NetworkVariableFields . Add ( ObjectNames . NicifyVariableName ( fields [ i ] . Name ) , fields [ i ] ) ;
50
- Debug . Log ( $ "Adding NetworkList { fields [ i ] . Name } ") ;
51
49
}
52
50
}
53
51
}
You can’t perform that action at this time.
0 commit comments