File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
com.unity.netcode.gameobjects/Components Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -784,7 +784,7 @@ private void ApplyAuthoritativeState()
784
784
}
785
785
786
786
// Apply the new position
787
- if ( networkState . HasPositionChange || Interpolate && SynchronizePosition )
787
+ if ( networkState . HasPositionChange || ( Interpolate && SynchronizePosition ) )
788
788
{
789
789
if ( InLocalSpace )
790
790
{
@@ -797,7 +797,7 @@ private void ApplyAuthoritativeState()
797
797
}
798
798
799
799
// Apply the new rotation
800
- if ( networkState . HasRotAngleChange || Interpolate && SynchronizeRotation )
800
+ if ( networkState . HasRotAngleChange || ( Interpolate && SynchronizeRotation ) )
801
801
{
802
802
if ( InLocalSpace )
803
803
{
@@ -810,7 +810,7 @@ private void ApplyAuthoritativeState()
810
810
}
811
811
812
812
// Apply the new scale
813
- if ( networkState . HasScaleChange || Interpolate && SynchronizeScale )
813
+ if ( networkState . HasScaleChange || ( Interpolate && SynchronizeScale ) )
814
814
{
815
815
transform . localScale = interpolatedScale ;
816
816
}
You can’t perform that action at this time.
0 commit comments