File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
com.unity.netcode.gameobjects Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ Additional documentation and release notes are available at [Multiplayer Documen
1818
1919### Changed
2020
21+ - First pass of CoreCLR engine API changes. (#3799 )
2122- Changed NetworkAnimator to use the ` RpcAttribute ` along with the appropriate ` SendTo ` parameter. (#3586 )
2223- Improve performance of ` NetworkTransformState ` . (#3770 )
2324
Original file line number Diff line number Diff line change 55using Unity . Netcode . Editor . Configuration ;
66using UnityEditor ;
77using UnityEngine ;
8+ #if UNITY_6000_5_OR_NEWER
9+ using UnityEngine . Assemblies ;
10+ #endif
811
912namespace Unity . Netcode . Editor
1013{
@@ -60,7 +63,11 @@ private void ReloadTransports()
6063 {
6164 m_TransportTypes . Clear ( ) ;
6265
66+ #if UNITY_6000_5_OR_NEWER
67+ var assemblies = CurrentAssemblies . GetLoadedAssemblies ( ) ;
68+ #else
6369 var assemblies = AppDomain . CurrentDomain . GetAssemblies ( ) ;
70+ #endif
6471
6572 foreach ( var assembly in assemblies )
6673 {
You can’t perform that action at this time.
0 commit comments