├── .gitignore ├── LICENSE ├── README.md ├── UnityApp ├── Assets │ ├── PluginInterface.cs │ ├── PluginInterface.cs.meta │ ├── Plugins.meta │ ├── Plugins │ │ ├── Android.meta │ │ └── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── AndroidManifest.xml.meta │ │ │ ├── TestLibrary.jar │ │ │ ├── TestLibrary.jar.meta │ │ │ ├── android-support-v4.jar │ │ │ └── android-support-v4.jar.meta │ ├── main.unity │ └── main.unity.meta └── 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 └── WiimotePlugin ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── josh │ │ └── wiimoteconnector │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── josh │ │ │ └── wiimoteconnector │ │ │ └── WiimoteDriver.java │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── josh │ └── wiimoteconnector │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/README.md -------------------------------------------------------------------------------- /UnityApp/Assets/PluginInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/Assets/PluginInterface.cs -------------------------------------------------------------------------------- /UnityApp/Assets/PluginInterface.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/Assets/PluginInterface.cs.meta -------------------------------------------------------------------------------- /UnityApp/Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/Assets/Plugins.meta -------------------------------------------------------------------------------- /UnityApp/Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/Assets/Plugins/Android.meta -------------------------------------------------------------------------------- /UnityApp/Assets/Plugins/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/Assets/Plugins/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /UnityApp/Assets/Plugins/Android/AndroidManifest.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/Assets/Plugins/Android/AndroidManifest.xml.meta -------------------------------------------------------------------------------- /UnityApp/Assets/Plugins/Android/TestLibrary.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/Assets/Plugins/Android/TestLibrary.jar -------------------------------------------------------------------------------- /UnityApp/Assets/Plugins/Android/TestLibrary.jar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/Assets/Plugins/Android/TestLibrary.jar.meta -------------------------------------------------------------------------------- /UnityApp/Assets/Plugins/Android/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/Assets/Plugins/Android/android-support-v4.jar -------------------------------------------------------------------------------- /UnityApp/Assets/Plugins/Android/android-support-v4.jar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/Assets/Plugins/Android/android-support-v4.jar.meta -------------------------------------------------------------------------------- /UnityApp/Assets/main.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/Assets/main.unity -------------------------------------------------------------------------------- /UnityApp/Assets/main.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/Assets/main.unity.meta -------------------------------------------------------------------------------- /UnityApp/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /UnityApp/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /UnityApp/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /UnityApp/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /UnityApp/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /UnityApp/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /UnityApp/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /UnityApp/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /UnityApp/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /UnityApp/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /UnityApp/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /UnityApp/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /UnityApp/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /UnityApp/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /UnityApp/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /UnityApp/ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/ProjectSettings/UnityAdsSettings.asset -------------------------------------------------------------------------------- /UnityApp/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/UnityApp/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /WiimotePlugin/.idea/.name: -------------------------------------------------------------------------------- 1 | WiimotePlugin -------------------------------------------------------------------------------- /WiimotePlugin/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/.idea/compiler.xml -------------------------------------------------------------------------------- /WiimotePlugin/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /WiimotePlugin/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/.idea/encodings.xml -------------------------------------------------------------------------------- /WiimotePlugin/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/.idea/gradle.xml -------------------------------------------------------------------------------- /WiimotePlugin/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/.idea/misc.xml -------------------------------------------------------------------------------- /WiimotePlugin/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/.idea/modules.xml -------------------------------------------------------------------------------- /WiimotePlugin/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /WiimotePlugin/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/.idea/vcs.xml -------------------------------------------------------------------------------- /WiimotePlugin/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /WiimotePlugin/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/app/build.gradle -------------------------------------------------------------------------------- /WiimotePlugin/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/app/proguard-rules.pro -------------------------------------------------------------------------------- /WiimotePlugin/app/src/androidTest/java/com/josh/wiimoteconnector/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/app/src/androidTest/java/com/josh/wiimoteconnector/ApplicationTest.java -------------------------------------------------------------------------------- /WiimotePlugin/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /WiimotePlugin/app/src/main/java/com/josh/wiimoteconnector/WiimoteDriver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/app/src/main/java/com/josh/wiimoteconnector/WiimoteDriver.java -------------------------------------------------------------------------------- /WiimotePlugin/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /WiimotePlugin/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /WiimotePlugin/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /WiimotePlugin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /WiimotePlugin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /WiimotePlugin/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /WiimotePlugin/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /WiimotePlugin/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /WiimotePlugin/app/src/test/java/com/josh/wiimoteconnector/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/app/src/test/java/com/josh/wiimoteconnector/ExampleUnitTest.java -------------------------------------------------------------------------------- /WiimotePlugin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/build.gradle -------------------------------------------------------------------------------- /WiimotePlugin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/gradle.properties -------------------------------------------------------------------------------- /WiimotePlugin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /WiimotePlugin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /WiimotePlugin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/gradlew -------------------------------------------------------------------------------- /WiimotePlugin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshkillinger/AndroidWiimote/HEAD/WiimotePlugin/gradlew.bat -------------------------------------------------------------------------------- /WiimotePlugin/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------