@@ -564,7 +564,6 @@ private void RestoreActionStatesAfterReResolvingBindings(UnmanagedMemory oldStat
564564 newActionState . framePressed = oldActionState . framePressed ;
565565 newActionState . frameReleased = oldActionState . frameReleased ;
566566 newActionState . bindingIndex = oldActionState . bindingIndex ;
567- newActionState . frame = oldActionState . frame ;
568567
569568 if ( oldActionState . phase != InputActionPhase . Disabled )
570569 {
@@ -893,7 +892,6 @@ public void ResetActionState(int actionIndex, InputActionPhase toPhase = InputAc
893892 actionState ->frameCompleted = default ;
894893 actionState ->framePressed = default ;
895894 actionState ->frameReleased = default ;
896- actionState ->frame = default ;
897895 }
898896
899897 Debug . Assert ( ! actionState ->isStarted , "Cannot reset an action to started phase" ) ;
@@ -1574,7 +1572,6 @@ private void ProcessButtonState(ref TriggerState trigger, int actionIndex, Bindi
15741572 actionState ->framePressed = Time . frameCount ;
15751573 actionState ->pressedInUpdate = InputUpdate . s_UpdateStepCount ;
15761574 actionState ->isPressed = true ;
1577- actionState ->frame = Time . frameCount ;
15781575 }
15791576 else if ( actionState ->isPressed )
15801577 {
@@ -1584,7 +1581,6 @@ private void ProcessButtonState(ref TriggerState trigger, int actionIndex, Bindi
15841581 actionState ->frameReleased = Time . frameCount ;
15851582 actionState ->releasedInUpdate = InputUpdate . s_UpdateStepCount ;
15861583 actionState ->isPressed = false ;
1587- actionState ->frame = Time . frameCount ;
15881584 }
15891585 }
15901586 }
@@ -2443,7 +2439,6 @@ private void ChangePhaseOfActionInternal(int actionIndex, TriggerState* actionSt
24432439 newState . magnitude = 0f ;
24442440
24452441 newState . phase = newPhase ;
2446- newState . frame = Time . frameCount ;
24472442 if ( newPhase == InputActionPhase . Performed )
24482443 {
24492444 newState . framePerformed = Time . frameCount ;
@@ -3822,12 +3817,6 @@ public uint lastPerformedInUpdate
38223817 set => m_LastPerformedInUpdate = value ;
38233818 }
38243819
3825- internal int frame
3826- {
3827- get => m_Frame ;
3828- set => m_Frame = value ;
3829- }
3830-
38313820 internal int framePerformed
38323821 {
38333822 get => m_FramePerformed ;
0 commit comments