├── .gitignore ├── Assets ├── Plugins.meta ├── Plugins │ ├── Android.meta │ └── Android │ │ ├── AndroidManifest.xml │ │ ├── AndroidManifest.xml.meta │ │ ├── BluetoothPlugin.jar │ │ └── BluetoothPlugin.jar.meta ├── Prefabs.meta ├── Prefabs │ ├── Bluetooth.prefab │ └── Bluetooth.prefab.meta ├── Scene.meta ├── Scene │ ├── Joystick Demo.unity │ └── Joystick Demo.unity.meta ├── Scripts.meta └── Scripts │ ├── Bluetooth.meta │ ├── Bluetooth │ ├── AndroidJavaFile.meta │ ├── AndroidJavaFile │ │ ├── BluetoothPlugin.java │ │ ├── BluetoothPlugin.java.meta │ │ ├── BluetoothService.java │ │ └── BluetoothService.java.meta │ ├── Bluetooth.cs │ ├── Bluetooth.cs.meta │ ├── BluetoothModel.cs │ └── BluetoothModel.cs.meta │ ├── BluetoothController.cs │ ├── BluetoothController.cs.meta │ ├── BluetoothView.cs │ └── BluetoothView.cs.meta ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityAdsSettings.asset └── UnityConnectSettings.asset ├── README.md └── bluetoothPlugin.unitypackage /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Plugins.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Plugins/Android.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Plugins/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Assets/Plugins/Android/AndroidManifest.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Plugins/Android/AndroidManifest.xml.meta -------------------------------------------------------------------------------- /Assets/Plugins/Android/BluetoothPlugin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Plugins/Android/BluetoothPlugin.jar -------------------------------------------------------------------------------- /Assets/Plugins/Android/BluetoothPlugin.jar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Plugins/Android/BluetoothPlugin.jar.meta -------------------------------------------------------------------------------- /Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Bluetooth.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Prefabs/Bluetooth.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Bluetooth.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Prefabs/Bluetooth.prefab.meta -------------------------------------------------------------------------------- /Assets/Scene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Scene.meta -------------------------------------------------------------------------------- /Assets/Scene/Joystick Demo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Scene/Joystick Demo.unity -------------------------------------------------------------------------------- /Assets/Scene/Joystick Demo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Scene/Joystick Demo.unity.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/Bluetooth.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Scripts/Bluetooth.meta -------------------------------------------------------------------------------- /Assets/Scripts/Bluetooth/AndroidJavaFile.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Scripts/Bluetooth/AndroidJavaFile.meta -------------------------------------------------------------------------------- /Assets/Scripts/Bluetooth/AndroidJavaFile/BluetoothPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Scripts/Bluetooth/AndroidJavaFile/BluetoothPlugin.java -------------------------------------------------------------------------------- /Assets/Scripts/Bluetooth/AndroidJavaFile/BluetoothPlugin.java.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Scripts/Bluetooth/AndroidJavaFile/BluetoothPlugin.java.meta -------------------------------------------------------------------------------- /Assets/Scripts/Bluetooth/AndroidJavaFile/BluetoothService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Scripts/Bluetooth/AndroidJavaFile/BluetoothService.java -------------------------------------------------------------------------------- /Assets/Scripts/Bluetooth/AndroidJavaFile/BluetoothService.java.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Scripts/Bluetooth/AndroidJavaFile/BluetoothService.java.meta -------------------------------------------------------------------------------- /Assets/Scripts/Bluetooth/Bluetooth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Scripts/Bluetooth/Bluetooth.cs -------------------------------------------------------------------------------- /Assets/Scripts/Bluetooth/Bluetooth.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Scripts/Bluetooth/Bluetooth.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Bluetooth/BluetoothModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Scripts/Bluetooth/BluetoothModel.cs -------------------------------------------------------------------------------- /Assets/Scripts/Bluetooth/BluetoothModel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Scripts/Bluetooth/BluetoothModel.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/BluetoothController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Scripts/BluetoothController.cs -------------------------------------------------------------------------------- /Assets/Scripts/BluetoothController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Scripts/BluetoothController.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/BluetoothView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Scripts/BluetoothView.cs -------------------------------------------------------------------------------- /Assets/Scripts/BluetoothView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/Assets/Scripts/BluetoothView.cs.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.1.1f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/ProjectSettings/UnityAdsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/README.md -------------------------------------------------------------------------------- /bluetoothPlugin.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhfmzk/UnityBluetoothPlugin/HEAD/bluetoothPlugin.unitypackage --------------------------------------------------------------------------------