{"id":49354095,"url":"https://github.com/evdlabs/vive-wave-sdk-unity-template","last_synced_at":"2026-04-27T12:01:44.641Z","repository":{"id":224171258,"uuid":"762615516","full_name":"evdlabs/vive-wave-sdk-unity-template","owner":"evdlabs","description":"Unity Template project for VIVE Wave SDK ","archived":false,"fork":false,"pushed_at":"2024-03-01T12:08:10.000Z","size":29769,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-25T16:38:06.015Z","etag":null,"topics":["htc-vive","htc-vive-focus-plus","unity","vr"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/evdlabs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2024-02-24T07:44:27.000Z","updated_at":"2025-04-06T17:07:52.000Z","dependencies_parsed_at":"2024-03-01T13:40:02.860Z","dependency_job_id":null,"html_url":"https://github.com/evdlabs/vive-wave-sdk-unity-template","commit_stats":null,"previous_names":["evgenii-d/wavesdkunitytemplate","evdlabs/vive-wave-sdk-unity-template"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/evdlabs/vive-wave-sdk-unity-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evdlabs%2Fvive-wave-sdk-unity-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evdlabs%2Fvive-wave-sdk-unity-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evdlabs%2Fvive-wave-sdk-unity-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evdlabs%2Fvive-wave-sdk-unity-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/evdlabs","download_url":"https://codeload.github.com/evdlabs/vive-wave-sdk-unity-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evdlabs%2Fvive-wave-sdk-unity-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32335297,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"online","status_checked_at":"2026-04-27T02:00:06.769Z","response_time":128,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["htc-vive","htc-vive-focus-plus","unity","vr"],"created_at":"2026-04-27T12:01:41.719Z","updated_at":"2026-04-27T12:01:44.632Z","avatar_url":"https://github.com/evdlabs.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Wave SDK Unity Template\n\n## Overview\n\n**Unity 2021.3.35f1** template project for **Wave SDK 3.2.0** with fixed compatibility issues.\n\nTested on HTC Vive Focus Plus.\n\nReferences:\n\n* [Official Wave SDK 3.2.0][1]\n* [Wave SDK 3.2.0 with fix for Unity 2021][2]\n* [VIVE Wave SDK Developer Guide][3]\n\n## Tips\n\n### Android Manifest\n\n`AndroidManifest.xml` located under `Assets\\WaveVR\\Platform\\Android\\AndroidManifest.xml`.\n\nCheck out official docs - [Configure App Capabilities][4].\n\n### Disable controller pairing\n\nTo disable controller pairing pop-up menu, add this option to `AndroidManifest.xml`.\n\n```xml\n\u003cmeta-data android:name=\"no_controller_pairing\" android:value=\"true\" /\u003e\n```\n\nFor example\n\n```xml\n\u003c?xml version=\"1.0\" encoding=\"utf-8\"?\u003e\n\u003cmanifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.unity3d.player\"\n    xmlns:tools=\"http://schemas.android.com/tools\"\u003e\n    \u003capplication android:icon=\"@drawable/app_icon\"\n                 android:label=\"@string/app_name\"\n                 android:theme=\"@style/Theme.WaveVR.Loading\"\n                 android:resizeableActivity=\"false\"\n\t\t\t\t tools:replace=\"android:theme\"\u003e  \u003c!--You can use your theme here.--\u003e\n        \u003cactivity android:name=\"com.htc.vr.unity.WVRUnityVRActivity\"\n                  android:label=\"@string/app_name\"\n\t\t\t\t  android:configChanges=\"density|fontScale|keyboard|keyboardHidden|layoutDirection|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen\"\n                  android:enableVrMode=\"@string/wvr_vr_mode_component\"\u003e\n            \u003cintent-filter\u003e\n                \u003caction android:name=\"android.intent.action.MAIN\" /\u003e\n                \u003ccategory android:name=\"android.intent.category.LAUNCHER\" /\u003e\n                \u003ccategory android:name=\"com.htc.intent.category.VRAPP\" /\u003e\n            \u003c/intent-filter\u003e\n            \u003cmeta-data android:name=\"unityplayer.UnityActivity\" android:value=\"true\" /\u003e\n            \u003cmeta-data android:name=\"unityplayer.SkipPermissionsDialog\" android:value=\"true\" /\u003e\n        \u003c/activity\u003e\n        \u003cmeta-data android:name=\"no_controller_pairing\" android:value=\"true\" /\u003e\n    \u003c/application\u003e\n\n    \u003c!-- \u003cuses-permission android:name=\"android.permission.CAMERA\" /\u003e --\u003e\n    \u003c!-- \u003cuses-permission android:name=\"android.permission.READ_EXTERNAL_STORAGE\" /\u003e --\u003e\n\n    \u003cuses-permission android:name=\"vive.wave.vr.oem.data.OEMDataRead\" /\u003e\n    \u003cuses-permission android:name=\"vive.wave.vr.oem.data.OEMDataWrite\" /\u003e\n\u003c/manifest\u003e\n```\n\n[1]: https://developer.vive.com/resources/vive-wave/download/archive/320\n[2]: https://github.com/evgenii-d/ViveWaveSDK\n[3]: https://hub.vive.com/storage/docs/en-us/UnityXR/UnityXRSdk.html\n[4]: https://hub.vive.com/storage/app/doc/en-us/ConfigureAppCapabilities.html","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevdlabs%2Fvive-wave-sdk-unity-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fevdlabs%2Fvive-wave-sdk-unity-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevdlabs%2Fvive-wave-sdk-unity-template/lists"}