UnityEditor.NetworkDetailStats.NetworkOperationDetails.NewProfilerTick C# (CSharp) Method

NewProfilerTick() public method

public NewProfilerTick ( int tickId ) : void
tickId int
return void
            public void NewProfilerTick(int tickId)
            {
                foreach (NetworkDetailStats.NetworkOperationEntryDetails details in this.m_Entries.Values)
                {
                    details.NewProfilerTick(tickId);
                }
                NetworkTransport.SetPacketStat(0, this.MsgId, (int) this.totalIn, 1);
                NetworkTransport.SetPacketStat(1, this.MsgId, (int) this.totalOut, 1);
                this.totalIn = 0f;
                this.totalOut = 0f;
            }
NetworkDetailStats.NetworkOperationDetails