├── InputDeviceDetector.unitypackage ├── InputDeviceDetector ├── .gitignore ├── .vscode │ └── settings.json ├── Assets │ ├── Input Device Detector.meta │ ├── Input Device Detector │ │ ├── How to use.md │ │ ├── How to use.md.meta │ │ ├── Prefab.meta │ │ ├── Prefab │ │ │ ├── Input Device Detector.prefab │ │ │ └── Input Device Detector.prefab.meta │ │ ├── Script.meta │ │ └── Script │ │ │ ├── InputDeviceDetector.cs │ │ │ └── InputDeviceDetector.cs.meta │ ├── Sample.meta │ └── Sample │ │ ├── Images.meta │ │ ├── Images │ │ ├── Gamepad-Icon.png │ │ ├── Gamepad-Icon.png.meta │ │ ├── Keyboard-Icon.png │ │ ├── Keyboard-Icon.png.meta │ │ ├── Mouse-Icon.png │ │ └── Mouse-Icon.png.meta │ │ ├── Scenes.meta │ │ ├── Scenes │ │ ├── SampleScene.unity │ │ └── SampleScene.unity.meta │ │ ├── Script.meta │ │ └── Script │ │ ├── UIController.cs │ │ └── UIController.cs.meta ├── Packages │ ├── manifest.json │ └── packages-lock.json ├── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── PackageManagerSettings.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ └── XRSettings.asset └── UserSettings │ └── EditorUserSettings.asset ├── LICENSE └── README.md /InputDeviceDetector.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector.unitypackage -------------------------------------------------------------------------------- /InputDeviceDetector/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/.gitignore -------------------------------------------------------------------------------- /InputDeviceDetector/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/.vscode/settings.json -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Input Device Detector.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Input Device Detector.meta -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Input Device Detector/How to use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Input Device Detector/How to use.md -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Input Device Detector/How to use.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Input Device Detector/How to use.md.meta -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Input Device Detector/Prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Input Device Detector/Prefab.meta -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Input Device Detector/Prefab/Input Device Detector.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Input Device Detector/Prefab/Input Device Detector.prefab -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Input Device Detector/Prefab/Input Device Detector.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Input Device Detector/Prefab/Input Device Detector.prefab.meta -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Input Device Detector/Script.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Input Device Detector/Script.meta -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Input Device Detector/Script/InputDeviceDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Input Device Detector/Script/InputDeviceDetector.cs -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Input Device Detector/Script/InputDeviceDetector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Input Device Detector/Script/InputDeviceDetector.cs.meta -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Sample.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Sample.meta -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Sample/Images.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Sample/Images.meta -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Sample/Images/Gamepad-Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Sample/Images/Gamepad-Icon.png -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Sample/Images/Gamepad-Icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Sample/Images/Gamepad-Icon.png.meta -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Sample/Images/Keyboard-Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Sample/Images/Keyboard-Icon.png -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Sample/Images/Keyboard-Icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Sample/Images/Keyboard-Icon.png.meta -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Sample/Images/Mouse-Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Sample/Images/Mouse-Icon.png -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Sample/Images/Mouse-Icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Sample/Images/Mouse-Icon.png.meta -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Sample/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Sample/Scenes.meta -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Sample/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Sample/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Sample/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Sample/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Sample/Script.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Sample/Script.meta -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Sample/Script/UIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Sample/Script/UIController.cs -------------------------------------------------------------------------------- /InputDeviceDetector/Assets/Sample/Script/UIController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Assets/Sample/Script/UIController.cs.meta -------------------------------------------------------------------------------- /InputDeviceDetector/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Packages/manifest.json -------------------------------------------------------------------------------- /InputDeviceDetector/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/Packages/packages-lock.json -------------------------------------------------------------------------------- /InputDeviceDetector/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /InputDeviceDetector/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /InputDeviceDetector/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /InputDeviceDetector/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /InputDeviceDetector/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /InputDeviceDetector/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /InputDeviceDetector/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /InputDeviceDetector/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /InputDeviceDetector/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /InputDeviceDetector/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /InputDeviceDetector/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /InputDeviceDetector/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /InputDeviceDetector/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /InputDeviceDetector/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /InputDeviceDetector/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /InputDeviceDetector/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /InputDeviceDetector/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /InputDeviceDetector/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /InputDeviceDetector/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /InputDeviceDetector/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /InputDeviceDetector/UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/InputDeviceDetector/UserSettings/EditorUserSettings.asset -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RYanXuDev/InputDeviceDetector/HEAD/README.md --------------------------------------------------------------------------------