Skip to content

Commit 2da4dd5

Browse files
fix: Remove Debug Simulator if using UTP 2.0+ (#3120)
* fix: Remove Debug Simulator if using UTP 2.0+ * Add PR number to CHANGELOG entry
1 parent 1532417 commit 2da4dd5

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

com.unity.netcode.gameobjects/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ Additional documentation and release notes are available at [Multiplayer Documen
2727

2828
### Changed
2929

30+
- The Debug Simulator section of the Unity Transport component will now be hidden if Unity Transport 2.0 or later is installed. It was already non-functional in that situation and users should instead use the more featureful [Network Simulator](https://docs-multiplayer.unity3d.com/tools/current/tools-network-simulator/) tool from the Multiplayer Tools package. (#3120)
31+
3032

3133
## [1.11.0] - 2024-08-20
3234

com.unity.netcode.gameobjects/Runtime/Transports/UTP/UnityTransport.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,7 @@ public struct SimulatorParameters
406406

407407
#if UTP_TRANSPORT_2_0_ABOVE
408408
[Obsolete("DebugSimulator is no longer supported and has no effect. Use Network Simulator from the Multiplayer Tools package.", false)]
409+
[HideInInspector]
409410
#endif
410411
public SimulatorParameters DebugSimulator = new SimulatorParameters
411412
{

0 commit comments

Comments
 (0)