Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,8 @@ public enum NetworkTransformSettings

protected override IEnumerator OnSetup()
{
//TODO: Remove this when we determine what the random failure is
m_EnableVerboseDebug = true;
TestComponentHelper.ClientsRegistered.Clear();
TestComponentHelper.NetworkObjectIdToIndex.Clear();
for (int i = 0; i < k_NestedChildren; i++)
Expand All @@ -169,6 +171,8 @@ protected override IEnumerator OnSetup()

protected override IEnumerator OnTearDown()
{
//TODO: Remove this when we determine what the random failure is
m_EnableVerboseDebug = false;
if (m_ServerSideParent != null && m_ServerSideParent.GetComponent<NetworkObject>().IsSpawned)
{
// Clean up in reverse order (also makes sure we can despawn parents before children)
Expand Down