Why does SteamVR forget about my OpenVR dashboard app?

125 views Asked by At

I set my application to auto-launch which does not throw any error and I can see my app in SteamVR:

auto apperror = vr::VRApplications()->SetApplicationAutoLaunch(applicationKey.c_str(), true);
if (apperror != vr::VRApplicationError_None) {
    throw std::runtime_error(std::string("Could not set auto start: ") + std::string(vr::VRApplications()->GetApplicationsErrorNameFromEnum(apperror)));
}

enter image description here

However if I restart SteamVR it seems to "forget" about my app and it is no longer listed.

This is my VR manifest:

{
    "source" : "builtin",
    "applications": [{
        "app_key": "vrphotobuddy",
        "launch_type": "binary",
        "binary_path_windows": "vrphotobuddy-overlay.exe",
        "is_dashboard_overlay": true,

        "strings": {
            "en_us": {
                "name": "VR Photo Buddy",
                "description": "VR Photo Buddy companion desktop app."
            }
        }
    }]
}

Why does SteamVR forget about my app?

0

There are 0 answers