Skip to content

Commit 1df7263

Browse files
committed
fixed AR renderer name
1 parent ef803a3 commit 1df7263

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:versionCode="1" android:versionName="1.0" package="">
3+
<uses-sdk android:minSdkVersion="24" android:targetSdkVersion="26"/>
4+
<uses-permission android:name="android.permission.CAMERA"/>
5+
<uses-feature android:name="android.hardware.camera.ar" android:required="true"/>
6+
<uses-feature android:glEsVersion="0x00020000" android:required="true"/>
7+
<application android:allowBackup="false" android:icon="@mipmap/ic_launcher" android:label="" android:theme="@style/ArActivityTheme" android:usesCleartextTraffic="false" tools:ignore="GoogleAppIndexingWarning">
8+
<activity android:configChanges="orientation|screenSize" android:exported="true" android:name=".MainActivity" android:screenOrientation="locked" android:theme="@style/Theme.AppCompat.NoActionBar">
9+
<intent-filter>
10+
<action android:name="android.intent.action.MAIN"/>
11+
<category android:name="android.intent.category.LAUNCHER"/>
12+
</intent-filter>
13+
</activity>
14+
<meta-data android:name="com.google.ar.core" android:value="required"/>
15+
</application>
16+
</manifest>

mode/libraries/ar/examples/Cube/Cube.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import processing.ar.*;
33
PShape cube;
44

55
void setup() {
6-
fullScreen(AUGMENT);
6+
fullScreen(AR);
77
cube = createShape(BOX, 0.25);
88
PAR.planeColor(#BCD4FF);
99
}

mode/libraries/ar/examples/ImportObj/ImportObj.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import processing.ar.*;
33
PShape arObj;
44

55
void setup() {
6-
fullScreen(AUGMENT);
6+
fullScreen(AR);
77

88
// Setting Color of the detected plane - BLUE in this case
99
PAR.planeColor(#BCD4FF);

mode/libraries/ar/examples/Spheres/Spheres.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import processing.ar.*;
33
float angle = 0;
44

55
void setup() {
6-
fullScreen(AUGMENT);
6+
fullScreen(AR);
77
PAR.planeColor(0xB4E7FF);
88
}
99

0 commit comments

Comments
 (0)