Skip to content

Commit 50b01c3

Browse files
author
JS Fauteux
committed
Integrated changes from PR #1569 into this
1 parent e16a73c commit 50b01c3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

com.unity.netcode.adapter.utp/Runtime/UnityTransport.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,11 @@ public void CreateDriver(UnityTransport transport, out NetworkDriver driver,
829829
unreliableFragmentedPipeline = driver.CreatePipeline(
830830
typeof(FragmentationPipelineStage),
831831
typeof(SimulatorPipelineStage),
832-
typeof(SimulatorPipelineStageInSend));
832+
typeof(SimulatorPipelineStageInSend)
833+
#if MULTIPLAYER_TOOLS
834+
,typeof(NetworkMetricsPipelineStage)
835+
#endif
836+
);
833837
unreliableSequencedFragmentedPipeline = driver.CreatePipeline(
834838
typeof(FragmentationPipelineStage),
835839
typeof(UnreliableSequencedPipelineStage),

0 commit comments

Comments
 (0)