Closed vijaytholpadi closed 6 years ago
Code for GVRPanoramaView initialization:
self.panoramaView = [[GVRPanoramaView alloc] init]; self.panoramaView = self;
with
self.panoramaView.enableCardboardButton = YES; self.panoramaView.enableFullscreenButton = YES;
The above code shows only VR/Cardboard button
with only
self.panoramaView.enableFullscreenButton = YES;
The above code shows FullScreen button
How do I get both FullScreen as well as VR/Cardboard button? This is happening in the sample app too.
This is a bug in 0.8.5. It'll be fixed in our next release a couple weeks from now.
Great! Looking forward to it. 👍
GVRView API (that includes GVRPanoramaView) is now deprecated. Please switch to GVRKit. It is also available as a Cocoapod. Take a look at the updated Panorama sample app.
Code for GVRPanoramaView initialization:
with
The above code shows only VR/Cardboard button
with only
The above code shows FullScreen button
How do I get both FullScreen as well as VR/Cardboard button? This is happening in the sample app too.