Firstborn/Library/PackageCache/com.unity.inputsystem@1.5.1/InputSystem/InputFeatureNames.cs
Schaken-Mods 9092858a58 updated to the latest editor
I updated everything to the latest Unity Editor. Also realized I had the wrong shaders on my hairs, those are fixed and the hairs look MUCH better!
2023-05-07 17:43:11 -05:00

13 lines
627 B
C#

namespace UnityEngine.InputSystem
{
internal static class InputFeatureNames
{
public const string kRunPlayerUpdatesInEditMode = "RUN_PLAYER_UPDATES_IN_EDIT_MODE";
public const string kDisableUnityRemoteSupport = "DISABLE_UNITY_REMOTE_SUPPORT";
public const string kUseWindowsGamingInputBackend = "USE_WINDOWS_GAMING_INPUT_BACKEND";
public const string kUseOptimizedControls = "USE_OPTIMIZED_CONTROLS";
public const string kUseReadValueCaching = "USE_READ_VALUE_CACHING";
public const string kParanoidReadValueCachingChecks = "PARANOID_READ_VALUE_CACHING_CHECKS";
}
}