├── README.md ├── android ├── AndroidManifest.xml ├── assets │ └── ExampleSceneJoinedTris.g3db ├── build.gradle ├── ic_launcher-web.png ├── libs │ └── vrcamera.jar ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ └── values │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── brummid │ └── vrdemo │ └── AndroidLauncher.java └── core ├── build.gradle ├── libs └── vrcamera.jar └── src └── com └── brummid └── vrdemo └── VRDemo.java /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brummi/VRDemo/HEAD/README.md -------------------------------------------------------------------------------- /android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brummi/VRDemo/HEAD/android/AndroidManifest.xml -------------------------------------------------------------------------------- /android/assets/ExampleSceneJoinedTris.g3db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brummi/VRDemo/HEAD/android/assets/ExampleSceneJoinedTris.g3db -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brummi/VRDemo/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brummi/VRDemo/HEAD/android/ic_launcher-web.png -------------------------------------------------------------------------------- /android/libs/vrcamera.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brummi/VRDemo/HEAD/android/libs/vrcamera.jar -------------------------------------------------------------------------------- /android/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brummi/VRDemo/HEAD/android/proguard-project.txt -------------------------------------------------------------------------------- /android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brummi/VRDemo/HEAD/android/project.properties -------------------------------------------------------------------------------- /android/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brummi/VRDemo/HEAD/android/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brummi/VRDemo/HEAD/android/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brummi/VRDemo/HEAD/android/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brummi/VRDemo/HEAD/android/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brummi/VRDemo/HEAD/android/res/values/strings.xml -------------------------------------------------------------------------------- /android/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brummi/VRDemo/HEAD/android/res/values/styles.xml -------------------------------------------------------------------------------- /android/src/com/brummid/vrdemo/AndroidLauncher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brummi/VRDemo/HEAD/android/src/com/brummid/vrdemo/AndroidLauncher.java -------------------------------------------------------------------------------- /core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brummi/VRDemo/HEAD/core/build.gradle -------------------------------------------------------------------------------- /core/libs/vrcamera.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brummi/VRDemo/HEAD/core/libs/vrcamera.jar -------------------------------------------------------------------------------- /core/src/com/brummid/vrdemo/VRDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brummi/VRDemo/HEAD/core/src/com/brummid/vrdemo/VRDemo.java --------------------------------------------------------------------------------