Dyslex1k / VRC-Skeletal-Hands

An OSC app that reads in Skeletal Input Parameters and sends them to VRChat to animate an avatars hands.
MIT License
30 stars 1 forks source link

Fix manifest.vrmanifest so app will launch with SteamVR. #5

Closed candygamer-YT closed 4 months ago

candygamer-YT commented 4 months ago

A simple rewrite like this would work just fine as a simple fix! (For those who want to fix it quick)

{
    "source" : "builtin",
    "applications": [{
        "app_key": "InsertIDHere",
        "launch_type": "binary",
        "binary_path_windows": "./VRCSkeletalHands.exe",
        "is_dashboard_overlay": true,

        "strings": {
            "en_us": {
                "name": "Skeletal Hands",
                "description": "Pushes Skeletal input to vrchat over OSC"
            }
        }
    }]
}
Dyslex1k commented 4 months ago

Will update this tonight after I finish doing some work! Thanks for pointing this out!