Package won't play in VR htc Vive

Hello,
I have tried to package the first person exemple map,
It worked in 4.14 but not now in 4.15.
I have tried to add this command lines: “stereo on”, “fullscreen”,
I Have checked “try to start in vr” in the project settings,
But nothing works …

Can someone help me ?
Thanks !

I’m having a similar issue, though if I set the “start in vr” project setting property it does work. I didn’t have that property set in 4.14 though, and the packaged project worked fine in VR. Is there a proper way to do that in code/blueprint instead of forcing the game to start in VR?

Actually, I was mistaken. All I needed was “stereo on”, which can be done in code via

HMDDevice->EnableStereo(true);

done in blueprint by

Execute Console Command: stereo on

or by setting the project property “Start in VR”

Hey Dustum,
I have activated “stereo on” and now it works like you said.
Thanks !