Skip to content

Commit

Permalink
Merge pull request #335 from Xele02/ARMode
Browse files Browse the repository at this point in the history
Add AR mode back. Fix deco room screenshot save on android
  • Loading branch information
Xele02 authored Jan 1, 2025
2 parents 2af6ec6 + 8ef812c commit 2f473ab
Show file tree
Hide file tree
Showing 237 changed files with 21,932 additions and 161 deletions.
3 changes: 2 additions & 1 deletion Tools/Flatbuffers/generate_unity_reader_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,8 @@ def generate_prop_copy(prefix, prop_info, fb_var, self_var, fb_prop_info):
"MDFCHKPOMAJ" : {"FB_class":"LBAGNFKGHIB"},
"MAPLLKFHCLF" : {"FB_class":"IOOJDNCIHIC"},
"NCFKBGFDBAG" : {"FB_class":"JDKBJLPDAMB"},
"OLLJFONKEKO" : {"FB_class":"OGABIHKHGGD"}
"OLLJFONKEKO" : {"FB_class":"OGABIHKHGGD"},
"LPKFACLGIMO" : {"FB_class":"LPLDAEJONGA"},
}


Expand Down
18 changes: 17 additions & 1 deletion Unity/Assets/Plugins/Android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.UtaMacrossOffline.UtaMacrossOffline" xmlns:tools="http://schemas.android.com/tools" android:installLocation="preferExternal">
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" android:anyDensity="true" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.CAMERA_OPEN_CLOSE_LISTENER" />
<uses-permission android:name="android.permission.SYSTEM_CAMERA" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-feature android:name="android.hardware.camera" android:required="false" />
<uses-feature android:name="android.hardware.camera.any" android:required="false" />
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />
<application android:theme="@style/UnityThemeSelector" android:icon="@mipmap/app_icon" android:label="@string/app_name" android:usesCleartextTraffic="true" android:resizeableActivity="false">
<activity android:name="com.unity3d.player.UnityPlayerActivity" android:label="@string/app_name">
<activity android:name="jp.co.xeen.xeapp.OverrideUnityPlayerNativeActivity" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<meta-data android:name="unityplayer.UnityActivity" android:value="true" />
</activity>
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="com.UtaMacrossOffline.UtaMacrossOffline.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/filepaths"></meta-data>
</provider>
<receiver
android:name='jp.co.xeen.xeapp.LocalNotification$Receiver'
android:process=':remote'>
Expand Down
8 changes: 8 additions & 0 deletions Unity/Assets/Plugins/Android/libs.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions Unity/Assets/Plugins/Android/libs/arm64-v8a.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
33 changes: 33 additions & 0 deletions Unity/Assets/Plugins/Android/libs/arm64-v8a/libsmartar.so.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions Unity/Assets/Plugins/Android/libs/armeabi-v7a.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
111 changes: 111 additions & 0 deletions Unity/Assets/Plugins/Android/libs/armeabi-v7a/libsmartar.so.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Unity/Assets/Plugins/Android/libs/smartar.jar
Binary file not shown.
24 changes: 24 additions & 0 deletions Unity/Assets/Plugins/Android/libs/smartar.jar.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
24 changes: 24 additions & 0 deletions Unity/Assets/Plugins/Android/libs/unsupportedutils.jar.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions Unity/Assets/Plugins/Android/libs/x86.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
25 changes: 25 additions & 0 deletions Unity/Assets/Plugins/Android/libs/x86/libsmartar.so.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions Unity/Assets/Plugins/Android/res/xml.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Unity/Assets/Plugins/Android/res/xml/filepaths.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="unity_persistent_data_path" path="." />
</paths>
7 changes: 7 additions & 0 deletions Unity/Assets/Plugins/Android/res/xml/filepaths.xml.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions Unity/Assets/Plugins/Android/src.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 2f473ab

Please sign in to comment.