@@ -929,7 +929,7 @@ public void ApplyParameterChanges()
929929 private void SetOptimizedControlDataType ( )
930930 {
931931 // setting check need to be inline so we clear optimizations if setting is disabled after the fact
932- m_OptimizedControlDataType = InputSystem . s_Manager . m_OptimizedControlsFeatureEnabled
932+ m_OptimizedControlDataType = InputSystem . s_Manager . optimizedControlsFeatureEnabled
933933 ? CalculateOptimizedControlDataType ( )
934934 : ( FourCC ) InputStateBlock . kFormatInvalid ;
935935 }
@@ -957,7 +957,7 @@ internal void SetOptimizedControlDataTypeRecursively()
957957 [ Conditional ( "UNITY_EDITOR" ) ]
958958 internal void EnsureOptimizationTypeHasNotChanged ( )
959959 {
960- if ( ! InputSystem . s_Manager . m_OptimizedControlsFeatureEnabled )
960+ if ( ! InputSystem . s_Manager . optimizedControlsFeatureEnabled )
961961 return ;
962962
963963 var currentOptimizedControlDataType = CalculateOptimizedControlDataType ( ) ;
@@ -1172,7 +1172,7 @@ public ref readonly TValue value
11721172
11731173 if (
11741174 // if feature is disabled we re-evaluate every call
1175- ! InputSystem . s_Manager . m_ReadValueCachingFeatureEnabled
1175+ ! InputSystem . s_Manager . readValueCachingFeatureEnabled
11761176 // if cached value is stale we re-evaluate and clear the flag
11771177 || m_CachedValueIsStale
11781178 // if a processor in stack needs to be re-evaluated, but unprocessedValue is still can be cached
@@ -1183,7 +1183,7 @@ public ref readonly TValue value
11831183 m_CachedValueIsStale = false ;
11841184 }
11851185#if DEBUG
1186- else if ( InputSystem . s_Manager . m_ParanoidReadValueCachingChecksEnabled )
1186+ else if ( InputSystem . s_Manager . paranoidReadValueCachingChecksEnabled )
11871187 {
11881188 var oldUnprocessedValue = m_UnprocessedCachedValue ;
11891189 var newUnprocessedValue = unprocessedValue ;
@@ -1225,7 +1225,7 @@ internal unsafe ref readonly TValue unprocessedValue
12251225
12261226 if (
12271227 // if feature is disabled we re-evaluate every call
1228- ! InputSystem . s_Manager . m_ReadValueCachingFeatureEnabled
1228+ ! InputSystem . s_Manager . readValueCachingFeatureEnabled
12291229 // if cached value is stale we re-evaluate and clear the flag
12301230 || m_UnprocessedCachedValueIsStale
12311231 )
@@ -1234,7 +1234,7 @@ internal unsafe ref readonly TValue unprocessedValue
12341234 m_UnprocessedCachedValueIsStale = false ;
12351235 }
12361236#if DEBUG
1237- else if ( InputSystem . s_Manager . m_ParanoidReadValueCachingChecksEnabled )
1237+ else if ( InputSystem . s_Manager . paranoidReadValueCachingChecksEnabled )
12381238 {
12391239 var currentUnprocessedValue = ReadUnprocessedValueFromState ( currentStatePtr ) ;
12401240 if ( CompareValue ( ref currentUnprocessedValue , ref m_UnprocessedCachedValue ) )
0 commit comments