File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
testproject/Assets/ManualTests Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ public class ClientCounterBehaviour : NetworkBehaviour
46
46
private int m_GlobalCounter ;
47
47
private int m_GlobalDirectCounter ;
48
48
private int m_GlobalDirectCurrentClientIdIndex ;
49
- private int m_localClientCounter ;
49
+ private int m_LocalClientCounter ;
50
50
private int m_GlobalCounterOffset ;
51
51
private int m_RpcPerSecond ;
52
52
private int m_GlobalDirectScale ;
@@ -290,8 +290,8 @@ private void Update()
290
290
if ( m_LocalCounterDelay < Time . realtimeSinceStartup )
291
291
{
292
292
m_LocalCounterDelay = Time . realtimeSinceStartup + 0.25f ;
293
- m_localClientCounter ++ ;
294
- OnSendCounterServerRpc ( m_localClientCounter ) ;
293
+ m_LocalClientCounter ++ ;
294
+ OnSendCounterServerRpc ( m_LocalClientCounter ) ;
295
295
m_RpcMessagesSent ++ ;
296
296
}
297
297
else if ( m_LocalMultiDelay < Time . realtimeSinceStartup )
You can’t perform that action at this time.
0 commit comments