We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There could be an IllegalArgumentException message for passing an invalid cameraRigType to GVRCameraRig::setCameraRigType().
public void testExpectedAnIllegalArgumentException() { try { GVRCameraRig gvrCameraRig = TestDefaultGVRViewManager.mGVRContext.getMainScene().getMainCameraRig(); gvrCameraRig.setCameraRigType(404); fail(); } catch (IllegalArgumentException e) { assertEquals(e.getMessage(), "IllegalArgumentException for cameraRigType. Types supported: " + "GVRCameraRig.GVRCameraRigType.Free, " + "GVRCameraRig.GVRCameraRigType.Freeze, " + "GVRCameraRig.GVRCameraRigType.OrbitPivot" + "GVRCameraRig.GVRCameraRigType.RollFreeze" + "GVRCameraRig.GVRCameraRigType.YawOnly"); } }
The text was updated successfully, but these errors were encountered:
Yes. Low priority, imho.
Sorry, something went wrong.
Merge pull request Samsung#26 from xcaostagit/release
a8910d3
(b19088) Limit # of threads in gvrf
Planning to close as obsolete in a day or two
Merge pull request Samsung#26 from NolaDonato/vcolor
cf97baa
Vertex color support
thomasflynn
No branches or pull requests
There could be an IllegalArgumentException message for passing an invalid cameraRigType to GVRCameraRig::setCameraRigType().
The text was updated successfully, but these errors were encountered: