How to disable the recording feature?
Hi, I'm building an app from Unity 2020 and I would not want the app to be able to record by the user. Currently, any application that you run directly on the headset (Oculus Quest/Oculus Go) has an option to record a video or take a photo if you open up the Home menu/Pause menu. Is there a setting or code that I can include in my Unity project to disable the ability of the user to record just for the application I'm building? Thank you! Regards, Faizal4.6KViews1like4CommentsDisabling OVRPlugin doesn't work properly
I'm working on a project for both oculus (OculusGo and GearVR) and cardboard platforms. When I build for oculus paltform I can run the app with no problems. When I build for cardboard I have no problem, but after installing, the icon doesn't appear in the Android app page, but only in the Cardboard application. In addition, if I run it from there it starts as GearVR app, showing the message which says to insert the smartphone in the GearVR. I'm using Unity 2019.2.14f1 now, but this problem appears when update OVR integration SDK from v1.39 to any newer version (1.40, 1.41, 1.42, 1.43), regardless the unity version. I didn't change any settings, just update OVR integration SDK from asset store, importing just Platform and VR folders, since I'm not using other features. Before importing the SDK I first remove the old one. My settings for Cardboard build are the following: - OVR plugins disabled - Oculus -> Tools -> "User required project settings" is unchecked - XR settings -> "Virtual reality SDKs" contains just Cardboard Are there any setting I'm missing?929Views0likes0CommentsOVRPlayerController - disable Running?
Hi, I'm looking through the OVRPlayerController script to disable running with left Touch trigger. I managed to do it easily for Shift keys here, by changing moveInfluence from 2.0f to 1.0f: // Run! if (dpad_move || Input.GetKey(KeyCode.LeftShift) || Input.GetKey(KeyCode.RightShift)) moveInfluence *= 1.0f; Technically it is still running, but it doesn't matter if it's x1.0 speed. But this doesn't change the left Touch trigger running - it still turns on run mode. How can I disable trigger running? Thanks!554Views0likes0Comments