Questions tagged [rajawalivr]

24 questions
4
votes
3 answers

How to use RajawaliVR or Rajawali to play a 360 Video

I am having a hard time to figure out how to use the Rajawali to play a 360 video. In order to achieve this, I tried every solution I could find in the Internet, but I failed. Firstly, I used the RajawaliCardboard, and let the MainActivity extend…
3
votes
1 answer

360 panorama viewer with rajawali + VR howto change FieldOfView

I am trying to create a 360 image viewer using rajawali + vr (Cardboard toolkit). When i disable the VR-Mode on the CardboardView the changes i made on Field of View property in the renderer has no effect. in the Google Cardboard docs i found the…
Keiner
  • 31
  • 3
3
votes
0 answers

CardBoard: In 360 video, how can I use both gesture and device movement together?

I have been stuck on this issue for a week. Currently, I'm able to control it with gesture using Matrix4.setLookAt() function. I'm able to control it by moving around the device. However, I tried to combined both gesture and device movement…
3
votes
2 answers

How to debug internal crash of GLSurfaceView?

I'm developing a VR video viewer using Android Cardboard SDK and RajawaliVR (https://github.com/Rajawali/RajawaliVR) On some devices I have this crash when returning from sleep (others just show black screen): java.lang.NullPointerException: Attempt…
RCB
  • 2,253
  • 2
  • 25
  • 49
2
votes
0 answers

Serialize and save 3d object with Rajawali

I try to serialize and save (local) the 3d object with rajawali, I try with compile version ; org.rajawali3d:rajawali:1.0.186-SNAPSHOT@aar and org.rajawali3d:rajawali:1.1.970 but I haven't any access to "ExportType" I try to change "ExportType"…
2
votes
1 answer

How to start using rajawali vr

I'm using Android Studio. I want to use Rajawali library, especially the vr package. I add the following line to build.gradle as described in GitHub. compile 'org.rajawali3d:rajawali:1.0.325@aar' Then I am able to use some classes in Rajawali…
Jeffrey Chen
  • 1,777
  • 1
  • 18
  • 29
2
votes
1 answer

Android VR player

I am little new to Virtual Reality concept in android and also developed one sample demo with Rajawali VR library to show video side by side and watch it with CardBoard. I have used this link which also help for Head Tracking, but I want to show…
2
votes
0 answers

How can I Create A Reticle in center view using RajawaliVR

How can I create a reticle using the Cardboard SDK for Android Studio and RajawaliVR 3D Renderer? I search through out many websites and the Rajawali wiki on github to try and find a solution that would keep a 3D object in the center of the users…
Thunderstick
  • 1,193
  • 13
  • 12
2
votes
1 answer

Move camera around using touch event in CardBoard and Rajawali VR Android

Currently, I am working on VR application for android that using google CardBoard and Rajawali to play the 360 video. The sensor is working well, but I cannot use touch to drag the scene or camera around correctly. Is there any way to enable touch…
Sowattana Sigen
  • 202
  • 2
  • 10
2
votes
1 answer

How to know if an 3DObject is Looked at in VR

I am using RajawaliVR library. I have added a plane and applied texture to it. Know I want to know when my object is being looked at so that I can trigger some even. Is there anything in RajawaliVR or google cardboad that can help me achieve this. …
Subir Kumar Sao
  • 8,171
  • 3
  • 26
  • 47
1
vote
0 answers

How to get x,y and z from camera view while using rajawali framework android

I am using rajawali framework for rendering 360 image and over that i am adding on object at particular x,y and z coordinate. So i want to get x,y and z when i move my camera so how i can get the coordinate of camera. Below is my code to render 360…
Nikhil Sharma
  • 593
  • 7
  • 23
1
vote
0 answers

Preserving textures not visible in a Rajawali scene

I've a working 360 video viewer built using Rajawali/Google VR. I'm trying to modify it to display a texture which is the output of a non Rajawali GL program, rather than displaying the StreamingTexture from the video directly (i.e. within…
moe
  • 452
  • 2
  • 10
1
vote
0 answers

Combining gestures with Cardboard navigation

I have a Rajawali Cardboard renderer (texture painted on a sphere, similar to the example), and it works totally fine with sensor-based navigation. I'm also getting touch input, and accumulating in two variables the total angular horizontal and…
moe
  • 452
  • 2
  • 10
1
vote
1 answer

How to dynamically change the image with animation using RajawaliVR

I am able to change image dynamically using this code : public void changeImage() { Log.d("debug1", "" + getCurrentScene().getNumChildren()); ArrayList objectList = getCurrentScene().getChildrenCopy(); Material…
Biraj Zalavadia
  • 28,348
  • 10
  • 61
  • 77
1
vote
0 answers

RajawaliVR how to draw Crosshair?

I have started using RajawaliVR framework. I am able to display photo sphere images and able to change dynamically on click. But now I want to change image without click. But how ? I have rough idea to do this but stuck at implementation. I have…
1
2