├── .gitignore ├── README.md ├── android ├── .gitignore ├── .idea │ ├── caches │ │ ├── build_file_checksums.ser │ │ └── gradle_models.ser │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── pieces │ │ │ └── asyourlike │ │ │ └── MainActivity.java │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── myunitylib │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ ├── src │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── jing │ │ │ │ ├── CustomActivity.java │ │ │ │ ├── CustomApplication.java │ │ │ │ └── unity │ │ │ │ └── Unity2Android.java │ │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ └── tempLibs │ │ └── classes.jar └── settings.gradle └── unity ├── Assets ├── Logo.meta ├── Logo │ ├── head_icon_rounded.png │ ├── head_icon_rounded.png.meta │ ├── pieceS_icon_corner.png │ └── pieceS_icon_corner.png.meta ├── Main.cs ├── Main.cs.meta ├── Main.unity ├── Main.unity.meta ├── Plugins.meta └── Plugins │ ├── Android.meta │ └── Android │ ├── AndroidManifest.xml │ ├── AndroidManifest.xml.meta │ ├── myunitylib-debug.aar │ └── myunitylib-debug.aar.meta ├── Logs └── Packages-Update.log ├── Packages └── manifest.json └── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset └── VFXManager.asset /.gitignore: -------------------------------------------------------------------------------- 1 | [Ll]ibrary/ 2 | [Tt]emp/ 3 | [Oo]bj/ 4 | [Bb]uild/ 5 | [Bb]uilds/ 6 | Assets/AssetStoreTools* 7 | 8 | # Visual Studio cache directory 9 | .vs/ 10 | 11 | # Autogenerated VS/MD/Consulo solution and project files 12 | ExportedObj/ 13 | .consulo/ 14 | *.csproj 15 | *.unityproj 16 | *.sln 17 | *.suo 18 | *.tmp 19 | *.user 20 | *.userprefs 21 | *.pidb 22 | *.booproj 23 | *.svd 24 | *.pdb 25 | *.opendb 26 | 27 | # Unity3D generated meta files 28 | *.pidb.meta 29 | *.pdb.meta 30 | 31 | # Unity3D Generated File On Crash Reports 32 | sysinfo.txt 33 | 34 | # Builds 35 | *.apk 36 | *.unitypackage 37 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## 引言 2 | > 在写了[Unity与Android交互方案优化版](https://www.jianshu.com/p/86b275da600e 3 | )这篇文章得到了大家的认可,很多大佬评论说该方案用起来还可以。不过也有很多人咨询,如果需求要在原生的Activity里实现一些回调的重写,或者是某些SDK需要自定义的Activity开发时,该怎么做。其实实现起来还是比较简单的,这里也提供一个方案,同样是减少了那些繁琐的操作步骤,尽量简单的让您快速实现需求。 4 | 5 | ## 本文适用对象 6 | * 有一定的Unity开发经验,会使用Unity 7 | * 有一定的Android开发经验,会使用AndroidStudio,会看查看调试信息 8 | * 本文的所有内容基于[Unity与Android交互方案优化版](https://www.jianshu.com/p/86b275da600e 9 | )提供的方案之上,为其扩展、加强 10 | 11 | ## 方案优势 12 | * 需要引用unity下的class.jar,但是该jar并不会被打包出来,所以没有网上其他方案的那些繁琐的解压、拷贝等步骤。 13 | * 需要在Unity的/Plugins/Android下放置AndroidManifest.xml文件,因为必须要描述自定义的Activity等信息。 14 | * Unity打包时PackageName不依赖于引用文件 15 | * 发布简单,只需要导出arr并直接拷贝到/Plugins/Android目录下即可使用,不用对文件做任何修改 16 | 17 | 18 | ## 文章DEMO对应的IDE版本 19 | * AndroidStudio 3.4.1 (亲测通过) 20 | * Unity 2018.4.0 (亲测通过) 21 | 22 | # 流程 23 | 24 | > 因为项目是基于[Unity与Android交互方案优化版](https://www.jianshu.com/p/86b275da600e 25 | )扩展而来的,所以我们这里省略掉前戏,而是直接开始高潮部分。 26 | 27 | ### Android部分 28 | 29 | ##### 放置unity的class.jar 30 | 首先我们拷贝unity安装目录下针对的class.jar到AndroidStudio中库项目下的tempLibs目录中。这里我用的是Unity 2018.4.0版本,拷贝的文件是"[Unity安装路径]\Unity\Editor\Data\PlaybackEngines\AndroidPlayer\Variations\mono\Release\Classes\class.jar" 31 | 32 | 一般来说说Android开发时,依赖的库文件都是放到libs目录中的,但是该目录中的内容默认是打包时会一起编译进包的,所以我们自己建立一个tempLibs(名字你随便取)目录,来放这种不参与编译的jar。 33 | 34 | ##### 修改build.gradle文件 35 | 36 | ``` 37 | 这一个地方很关键,请仔细阅读 38 | ``` 39 | 40 | 修改build.gradle文件,的dependencies部分,添加class.jar的引用,这里切记用compileOnly,这样打包aar的时候,该class.jar不会被打包出去。 41 | 42 | ``` 43 | dependencies { 44 | implementation fileTree(include: ['*.jar'], dir: 'libs') 45 | implementation 'com.android.support:appcompat-v7:26.1.0' 46 | compileOnly files('tempLibs/classes.jar') //使用compileOnly指定该jar只是开发时引用,编译时不导出 47 | } 48 | ``` 49 | 50 | ##### 写一个自定义的Application 51 | 52 | 我们创建一个CustomApplication文件,继承自Application。为了方便测试,我们重写onCreate方法 53 | ``` 54 | import android.app.Application; 55 | import android.util.Log; 56 | public class CustomApplication extends Application { 57 | @Override 58 | public void onCreate() { 59 | super.onCreate(); 60 | Log.i("unity_with_android_plus", "老子就是自定义的Application"); 61 | } 62 | } 63 | ``` 64 | 65 | ##### 写一个自定义的Activity 66 | 67 | 我们创建一个CustomActivity文件,继承自UnityPlayerActivity。为了方便测试,我们重写onCreate方法 68 | 69 | >这就是为什么要引入class.jar的原因,因为我们要继承 "com.unity3d.player.UnityPlayerActivity" 这个类 70 | 71 | ``` 72 | import android.os.Bundle; 73 | import android.util.Log; 74 | import com.unity3d.player.UnityPlayerActivity; 75 | public class CustomActivity extends UnityPlayerActivity { 76 | @Override 77 | protected void onCreate(Bundle bundle) { 78 | super.onCreate(bundle); 79 | Log.i("unity_with_android_plus", "老子就是自定义的Activity"); 80 | } 81 | } 82 | ``` 83 | 84 | ### Unity部分 85 | 86 | ##### 编写AndroidManifest.xml文件 87 | 88 | 我们在Assets/Plugins/Android目录下,新建一个文件AndroidManifest.xml。内容如下 89 | 90 | ``` 91 | 93 | 96 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | ``` 109 | 110 | 在这里,可以看到我们明确指出了Application使用的是我们自定义的CustomApplication,Activity使用的是CustomActivity。至于其它的参数的含义,请各位大佬自行百度android知识。 111 | 112 | ### 测试 113 | 114 | 我们配置一下BuildSettings,确保勾上Development Build。然后打包APK开始测试。 115 | 116 | 让程序运行起来,我们可以在AndroidStudio的Logcat里看到我们自定义的Application以及Activity已经起作用了,并打印了日志信息。 117 | 118 | ![android_logcat_info.png](https://upload-images.jianshu.io/upload_images/9825434-625ddf32722f0f75.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240) 119 | 120 | ## 结束语 121 | 基本上该文章配合之前的文章,可以解决我们在Unity和Android交互开发中遇到的所有问题,为所欲为了。如果后续还有其它的更好的方案,我会再更新。 122 | -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /android/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/unity_with_android_plus/15ef76e949fba005a457e48ddb34c23eb325c441/android/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /android/.idea/caches/gradle_models.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/unity_with_android_plus/15ef76e949fba005a457e48ddb34c23eb325c441/android/.idea/caches/gradle_models.ser -------------------------------------------------------------------------------- /android/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /android/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 22 | -------------------------------------------------------------------------------- /android/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | 26 | 27 | 28 | 29 | 30 | 31 | 33 | -------------------------------------------------------------------------------- /android/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /android/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /android/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 26 5 | defaultConfig { 6 | applicationId "com.pieces.asyourlike" 7 | minSdkVersion 15 8 | targetSdkVersion 26 9 | versionCode 1 10 | versionName "1.0" 11 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 12 | } 13 | buildTypes { 14 | release { 15 | minifyEnabled false 16 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 17 | } 18 | } 19 | } 20 | 21 | dependencies { 22 | implementation fileTree(dir: 'libs', include: ['*.jar']) 23 | implementation 'com.android.support:appcompat-v7:26.1.0' 24 | implementation 'com.android.support.constraint:constraint-layout:1.0.2' 25 | testImplementation 'junit:junit:4.12' 26 | androidTestImplementation 'com.android.support.test:runner:1.0.1' 27 | androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' 28 | } 29 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/pieces/asyourlike/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.pieces.asyourlike; 2 | 3 | import android.support.v7.app.AppCompatActivity; 4 | import android.os.Bundle; 5 | 6 | public class MainActivity extends AppCompatActivity { 7 | 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | setContentView(R.layout.activity_main); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 12 | 13 | 19 | 22 | 25 | 26 | 27 | 28 | 34 | 35 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | 15 | 20 | 25 | 30 | 35 | 40 | 45 | 50 | 55 | 60 | 65 | 70 | 75 | 80 | 85 | 90 | 95 | 100 | 105 | 110 | 115 | 120 | 125 | 130 | 135 | 140 | 145 | 150 | 155 | 160 | 165 | 170 | 171 | -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/unity_with_android_plus/15ef76e949fba005a457e48ddb34c23eb325c441/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/unity_with_android_plus/15ef76e949fba005a457e48ddb34c23eb325c441/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/unity_with_android_plus/15ef76e949fba005a457e48ddb34c23eb325c441/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/unity_with_android_plus/15ef76e949fba005a457e48ddb34c23eb325c441/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/unity_with_android_plus/15ef76e949fba005a457e48ddb34c23eb325c441/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/unity_with_android_plus/15ef76e949fba005a457e48ddb34c23eb325c441/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/unity_with_android_plus/15ef76e949fba005a457e48ddb34c23eb325c441/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/unity_with_android_plus/15ef76e949fba005a457e48ddb34c23eb325c441/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/unity_with_android_plus/15ef76e949fba005a457e48ddb34c23eb325c441/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/unity_with_android_plus/15ef76e949fba005a457e48ddb34c23eb325c441/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | AsYourLike 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | 5 | repositories { 6 | google() 7 | jcenter() 8 | } 9 | dependencies { 10 | classpath 'com.android.tools.build:gradle:3.4.1' 11 | 12 | 13 | // NOTE: Do not place your application dependencies here; they belong 14 | // in the individual module build.gradle files 15 | } 16 | } 17 | 18 | allprojects { 19 | repositories { 20 | google() 21 | jcenter() 22 | } 23 | } 24 | 25 | task clean(type: Delete) { 26 | delete rootProject.buildDir 27 | } 28 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/unity_with_android_plus/15ef76e949fba005a457e48ddb34c23eb325c441/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Nov 08 16:55:08 CST 2019 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip 7 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # Attempt to set APP_HOME 46 | # Resolve links: $0 may be a link 47 | PRG="$0" 48 | # Need this for relative symlinks. 49 | while [ -h "$PRG" ] ; do 50 | ls=`ls -ld "$PRG"` 51 | link=`expr "$ls" : '.*-> \(.*\)$'` 52 | if expr "$link" : '/.*' > /dev/null; then 53 | PRG="$link" 54 | else 55 | PRG=`dirname "$PRG"`"/$link" 56 | fi 57 | done 58 | SAVED="`pwd`" 59 | cd "`dirname \"$PRG\"`/" >/dev/null 60 | APP_HOME="`pwd -P`" 61 | cd "$SAVED" >/dev/null 62 | 63 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 64 | 65 | # Determine the Java command to use to start the JVM. 66 | if [ -n "$JAVA_HOME" ] ; then 67 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 68 | # IBM's JDK on AIX uses strange locations for the executables 69 | JAVACMD="$JAVA_HOME/jre/sh/java" 70 | else 71 | JAVACMD="$JAVA_HOME/bin/java" 72 | fi 73 | if [ ! -x "$JAVACMD" ] ; then 74 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 75 | 76 | Please set the JAVA_HOME variable in your environment to match the 77 | location of your Java installation." 78 | fi 79 | else 80 | JAVACMD="java" 81 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 82 | 83 | Please set the JAVA_HOME variable in your environment to match the 84 | location of your Java installation." 85 | fi 86 | 87 | # Increase the maximum file descriptors if we can. 88 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 89 | MAX_FD_LIMIT=`ulimit -H -n` 90 | if [ $? -eq 0 ] ; then 91 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 92 | MAX_FD="$MAX_FD_LIMIT" 93 | fi 94 | ulimit -n $MAX_FD 95 | if [ $? -ne 0 ] ; then 96 | warn "Could not set maximum file descriptor limit: $MAX_FD" 97 | fi 98 | else 99 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 100 | fi 101 | fi 102 | 103 | # For Darwin, add options to specify how the application appears in the dock 104 | if $darwin; then 105 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 106 | fi 107 | 108 | # For Cygwin, switch paths to Windows format before running java 109 | if $cygwin ; then 110 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 111 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 112 | JAVACMD=`cygpath --unix "$JAVACMD"` 113 | 114 | # We build the pattern for arguments to be converted via cygpath 115 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 116 | SEP="" 117 | for dir in $ROOTDIRSRAW ; do 118 | ROOTDIRS="$ROOTDIRS$SEP$dir" 119 | SEP="|" 120 | done 121 | OURCYGPATTERN="(^($ROOTDIRS))" 122 | # Add a user-defined pattern to the cygpath arguments 123 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 124 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 125 | fi 126 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 127 | i=0 128 | for arg in "$@" ; do 129 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 130 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 131 | 132 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 133 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 134 | else 135 | eval `echo args$i`="\"$arg\"" 136 | fi 137 | i=$((i+1)) 138 | done 139 | case $i in 140 | (0) set -- ;; 141 | (1) set -- "$args0" ;; 142 | (2) set -- "$args0" "$args1" ;; 143 | (3) set -- "$args0" "$args1" "$args2" ;; 144 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 145 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 146 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 147 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 148 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 149 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 150 | esac 151 | fi 152 | 153 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 154 | function splitJvmOpts() { 155 | JVM_OPTS=("$@") 156 | } 157 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 158 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 159 | 160 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 161 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /android/myunitylib/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/myunitylib/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | 3 | android { 4 | compileSdkVersion 26 5 | 6 | 7 | 8 | defaultConfig { 9 | minSdkVersion 15 10 | targetSdkVersion 26 11 | versionCode 1 12 | versionName "1.0" 13 | 14 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 15 | 16 | } 17 | 18 | buildTypes { 19 | release { 20 | minifyEnabled false 21 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 22 | } 23 | } 24 | 25 | } 26 | 27 | dependencies { 28 | implementation fileTree(include: ['*.jar'], dir: 'libs') 29 | implementation 'com.android.support:appcompat-v7:26.1.0' 30 | compileOnly files('tempLibs/classes.jar') //使用compileOnly指定该jar只是开发时引用,编译时不导出 31 | } 32 | -------------------------------------------------------------------------------- /android/myunitylib/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | -------------------------------------------------------------------------------- /android/myunitylib/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /android/myunitylib/src/main/java/com/jing/CustomActivity.java: -------------------------------------------------------------------------------- 1 | package com.jing; 2 | 3 | import android.os.Bundle; 4 | import android.util.Log; 5 | import com.unity3d.player.UnityPlayerActivity; 6 | public class CustomActivity extends UnityPlayerActivity { 7 | @Override 8 | protected void onCreate(Bundle bundle) { 9 | super.onCreate(bundle); 10 | Log.i("unity_with_android_plus", "老子就是自定义的Activity"); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /android/myunitylib/src/main/java/com/jing/CustomApplication.java: -------------------------------------------------------------------------------- 1 | package com.jing; 2 | 3 | import android.app.Application; 4 | import android.util.Log; 5 | 6 | public class CustomApplication extends Application { 7 | @Override 8 | public void onCreate() { 9 | super.onCreate(); 10 | Log.i("unity_with_android_plus", "老子就是自定义的Application"); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /android/myunitylib/src/main/java/com/jing/unity/Unity2Android.java: -------------------------------------------------------------------------------- 1 | package com.jing.unity; 2 | 3 | import android.app.Activity; 4 | import android.widget.Toast; 5 | 6 | import java.lang.reflect.InvocationTargetException; 7 | import java.lang.reflect.Method; 8 | 9 | /** 10 | * Created by Jing on 2018-1-18. 11 | */ 12 | public class Unity2Android { 13 | 14 | /** 15 | * unity项目启动时的的上下文 16 | */ 17 | private Activity _unityActivity; 18 | /** 19 | * 获取unity项目的上下文 20 | * @return 21 | */ 22 | Activity getActivity(){ 23 | if(null == _unityActivity) { 24 | try { 25 | Class classtype = Class.forName("com.unity3d.player.UnityPlayer"); 26 | Activity activity = (Activity) classtype.getDeclaredField("currentActivity").get(classtype); 27 | _unityActivity = activity; 28 | } catch (ClassNotFoundException e) { 29 | 30 | } catch (IllegalAccessException e) { 31 | 32 | } catch (NoSuchFieldException e) { 33 | 34 | } 35 | } 36 | return _unityActivity; 37 | } 38 | 39 | /** 40 | * 调用Unity的方法 41 | * @param gameObjectName 调用的GameObject的名称 42 | * @param functionName 方法名 43 | * @param args 参数 44 | * @return 调用是否成功 45 | */ 46 | boolean callUnity(String gameObjectName, String functionName, String args){ 47 | try { 48 | Class classtype = Class.forName("com.unity3d.player.UnityPlayer"); 49 | Method method =classtype.getMethod("UnitySendMessage", String.class,String.class,String.class); 50 | method.invoke(classtype,gameObjectName,functionName,args); 51 | return true; 52 | } catch (ClassNotFoundException e) { 53 | 54 | } catch (NoSuchMethodException e) { 55 | 56 | } catch (IllegalAccessException e) { 57 | 58 | } catch (InvocationTargetException e) { 59 | 60 | } 61 | return false; 62 | } 63 | 64 | /** 65 | * Toast显示unity发送过来的内容 66 | * @param content 消息的内容 67 | * @return 调用是否成功 68 | */ 69 | public boolean showToast(String content){ 70 | Toast.makeText(getActivity(),content,Toast.LENGTH_SHORT).show(); 71 | //这里是主动调用Unity中的方法,该方法之后unity部分会讲到 72 | callUnity("Main Camera","FromAndroid", "hello unity i'm android"); 73 | return true; 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /android/myunitylib/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MyUnityLib 3 | 4 | -------------------------------------------------------------------------------- /android/myunitylib/tempLibs/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/unity_with_android_plus/15ef76e949fba005a457e48ddb34c23eb325c441/android/myunitylib/tempLibs/classes.jar -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':myunitylib' 2 | -------------------------------------------------------------------------------- /unity/Assets/Logo.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f802d8be0a93bf244b928a52ff99fddc 3 | folderAsset: yes 4 | timeCreated: 1516291216 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /unity/Assets/Logo/head_icon_rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/unity_with_android_plus/15ef76e949fba005a457e48ddb34c23eb325c441/unity/Assets/Logo/head_icon_rounded.png -------------------------------------------------------------------------------- /unity/Assets/Logo/head_icon_rounded.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2774ece821240e94ca5778aa00ef15e8 3 | timeCreated: 1516291206 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | externalObjects: {} 8 | serializedVersion: 4 9 | mipmaps: 10 | mipMapMode: 0 11 | enableMipMap: 0 12 | sRGBTexture: 1 13 | linearTexture: 0 14 | fadeOut: 0 15 | borderMipMap: 0 16 | mipMapsPreserveCoverage: 0 17 | alphaTestReferenceValue: 0.5 18 | mipMapFadeDistanceStart: 1 19 | mipMapFadeDistanceEnd: 3 20 | bumpmap: 21 | convertToNormalMap: 0 22 | externalNormalMap: 0 23 | heightScale: 0.25 24 | normalMapFilter: 0 25 | isReadable: 0 26 | grayScaleToAlpha: 0 27 | generateCubemap: 6 28 | cubemapConvolution: 0 29 | seamlessCubemap: 0 30 | textureFormat: 1 31 | maxTextureSize: 2048 32 | textureSettings: 33 | serializedVersion: 2 34 | filterMode: -1 35 | aniso: -1 36 | mipBias: -1 37 | wrapU: 1 38 | wrapV: 1 39 | wrapW: 1 40 | nPOTScale: 0 41 | lightmap: 0 42 | compressionQuality: 50 43 | spriteMode: 1 44 | spriteExtrude: 1 45 | spriteMeshType: 1 46 | alignment: 0 47 | spritePivot: {x: 0.5, y: 0.5} 48 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 49 | spritePixelsToUnits: 100 50 | alphaUsage: 1 51 | alphaIsTransparency: 1 52 | spriteTessellationDetail: -1 53 | textureType: 8 54 | textureShape: 1 55 | maxTextureSizeSet: 0 56 | compressionQualitySet: 0 57 | textureFormatSet: 0 58 | platformSettings: 59 | - buildTarget: DefaultTexturePlatform 60 | maxTextureSize: 2048 61 | resizeAlgorithm: 0 62 | textureFormat: -1 63 | textureCompression: 1 64 | compressionQuality: 50 65 | crunchedCompression: 0 66 | allowsAlphaSplitting: 0 67 | overridden: 0 68 | spriteSheet: 69 | serializedVersion: 2 70 | sprites: [] 71 | outline: [] 72 | physicsShape: [] 73 | spritePackingTag: 74 | userData: 75 | assetBundleName: 76 | assetBundleVariant: 77 | -------------------------------------------------------------------------------- /unity/Assets/Logo/pieceS_icon_corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/unity_with_android_plus/15ef76e949fba005a457e48ddb34c23eb325c441/unity/Assets/Logo/pieceS_icon_corner.png -------------------------------------------------------------------------------- /unity/Assets/Logo/pieceS_icon_corner.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51a41cff88d1d1c4e873cba27c7ffc3b 3 | timeCreated: 1516291174 4 | licenseType: Free 5 | TextureImporter: 6 | fileIDToRecycleName: {} 7 | externalObjects: {} 8 | serializedVersion: 4 9 | mipmaps: 10 | mipMapMode: 0 11 | enableMipMap: 0 12 | sRGBTexture: 1 13 | linearTexture: 0 14 | fadeOut: 0 15 | borderMipMap: 0 16 | mipMapsPreserveCoverage: 0 17 | alphaTestReferenceValue: 0.5 18 | mipMapFadeDistanceStart: 1 19 | mipMapFadeDistanceEnd: 3 20 | bumpmap: 21 | convertToNormalMap: 0 22 | externalNormalMap: 0 23 | heightScale: 0.25 24 | normalMapFilter: 0 25 | isReadable: 0 26 | grayScaleToAlpha: 0 27 | generateCubemap: 6 28 | cubemapConvolution: 0 29 | seamlessCubemap: 0 30 | textureFormat: 1 31 | maxTextureSize: 2048 32 | textureSettings: 33 | serializedVersion: 2 34 | filterMode: -1 35 | aniso: -1 36 | mipBias: -1 37 | wrapU: 1 38 | wrapV: 1 39 | wrapW: 1 40 | nPOTScale: 0 41 | lightmap: 0 42 | compressionQuality: 50 43 | spriteMode: 1 44 | spriteExtrude: 1 45 | spriteMeshType: 1 46 | alignment: 0 47 | spritePivot: {x: 0.5, y: 0.5} 48 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 49 | spritePixelsToUnits: 100 50 | alphaUsage: 1 51 | alphaIsTransparency: 1 52 | spriteTessellationDetail: -1 53 | textureType: 8 54 | textureShape: 1 55 | maxTextureSizeSet: 0 56 | compressionQualitySet: 0 57 | textureFormatSet: 0 58 | platformSettings: 59 | - buildTarget: DefaultTexturePlatform 60 | maxTextureSize: 2048 61 | resizeAlgorithm: 0 62 | textureFormat: -1 63 | textureCompression: 1 64 | compressionQuality: 50 65 | crunchedCompression: 0 66 | allowsAlphaSplitting: 0 67 | overridden: 0 68 | spriteSheet: 69 | serializedVersion: 2 70 | sprites: [] 71 | outline: [] 72 | physicsShape: [] 73 | spritePackingTag: 74 | userData: 75 | assetBundleName: 76 | assetBundleVariant: 77 | -------------------------------------------------------------------------------- /unity/Assets/Main.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.UI; 3 | 4 | public class Main : MonoBehaviour { 5 | 6 | /// 7 | /// 场景上的文本框用来显示android发送过来的内容 8 | /// 9 | public Text text; 10 | 11 | /// 12 | /// android原生代码对象 13 | /// 14 | AndroidJavaObject _ajc; 15 | 16 | void Start () { 17 | //通过该API来实例化导入的arr中对应的类 18 | _ajc = new AndroidJavaObject("com.jing.unity.Unity2Android"); 19 | } 20 | 21 | void Update () { 22 | 23 | } 24 | 25 | /// 26 | /// 场景上按点击时触发该方法 27 | /// 28 | public void OnBtnClick() 29 | { 30 | //通过API来调用原生代码的方法 31 | bool success = _ajc.Call("showToast","this is unity"); 32 | if(true == success) 33 | { 34 | //请求成功 35 | } 36 | } 37 | 38 | /// 39 | /// 原生层通过该方法传回信息 40 | /// 41 | /// 42 | public void FromAndroid(string content) 43 | { 44 | text.text = content; 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /unity/Assets/Main.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc4c3fef97a722e4685acc7cbaf51398 3 | timeCreated: 1516288912 4 | licenseType: Free 5 | MonoImporter: 6 | externalObjects: {} 7 | serializedVersion: 2 8 | defaultReferences: [] 9 | executionOrder: 0 10 | icon: {instanceID: 0} 11 | userData: 12 | assetBundleName: 13 | assetBundleVariant: 14 | -------------------------------------------------------------------------------- /unity/Assets/Main.unity: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!29 &1 4 | OcclusionCullingSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_OcclusionBakeSettings: 8 | smallestOccluder: 5 9 | smallestHole: 0.25 10 | backfaceThreshold: 100 11 | m_SceneGUID: 00000000000000000000000000000000 12 | m_OcclusionCullingData: {fileID: 0} 13 | --- !u!104 &2 14 | RenderSettings: 15 | m_ObjectHideFlags: 0 16 | serializedVersion: 8 17 | m_Fog: 0 18 | m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 19 | m_FogMode: 3 20 | m_FogDensity: 0.01 21 | m_LinearFogStart: 0 22 | m_LinearFogEnd: 300 23 | m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} 24 | m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} 25 | m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} 26 | m_AmbientIntensity: 1 27 | m_AmbientMode: 3 28 | m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} 29 | m_SkyboxMaterial: {fileID: 0} 30 | m_HaloStrength: 0.5 31 | m_FlareStrength: 1 32 | m_FlareFadeSpeed: 3 33 | m_HaloTexture: {fileID: 0} 34 | m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} 35 | m_DefaultReflectionMode: 0 36 | m_DefaultReflectionResolution: 128 37 | m_ReflectionBounces: 1 38 | m_ReflectionIntensity: 1 39 | m_CustomReflection: {fileID: 0} 40 | m_Sun: {fileID: 0} 41 | m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} 42 | --- !u!157 &3 43 | LightmapSettings: 44 | m_ObjectHideFlags: 0 45 | serializedVersion: 11 46 | m_GIWorkflowMode: 1 47 | m_GISettings: 48 | serializedVersion: 2 49 | m_BounceScale: 1 50 | m_IndirectOutputScale: 1 51 | m_AlbedoBoost: 1 52 | m_TemporalCoherenceThreshold: 1 53 | m_EnvironmentLightingMode: 0 54 | m_EnableBakedLightmaps: 0 55 | m_EnableRealtimeLightmaps: 0 56 | m_LightmapEditorSettings: 57 | serializedVersion: 9 58 | m_Resolution: 2 59 | m_BakeResolution: 40 60 | m_TextureWidth: 1024 61 | m_TextureHeight: 1024 62 | m_AO: 0 63 | m_AOMaxDistance: 1 64 | m_CompAOExponent: 1 65 | m_CompAOExponentDirect: 0 66 | m_Padding: 2 67 | m_LightmapParameters: {fileID: 0} 68 | m_LightmapsBakeMode: 1 69 | m_TextureCompression: 1 70 | m_FinalGather: 0 71 | m_FinalGatherFiltering: 1 72 | m_FinalGatherRayCount: 256 73 | m_ReflectionCompression: 2 74 | m_MixedBakeMode: 2 75 | m_BakeBackend: 0 76 | m_PVRSampling: 1 77 | m_PVRDirectSampleCount: 32 78 | m_PVRSampleCount: 500 79 | m_PVRBounces: 2 80 | m_PVRFilterTypeDirect: 0 81 | m_PVRFilterTypeIndirect: 0 82 | m_PVRFilterTypeAO: 0 83 | m_PVRFilteringMode: 1 84 | m_PVRCulling: 1 85 | m_PVRFilteringGaussRadiusDirect: 1 86 | m_PVRFilteringGaussRadiusIndirect: 5 87 | m_PVRFilteringGaussRadiusAO: 2 88 | m_PVRFilteringAtrousPositionSigmaDirect: 0.5 89 | m_PVRFilteringAtrousPositionSigmaIndirect: 2 90 | m_PVRFilteringAtrousPositionSigmaAO: 1 91 | m_LightingDataAsset: {fileID: 0} 92 | m_UseShadowmask: 1 93 | --- !u!196 &4 94 | NavMeshSettings: 95 | serializedVersion: 2 96 | m_ObjectHideFlags: 0 97 | m_BuildSettings: 98 | serializedVersion: 2 99 | agentTypeID: 0 100 | agentRadius: 0.5 101 | agentHeight: 2 102 | agentSlope: 45 103 | agentClimb: 0.4 104 | ledgeDropHeight: 0 105 | maxJumpAcrossDistance: 0 106 | minRegionArea: 2 107 | manualCellSize: 0 108 | cellSize: 0.16666667 109 | manualTileSize: 0 110 | tileSize: 256 111 | accuratePlacement: 0 112 | debug: 113 | m_Flags: 0 114 | m_NavMeshData: {fileID: 0} 115 | --- !u!1 &349892225 116 | GameObject: 117 | m_ObjectHideFlags: 0 118 | m_PrefabParentObject: {fileID: 0} 119 | m_PrefabInternal: {fileID: 0} 120 | serializedVersion: 5 121 | m_Component: 122 | - component: {fileID: 349892228} 123 | - component: {fileID: 349892227} 124 | - component: {fileID: 349892226} 125 | m_Layer: 0 126 | m_Name: EventSystem 127 | m_TagString: Untagged 128 | m_Icon: {fileID: 0} 129 | m_NavMeshLayer: 0 130 | m_StaticEditorFlags: 0 131 | m_IsActive: 1 132 | --- !u!114 &349892226 133 | MonoBehaviour: 134 | m_ObjectHideFlags: 0 135 | m_PrefabParentObject: {fileID: 0} 136 | m_PrefabInternal: {fileID: 0} 137 | m_GameObject: {fileID: 349892225} 138 | m_Enabled: 1 139 | m_EditorHideFlags: 0 140 | m_Script: {fileID: 1077351063, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 141 | m_Name: 142 | m_EditorClassIdentifier: 143 | m_HorizontalAxis: Horizontal 144 | m_VerticalAxis: Vertical 145 | m_SubmitButton: Submit 146 | m_CancelButton: Cancel 147 | m_InputActionsPerSecond: 10 148 | m_RepeatDelay: 0.5 149 | m_ForceModuleActive: 0 150 | --- !u!114 &349892227 151 | MonoBehaviour: 152 | m_ObjectHideFlags: 0 153 | m_PrefabParentObject: {fileID: 0} 154 | m_PrefabInternal: {fileID: 0} 155 | m_GameObject: {fileID: 349892225} 156 | m_Enabled: 1 157 | m_EditorHideFlags: 0 158 | m_Script: {fileID: -619905303, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 159 | m_Name: 160 | m_EditorClassIdentifier: 161 | m_FirstSelected: {fileID: 0} 162 | m_sendNavigationEvents: 1 163 | m_DragThreshold: 5 164 | --- !u!4 &349892228 165 | Transform: 166 | m_ObjectHideFlags: 0 167 | m_PrefabParentObject: {fileID: 0} 168 | m_PrefabInternal: {fileID: 0} 169 | m_GameObject: {fileID: 349892225} 170 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 171 | m_LocalPosition: {x: 0, y: 0, z: 0} 172 | m_LocalScale: {x: 1, y: 1, z: 1} 173 | m_Children: [] 174 | m_Father: {fileID: 0} 175 | m_RootOrder: 2 176 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 177 | --- !u!1 &421488290 178 | GameObject: 179 | m_ObjectHideFlags: 0 180 | m_PrefabParentObject: {fileID: 0} 181 | m_PrefabInternal: {fileID: 0} 182 | serializedVersion: 5 183 | m_Component: 184 | - component: {fileID: 421488294} 185 | - component: {fileID: 421488293} 186 | - component: {fileID: 421488292} 187 | - component: {fileID: 421488291} 188 | m_Layer: 5 189 | m_Name: Canvas 190 | m_TagString: Untagged 191 | m_Icon: {fileID: 0} 192 | m_NavMeshLayer: 0 193 | m_StaticEditorFlags: 0 194 | m_IsActive: 1 195 | --- !u!114 &421488291 196 | MonoBehaviour: 197 | m_ObjectHideFlags: 0 198 | m_PrefabParentObject: {fileID: 0} 199 | m_PrefabInternal: {fileID: 0} 200 | m_GameObject: {fileID: 421488290} 201 | m_Enabled: 1 202 | m_EditorHideFlags: 0 203 | m_Script: {fileID: 1301386320, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 204 | m_Name: 205 | m_EditorClassIdentifier: 206 | m_IgnoreReversedGraphics: 1 207 | m_BlockingObjects: 0 208 | m_BlockingMask: 209 | serializedVersion: 2 210 | m_Bits: 4294967295 211 | --- !u!114 &421488292 212 | MonoBehaviour: 213 | m_ObjectHideFlags: 0 214 | m_PrefabParentObject: {fileID: 0} 215 | m_PrefabInternal: {fileID: 0} 216 | m_GameObject: {fileID: 421488290} 217 | m_Enabled: 1 218 | m_EditorHideFlags: 0 219 | m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 220 | m_Name: 221 | m_EditorClassIdentifier: 222 | m_UiScaleMode: 1 223 | m_ReferencePixelsPerUnit: 100 224 | m_ScaleFactor: 1 225 | m_ReferenceResolution: {x: 800, y: 600} 226 | m_ScreenMatchMode: 1 227 | m_MatchWidthOrHeight: 0 228 | m_PhysicalUnit: 3 229 | m_FallbackScreenDPI: 96 230 | m_DefaultSpriteDPI: 96 231 | m_DynamicPixelsPerUnit: 1 232 | --- !u!223 &421488293 233 | Canvas: 234 | m_ObjectHideFlags: 0 235 | m_PrefabParentObject: {fileID: 0} 236 | m_PrefabInternal: {fileID: 0} 237 | m_GameObject: {fileID: 421488290} 238 | m_Enabled: 1 239 | serializedVersion: 3 240 | m_RenderMode: 1 241 | m_Camera: {fileID: 1042111912} 242 | m_PlaneDistance: 100 243 | m_PixelPerfect: 0 244 | m_ReceivesEvents: 1 245 | m_OverrideSorting: 0 246 | m_OverridePixelPerfect: 0 247 | m_SortingBucketNormalizedSize: 0 248 | m_AdditionalShaderChannelsFlag: 0 249 | m_SortingLayerID: 0 250 | m_SortingOrder: 0 251 | m_TargetDisplay: 0 252 | --- !u!224 &421488294 253 | RectTransform: 254 | m_ObjectHideFlags: 0 255 | m_PrefabParentObject: {fileID: 0} 256 | m_PrefabInternal: {fileID: 0} 257 | m_GameObject: {fileID: 421488290} 258 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 259 | m_LocalPosition: {x: 0, y: 0, z: 90} 260 | m_LocalScale: {x: 0.009, y: 0.009, z: 0.009} 261 | m_Children: 262 | - {fileID: 1549081338} 263 | - {fileID: 927104555} 264 | - {fileID: 1879007792} 265 | m_Father: {fileID: 0} 266 | m_RootOrder: 1 267 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 268 | m_AnchorMin: {x: 0.5, y: 0.5} 269 | m_AnchorMax: {x: 0.5, y: 0.5} 270 | m_AnchoredPosition: {x: 0, y: 0} 271 | m_SizeDelta: {x: 100, y: 100} 272 | m_Pivot: {x: 0.5, y: 0.5} 273 | --- !u!1 &532169065 274 | GameObject: 275 | m_ObjectHideFlags: 0 276 | m_PrefabParentObject: {fileID: 0} 277 | m_PrefabInternal: {fileID: 0} 278 | serializedVersion: 5 279 | m_Component: 280 | - component: {fileID: 532169066} 281 | - component: {fileID: 532169068} 282 | - component: {fileID: 532169067} 283 | m_Layer: 5 284 | m_Name: Text 285 | m_TagString: Untagged 286 | m_Icon: {fileID: 0} 287 | m_NavMeshLayer: 0 288 | m_StaticEditorFlags: 0 289 | m_IsActive: 1 290 | --- !u!224 &532169066 291 | RectTransform: 292 | m_ObjectHideFlags: 0 293 | m_PrefabParentObject: {fileID: 0} 294 | m_PrefabInternal: {fileID: 0} 295 | m_GameObject: {fileID: 532169065} 296 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 297 | m_LocalPosition: {x: 0, y: 0, z: 0} 298 | m_LocalScale: {x: 1, y: 1, z: 1} 299 | m_Children: [] 300 | m_Father: {fileID: 1549081338} 301 | m_RootOrder: 0 302 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 303 | m_AnchorMin: {x: 0, y: 0} 304 | m_AnchorMax: {x: 1, y: 1} 305 | m_AnchoredPosition: {x: 0, y: 0} 306 | m_SizeDelta: {x: 0, y: 0} 307 | m_Pivot: {x: 0.5, y: 0.5} 308 | --- !u!114 &532169067 309 | MonoBehaviour: 310 | m_ObjectHideFlags: 0 311 | m_PrefabParentObject: {fileID: 0} 312 | m_PrefabInternal: {fileID: 0} 313 | m_GameObject: {fileID: 532169065} 314 | m_Enabled: 1 315 | m_EditorHideFlags: 0 316 | m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 317 | m_Name: 318 | m_EditorClassIdentifier: 319 | m_Material: {fileID: 0} 320 | m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} 321 | m_RaycastTarget: 1 322 | m_OnCullStateChanged: 323 | m_PersistentCalls: 324 | m_Calls: [] 325 | m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, 326 | Version=1.0.0.0, Culture=neutral, PublicKeyToken=null 327 | m_FontData: 328 | m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} 329 | m_FontSize: 30 330 | m_FontStyle: 0 331 | m_BestFit: 0 332 | m_MinSize: 3 333 | m_MaxSize: 40 334 | m_Alignment: 4 335 | m_AlignByGeometry: 0 336 | m_RichText: 1 337 | m_HorizontalOverflow: 0 338 | m_VerticalOverflow: 0 339 | m_LineSpacing: 1 340 | m_Text: 'Click Me 341 | 342 | ' 343 | --- !u!222 &532169068 344 | CanvasRenderer: 345 | m_ObjectHideFlags: 0 346 | m_PrefabParentObject: {fileID: 0} 347 | m_PrefabInternal: {fileID: 0} 348 | m_GameObject: {fileID: 532169065} 349 | --- !u!1 &927104554 350 | GameObject: 351 | m_ObjectHideFlags: 0 352 | m_PrefabParentObject: {fileID: 0} 353 | m_PrefabInternal: {fileID: 0} 354 | serializedVersion: 5 355 | m_Component: 356 | - component: {fileID: 927104555} 357 | - component: {fileID: 927104557} 358 | - component: {fileID: 927104556} 359 | m_Layer: 5 360 | m_Name: Text 361 | m_TagString: Untagged 362 | m_Icon: {fileID: 0} 363 | m_NavMeshLayer: 0 364 | m_StaticEditorFlags: 0 365 | m_IsActive: 1 366 | --- !u!224 &927104555 367 | RectTransform: 368 | m_ObjectHideFlags: 0 369 | m_PrefabParentObject: {fileID: 0} 370 | m_PrefabInternal: {fileID: 0} 371 | m_GameObject: {fileID: 927104554} 372 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 373 | m_LocalPosition: {x: 0, y: -168.6, z: 0} 374 | m_LocalScale: {x: 1, y: 1, z: 1} 375 | m_Children: [] 376 | m_Father: {fileID: 421488294} 377 | m_RootOrder: 1 378 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 379 | m_AnchorMin: {x: 0, y: 0.5} 380 | m_AnchorMax: {x: 1, y: 0.5} 381 | m_AnchoredPosition: {x: 0, y: -168.6} 382 | m_SizeDelta: {x: 0, y: 99.3} 383 | m_Pivot: {x: 0.5, y: 0.5} 384 | --- !u!114 &927104556 385 | MonoBehaviour: 386 | m_ObjectHideFlags: 0 387 | m_PrefabParentObject: {fileID: 0} 388 | m_PrefabInternal: {fileID: 0} 389 | m_GameObject: {fileID: 927104554} 390 | m_Enabled: 1 391 | m_EditorHideFlags: 0 392 | m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 393 | m_Name: 394 | m_EditorClassIdentifier: 395 | m_Material: {fileID: 0} 396 | m_Color: {r: 1, g: 1, b: 1, a: 1} 397 | m_RaycastTarget: 1 398 | m_OnCullStateChanged: 399 | m_PersistentCalls: 400 | m_Calls: [] 401 | m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, 402 | Version=1.0.0.0, Culture=neutral, PublicKeyToken=null 403 | m_FontData: 404 | m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} 405 | m_FontSize: 30 406 | m_FontStyle: 0 407 | m_BestFit: 0 408 | m_MinSize: 3 409 | m_MaxSize: 40 410 | m_Alignment: 4 411 | m_AlignByGeometry: 0 412 | m_RichText: 1 413 | m_HorizontalOverflow: 1 414 | m_VerticalOverflow: 1 415 | m_LineSpacing: 1 416 | m_Text: wait for android 417 | --- !u!222 &927104557 418 | CanvasRenderer: 419 | m_ObjectHideFlags: 0 420 | m_PrefabParentObject: {fileID: 0} 421 | m_PrefabInternal: {fileID: 0} 422 | m_GameObject: {fileID: 927104554} 423 | --- !u!1 &1042111911 424 | GameObject: 425 | m_ObjectHideFlags: 0 426 | m_PrefabParentObject: {fileID: 0} 427 | m_PrefabInternal: {fileID: 0} 428 | serializedVersion: 5 429 | m_Component: 430 | - component: {fileID: 1042111916} 431 | - component: {fileID: 1042111912} 432 | - component: {fileID: 1042111915} 433 | - component: {fileID: 1042111914} 434 | - component: {fileID: 1042111913} 435 | m_Layer: 0 436 | m_Name: Main Camera 437 | m_TagString: MainCamera 438 | m_Icon: {fileID: 0} 439 | m_NavMeshLayer: 0 440 | m_StaticEditorFlags: 0 441 | m_IsActive: 1 442 | --- !u!20 &1042111912 443 | Camera: 444 | m_ObjectHideFlags: 0 445 | m_PrefabParentObject: {fileID: 0} 446 | m_PrefabInternal: {fileID: 0} 447 | m_GameObject: {fileID: 1042111911} 448 | m_Enabled: 1 449 | serializedVersion: 2 450 | m_ClearFlags: 2 451 | m_BackGroundColor: {r: 0.13137977, g: 0.2346994, b: 0.39705884, a: 0} 452 | m_NormalizedViewPortRect: 453 | serializedVersion: 2 454 | x: 0 455 | y: 0 456 | width: 1 457 | height: 1 458 | near clip plane: 0.3 459 | far clip plane: 1000 460 | field of view: 60 461 | orthographic: 1 462 | orthographic size: 6.4 463 | m_Depth: -1 464 | m_CullingMask: 465 | serializedVersion: 2 466 | m_Bits: 4294967295 467 | m_RenderingPath: -1 468 | m_TargetTexture: {fileID: 0} 469 | m_TargetDisplay: 0 470 | m_TargetEye: 3 471 | m_HDR: 1 472 | m_AllowMSAA: 1 473 | m_ForceIntoRT: 0 474 | m_OcclusionCulling: 1 475 | m_StereoConvergence: 10 476 | m_StereoSeparation: 0.022 477 | --- !u!114 &1042111913 478 | MonoBehaviour: 479 | m_ObjectHideFlags: 0 480 | m_PrefabParentObject: {fileID: 0} 481 | m_PrefabInternal: {fileID: 0} 482 | m_GameObject: {fileID: 1042111911} 483 | m_Enabled: 1 484 | m_EditorHideFlags: 0 485 | m_Script: {fileID: 11500000, guid: cc4c3fef97a722e4685acc7cbaf51398, type: 3} 486 | m_Name: 487 | m_EditorClassIdentifier: 488 | text: {fileID: 927104556} 489 | --- !u!81 &1042111914 490 | AudioListener: 491 | m_ObjectHideFlags: 0 492 | m_PrefabParentObject: {fileID: 0} 493 | m_PrefabInternal: {fileID: 0} 494 | m_GameObject: {fileID: 1042111911} 495 | m_Enabled: 1 496 | --- !u!124 &1042111915 497 | Behaviour: 498 | m_ObjectHideFlags: 0 499 | m_PrefabParentObject: {fileID: 0} 500 | m_PrefabInternal: {fileID: 0} 501 | m_GameObject: {fileID: 1042111911} 502 | m_Enabled: 1 503 | --- !u!4 &1042111916 504 | Transform: 505 | m_ObjectHideFlags: 0 506 | m_PrefabParentObject: {fileID: 0} 507 | m_PrefabInternal: {fileID: 0} 508 | m_GameObject: {fileID: 1042111911} 509 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 510 | m_LocalPosition: {x: 0, y: 0, z: -10} 511 | m_LocalScale: {x: 1, y: 1, z: 1} 512 | m_Children: [] 513 | m_Father: {fileID: 0} 514 | m_RootOrder: 0 515 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 516 | --- !u!1 &1549081337 517 | GameObject: 518 | m_ObjectHideFlags: 0 519 | m_PrefabParentObject: {fileID: 0} 520 | m_PrefabInternal: {fileID: 0} 521 | serializedVersion: 5 522 | m_Component: 523 | - component: {fileID: 1549081338} 524 | - component: {fileID: 1549081341} 525 | - component: {fileID: 1549081340} 526 | - component: {fileID: 1549081339} 527 | m_Layer: 5 528 | m_Name: Button 529 | m_TagString: Untagged 530 | m_Icon: {fileID: 0} 531 | m_NavMeshLayer: 0 532 | m_StaticEditorFlags: 0 533 | m_IsActive: 1 534 | --- !u!224 &1549081338 535 | RectTransform: 536 | m_ObjectHideFlags: 0 537 | m_PrefabParentObject: {fileID: 0} 538 | m_PrefabInternal: {fileID: 0} 539 | m_GameObject: {fileID: 1549081337} 540 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 541 | m_LocalPosition: {x: -9, y: 15.299999, z: 0} 542 | m_LocalScale: {x: 1, y: 1, z: 1} 543 | m_Children: 544 | - {fileID: 532169066} 545 | m_Father: {fileID: 421488294} 546 | m_RootOrder: 0 547 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 548 | m_AnchorMin: {x: 0.5, y: 0.5} 549 | m_AnchorMax: {x: 0.5, y: 0.5} 550 | m_AnchoredPosition: {x: -9, y: 15.3} 551 | m_SizeDelta: {x: 285.4, y: 65.8} 552 | m_Pivot: {x: 0.5, y: 0.5} 553 | --- !u!114 &1549081339 554 | MonoBehaviour: 555 | m_ObjectHideFlags: 0 556 | m_PrefabParentObject: {fileID: 0} 557 | m_PrefabInternal: {fileID: 0} 558 | m_GameObject: {fileID: 1549081337} 559 | m_Enabled: 1 560 | m_EditorHideFlags: 0 561 | m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 562 | m_Name: 563 | m_EditorClassIdentifier: 564 | m_Navigation: 565 | m_Mode: 3 566 | m_SelectOnUp: {fileID: 0} 567 | m_SelectOnDown: {fileID: 0} 568 | m_SelectOnLeft: {fileID: 0} 569 | m_SelectOnRight: {fileID: 0} 570 | m_Transition: 1 571 | m_Colors: 572 | m_NormalColor: {r: 1, g: 1, b: 1, a: 1} 573 | m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} 574 | m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} 575 | m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} 576 | m_ColorMultiplier: 1 577 | m_FadeDuration: 0.1 578 | m_SpriteState: 579 | m_HighlightedSprite: {fileID: 0} 580 | m_PressedSprite: {fileID: 0} 581 | m_DisabledSprite: {fileID: 0} 582 | m_AnimationTriggers: 583 | m_NormalTrigger: Normal 584 | m_HighlightedTrigger: Highlighted 585 | m_PressedTrigger: Pressed 586 | m_DisabledTrigger: Disabled 587 | m_Interactable: 1 588 | m_TargetGraphic: {fileID: 1549081340} 589 | m_OnClick: 590 | m_PersistentCalls: 591 | m_Calls: 592 | - m_Target: {fileID: 1042111913} 593 | m_MethodName: OnBtnClick 594 | m_Mode: 1 595 | m_Arguments: 596 | m_ObjectArgument: {fileID: 0} 597 | m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine 598 | m_IntArgument: 0 599 | m_FloatArgument: 0 600 | m_StringArgument: 601 | m_BoolArgument: 0 602 | m_CallState: 2 603 | m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, 604 | Culture=neutral, PublicKeyToken=null 605 | --- !u!114 &1549081340 606 | MonoBehaviour: 607 | m_ObjectHideFlags: 0 608 | m_PrefabParentObject: {fileID: 0} 609 | m_PrefabInternal: {fileID: 0} 610 | m_GameObject: {fileID: 1549081337} 611 | m_Enabled: 1 612 | m_EditorHideFlags: 0 613 | m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 614 | m_Name: 615 | m_EditorClassIdentifier: 616 | m_Material: {fileID: 0} 617 | m_Color: {r: 1, g: 1, b: 1, a: 1} 618 | m_RaycastTarget: 1 619 | m_OnCullStateChanged: 620 | m_PersistentCalls: 621 | m_Calls: [] 622 | m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, 623 | Version=1.0.0.0, Culture=neutral, PublicKeyToken=null 624 | m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} 625 | m_Type: 1 626 | m_PreserveAspect: 0 627 | m_FillCenter: 1 628 | m_FillMethod: 4 629 | m_FillAmount: 1 630 | m_FillClockwise: 1 631 | m_FillOrigin: 0 632 | --- !u!222 &1549081341 633 | CanvasRenderer: 634 | m_ObjectHideFlags: 0 635 | m_PrefabParentObject: {fileID: 0} 636 | m_PrefabInternal: {fileID: 0} 637 | m_GameObject: {fileID: 1549081337} 638 | --- !u!1 &1879007791 639 | GameObject: 640 | m_ObjectHideFlags: 0 641 | m_PrefabParentObject: {fileID: 0} 642 | m_PrefabInternal: {fileID: 0} 643 | serializedVersion: 5 644 | m_Component: 645 | - component: {fileID: 1879007792} 646 | - component: {fileID: 1879007794} 647 | - component: {fileID: 1879007793} 648 | m_Layer: 5 649 | m_Name: Text (1) 650 | m_TagString: Untagged 651 | m_Icon: {fileID: 0} 652 | m_NavMeshLayer: 0 653 | m_StaticEditorFlags: 0 654 | m_IsActive: 1 655 | --- !u!224 &1879007792 656 | RectTransform: 657 | m_ObjectHideFlags: 0 658 | m_PrefabParentObject: {fileID: 0} 659 | m_PrefabInternal: {fileID: 0} 660 | m_GameObject: {fileID: 1879007791} 661 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 662 | m_LocalPosition: {x: 0, y: -697.11115, z: 0} 663 | m_LocalScale: {x: 1, y: 1, z: 1} 664 | m_Children: [] 665 | m_Father: {fileID: 421488294} 666 | m_RootOrder: 2 667 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 668 | m_AnchorMin: {x: 0.5, y: 0} 669 | m_AnchorMax: {x: 0.5, y: 0} 670 | m_AnchoredPosition: {x: 0, y: 14} 671 | m_SizeDelta: {x: 160, y: 40} 672 | m_Pivot: {x: 0.5, y: 0} 673 | --- !u!114 &1879007793 674 | MonoBehaviour: 675 | m_ObjectHideFlags: 0 676 | m_PrefabParentObject: {fileID: 0} 677 | m_PrefabInternal: {fileID: 0} 678 | m_GameObject: {fileID: 1879007791} 679 | m_Enabled: 1 680 | m_EditorHideFlags: 0 681 | m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 682 | m_Name: 683 | m_EditorClassIdentifier: 684 | m_Material: {fileID: 0} 685 | m_Color: {r: 1, g: 1, b: 1, a: 1} 686 | m_RaycastTarget: 1 687 | m_OnCullStateChanged: 688 | m_PersistentCalls: 689 | m_Calls: [] 690 | m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, 691 | Version=1.0.0.0, Culture=neutral, PublicKeyToken=null 692 | m_FontData: 693 | m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} 694 | m_FontSize: 30 695 | m_FontStyle: 0 696 | m_BestFit: 0 697 | m_MinSize: 2 698 | m_MaxSize: 40 699 | m_Alignment: 4 700 | m_AlignByGeometry: 0 701 | m_RichText: 1 702 | m_HorizontalOverflow: 1 703 | m_VerticalOverflow: 1 704 | m_LineSpacing: 1 705 | m_Text: Code By Jing 706 | --- !u!222 &1879007794 707 | CanvasRenderer: 708 | m_ObjectHideFlags: 0 709 | m_PrefabParentObject: {fileID: 0} 710 | m_PrefabInternal: {fileID: 0} 711 | m_GameObject: {fileID: 1879007791} 712 | -------------------------------------------------------------------------------- /unity/Assets/Main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 869504c2bf375b24ab98ee2fe9b70ee4 3 | timeCreated: 1516288534 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /unity/Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37d4ce4969e7552489ad86e48cc3bccd 3 | folderAsset: yes 4 | timeCreated: 1516288587 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /unity/Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50edf3273fa760442821c9ba84633605 3 | folderAsset: yes 4 | timeCreated: 1516288593 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /unity/Assets/Plugins/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /unity/Assets/Plugins/Android/AndroidManifest.xml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddf31d01480b23b45b77e4976df72703 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /unity/Assets/Plugins/Android/myunitylib-debug.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinglikeblue/unity_with_android_plus/15ef76e949fba005a457e48ddb34c23eb325c441/unity/Assets/Plugins/Android/myunitylib-debug.aar -------------------------------------------------------------------------------- /unity/Assets/Plugins/Android/myunitylib-debug.aar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4973932a1a9920941a4e15864167d8c1 3 | PluginImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | iconMap: {} 7 | executionOrder: {} 8 | defineConstraints: [] 9 | isPreloaded: 0 10 | isOverridable: 0 11 | isExplicitlyReferenced: 0 12 | validateReferences: 1 13 | platformData: 14 | - first: 15 | Android: Android 16 | second: 17 | enabled: 1 18 | settings: {} 19 | - first: 20 | Any: 21 | second: 22 | enabled: 0 23 | settings: {} 24 | - first: 25 | Editor: Editor 26 | second: 27 | enabled: 0 28 | settings: 29 | DefaultValueInitialized: true 30 | userData: 31 | assetBundleName: 32 | assetBundleVariant: 33 | -------------------------------------------------------------------------------- /unity/Logs/Packages-Update.log: -------------------------------------------------------------------------------- 1 | 2 | === Fri Nov 8 17:09:45 2019 3 | 4 | Packages were changed. 5 | Update Mode: updateDependencies 6 | 7 | The following packages were added: 8 | com.unity.analytics@3.2.2 9 | com.unity.purchasing@2.0.3 10 | com.unity.ads@2.0.8 11 | com.unity.textmeshpro@1.3.0 12 | com.unity.package-manager-ui@2.0.7 13 | com.unity.collab-proxy@1.2.15 14 | com.unity.modules.ai@1.0.0 15 | com.unity.modules.animation@1.0.0 16 | com.unity.modules.assetbundle@1.0.0 17 | com.unity.modules.audio@1.0.0 18 | com.unity.modules.cloth@1.0.0 19 | com.unity.modules.director@1.0.0 20 | com.unity.modules.imageconversion@1.0.0 21 | com.unity.modules.imgui@1.0.0 22 | com.unity.modules.jsonserialize@1.0.0 23 | com.unity.modules.particlesystem@1.0.0 24 | com.unity.modules.physics@1.0.0 25 | com.unity.modules.physics2d@1.0.0 26 | com.unity.modules.screencapture@1.0.0 27 | com.unity.modules.terrain@1.0.0 28 | com.unity.modules.terrainphysics@1.0.0 29 | com.unity.modules.tilemap@1.0.0 30 | com.unity.modules.ui@1.0.0 31 | com.unity.modules.uielements@1.0.0 32 | com.unity.modules.umbra@1.0.0 33 | com.unity.modules.unityanalytics@1.0.0 34 | com.unity.modules.unitywebrequest@1.0.0 35 | com.unity.modules.unitywebrequestassetbundle@1.0.0 36 | com.unity.modules.unitywebrequestaudio@1.0.0 37 | com.unity.modules.unitywebrequesttexture@1.0.0 38 | com.unity.modules.unitywebrequestwww@1.0.0 39 | com.unity.modules.vehicles@1.0.0 40 | com.unity.modules.video@1.0.0 41 | com.unity.modules.vr@1.0.0 42 | com.unity.modules.wind@1.0.0 43 | com.unity.modules.xr@1.0.0 44 | -------------------------------------------------------------------------------- /unity/Packages/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.ads": "2.0.8", 4 | "com.unity.analytics": "3.2.2", 5 | "com.unity.collab-proxy": "1.2.15", 6 | "com.unity.package-manager-ui": "2.0.7", 7 | "com.unity.purchasing": "2.0.3", 8 | "com.unity.textmeshpro": "1.3.0", 9 | "com.unity.modules.ai": "1.0.0", 10 | "com.unity.modules.animation": "1.0.0", 11 | "com.unity.modules.assetbundle": "1.0.0", 12 | "com.unity.modules.audio": "1.0.0", 13 | "com.unity.modules.cloth": "1.0.0", 14 | "com.unity.modules.director": "1.0.0", 15 | "com.unity.modules.imageconversion": "1.0.0", 16 | "com.unity.modules.imgui": "1.0.0", 17 | "com.unity.modules.jsonserialize": "1.0.0", 18 | "com.unity.modules.particlesystem": "1.0.0", 19 | "com.unity.modules.physics": "1.0.0", 20 | "com.unity.modules.physics2d": "1.0.0", 21 | "com.unity.modules.screencapture": "1.0.0", 22 | "com.unity.modules.terrain": "1.0.0", 23 | "com.unity.modules.terrainphysics": "1.0.0", 24 | "com.unity.modules.tilemap": "1.0.0", 25 | "com.unity.modules.ui": "1.0.0", 26 | "com.unity.modules.uielements": "1.0.0", 27 | "com.unity.modules.umbra": "1.0.0", 28 | "com.unity.modules.unityanalytics": "1.0.0", 29 | "com.unity.modules.unitywebrequest": "1.0.0", 30 | "com.unity.modules.unitywebrequestassetbundle": "1.0.0", 31 | "com.unity.modules.unitywebrequestaudio": "1.0.0", 32 | "com.unity.modules.unitywebrequesttexture": "1.0.0", 33 | "com.unity.modules.unitywebrequestwww": "1.0.0", 34 | "com.unity.modules.vehicles": "1.0.0", 35 | "com.unity.modules.video": "1.0.0", 36 | "com.unity.modules.vr": "1.0.0", 37 | "com.unity.modules.wind": "1.0.0", 38 | "com.unity.modules.xr": "1.0.0" 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /unity/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | m_Volume: 1 7 | Rolloff Scale: 1 8 | Doppler Factor: 1 9 | Default Speaker Mode: 2 10 | m_SampleRate: 0 11 | m_DSPBufferSize: 0 12 | m_VirtualVoiceCount: 512 13 | m_RealVoiceCount: 32 14 | m_SpatializerPlugin: 15 | m_AmbisonicDecoderPlugin: 16 | m_DisableAudio: 0 17 | m_VirtualizeEffects: 1 18 | -------------------------------------------------------------------------------- /unity/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /unity/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 3 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_DefaultSolverIterations: 6 13 | m_DefaultSolverVelocityIterations: 1 14 | m_QueriesHitBackfaces: 0 15 | m_QueriesHitTriggers: 1 16 | m_EnableAdaptiveForce: 0 17 | m_EnablePCM: 1 18 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 19 | m_AutoSimulation: 1 20 | m_AutoSyncTransforms: 1 21 | -------------------------------------------------------------------------------- /unity/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | -------------------------------------------------------------------------------- /unity/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 5 7 | m_ExternalVersionControlSupport: Hidden Meta Files 8 | m_SerializationMode: 2 9 | m_DefaultBehaviorMode: 1 10 | m_SpritePackerMode: 4 11 | m_SpritePackerPaddingPower: 1 12 | m_EtcTextureCompressorBehavior: 1 13 | m_EtcTextureFastCompressor: 1 14 | m_EtcTextureNormalCompressor: 2 15 | m_EtcTextureBestCompressor: 4 16 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd 17 | m_ProjectGenerationRootNamespace: 18 | m_UserGeneratedProjectSuffix: 19 | m_CollabEditorSettings: 20 | inProgressEnabled: 1 21 | -------------------------------------------------------------------------------- /unity/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!30 &1 4 | GraphicsSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 12 7 | m_Deferred: 8 | m_Mode: 1 9 | m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} 10 | m_DeferredReflections: 11 | m_Mode: 1 12 | m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} 13 | m_ScreenSpaceShadows: 14 | m_Mode: 1 15 | m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} 16 | m_LegacyDeferred: 17 | m_Mode: 1 18 | m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} 19 | m_DepthNormals: 20 | m_Mode: 1 21 | m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} 22 | m_MotionVectors: 23 | m_Mode: 1 24 | m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} 25 | m_LightHalo: 26 | m_Mode: 1 27 | m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} 28 | m_LensFlare: 29 | m_Mode: 1 30 | m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} 31 | m_AlwaysIncludedShaders: 32 | - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} 33 | - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} 34 | - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} 35 | - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} 36 | - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} 37 | - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} 38 | - {fileID: 16000, guid: 0000000000000000f000000000000000, type: 0} 39 | - {fileID: 16002, guid: 0000000000000000f000000000000000, type: 0} 40 | - {fileID: 17000, guid: 0000000000000000f000000000000000, type: 0} 41 | m_PreloadedShaders: [] 42 | m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, 43 | type: 0} 44 | m_CustomRenderPipeline: {fileID: 0} 45 | m_TransparencySortMode: 0 46 | m_TransparencySortAxis: {x: 0, y: 0, z: 1} 47 | m_DefaultRenderingPath: 1 48 | m_DefaultMobileRenderingPath: 1 49 | m_TierSettings: [] 50 | m_LightmapStripping: 0 51 | m_FogStripping: 0 52 | m_InstancingStripping: 0 53 | m_LightmapKeepPlain: 1 54 | m_LightmapKeepDirCombined: 1 55 | m_LightmapKeepDynamicPlain: 1 56 | m_LightmapKeepDynamicDirCombined: 1 57 | m_LightmapKeepShadowMask: 1 58 | m_LightmapKeepSubtractive: 1 59 | m_FogKeepLinear: 1 60 | m_FogKeepExp: 1 61 | m_FogKeepExp2: 1 62 | m_AlbedoSwatchInfos: [] 63 | m_LightsUseLinearIntensity: 0 64 | m_LightsUseColorTemperature: 0 65 | -------------------------------------------------------------------------------- /unity/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!13 &1 4 | InputManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Axes: 8 | - serializedVersion: 3 9 | m_Name: Horizontal 10 | descriptiveName: 11 | descriptiveNegativeName: 12 | negativeButton: left 13 | positiveButton: right 14 | altNegativeButton: a 15 | altPositiveButton: d 16 | gravity: 3 17 | dead: 0.001 18 | sensitivity: 3 19 | snap: 1 20 | invert: 0 21 | type: 0 22 | axis: 0 23 | joyNum: 0 24 | - serializedVersion: 3 25 | m_Name: Vertical 26 | descriptiveName: 27 | descriptiveNegativeName: 28 | negativeButton: down 29 | positiveButton: up 30 | altNegativeButton: s 31 | altPositiveButton: w 32 | gravity: 3 33 | dead: 0.001 34 | sensitivity: 3 35 | snap: 1 36 | invert: 0 37 | type: 0 38 | axis: 0 39 | joyNum: 0 40 | - serializedVersion: 3 41 | m_Name: Fire1 42 | descriptiveName: 43 | descriptiveNegativeName: 44 | negativeButton: 45 | positiveButton: left ctrl 46 | altNegativeButton: 47 | altPositiveButton: mouse 0 48 | gravity: 1000 49 | dead: 0.001 50 | sensitivity: 1000 51 | snap: 0 52 | invert: 0 53 | type: 0 54 | axis: 0 55 | joyNum: 0 56 | - serializedVersion: 3 57 | m_Name: Fire2 58 | descriptiveName: 59 | descriptiveNegativeName: 60 | negativeButton: 61 | positiveButton: left alt 62 | altNegativeButton: 63 | altPositiveButton: mouse 1 64 | gravity: 1000 65 | dead: 0.001 66 | sensitivity: 1000 67 | snap: 0 68 | invert: 0 69 | type: 0 70 | axis: 0 71 | joyNum: 0 72 | - serializedVersion: 3 73 | m_Name: Fire3 74 | descriptiveName: 75 | descriptiveNegativeName: 76 | negativeButton: 77 | positiveButton: left shift 78 | altNegativeButton: 79 | altPositiveButton: mouse 2 80 | gravity: 1000 81 | dead: 0.001 82 | sensitivity: 1000 83 | snap: 0 84 | invert: 0 85 | type: 0 86 | axis: 0 87 | joyNum: 0 88 | - serializedVersion: 3 89 | m_Name: Jump 90 | descriptiveName: 91 | descriptiveNegativeName: 92 | negativeButton: 93 | positiveButton: space 94 | altNegativeButton: 95 | altPositiveButton: 96 | gravity: 1000 97 | dead: 0.001 98 | sensitivity: 1000 99 | snap: 0 100 | invert: 0 101 | type: 0 102 | axis: 0 103 | joyNum: 0 104 | - serializedVersion: 3 105 | m_Name: Mouse X 106 | descriptiveName: 107 | descriptiveNegativeName: 108 | negativeButton: 109 | positiveButton: 110 | altNegativeButton: 111 | altPositiveButton: 112 | gravity: 0 113 | dead: 0 114 | sensitivity: 0.1 115 | snap: 0 116 | invert: 0 117 | type: 1 118 | axis: 0 119 | joyNum: 0 120 | - serializedVersion: 3 121 | m_Name: Mouse Y 122 | descriptiveName: 123 | descriptiveNegativeName: 124 | negativeButton: 125 | positiveButton: 126 | altNegativeButton: 127 | altPositiveButton: 128 | gravity: 0 129 | dead: 0 130 | sensitivity: 0.1 131 | snap: 0 132 | invert: 0 133 | type: 1 134 | axis: 1 135 | joyNum: 0 136 | - serializedVersion: 3 137 | m_Name: Mouse ScrollWheel 138 | descriptiveName: 139 | descriptiveNegativeName: 140 | negativeButton: 141 | positiveButton: 142 | altNegativeButton: 143 | altPositiveButton: 144 | gravity: 0 145 | dead: 0 146 | sensitivity: 0.1 147 | snap: 0 148 | invert: 0 149 | type: 1 150 | axis: 2 151 | joyNum: 0 152 | - serializedVersion: 3 153 | m_Name: Horizontal 154 | descriptiveName: 155 | descriptiveNegativeName: 156 | negativeButton: 157 | positiveButton: 158 | altNegativeButton: 159 | altPositiveButton: 160 | gravity: 0 161 | dead: 0.19 162 | sensitivity: 1 163 | snap: 0 164 | invert: 0 165 | type: 2 166 | axis: 0 167 | joyNum: 0 168 | - serializedVersion: 3 169 | m_Name: Vertical 170 | descriptiveName: 171 | descriptiveNegativeName: 172 | negativeButton: 173 | positiveButton: 174 | altNegativeButton: 175 | altPositiveButton: 176 | gravity: 0 177 | dead: 0.19 178 | sensitivity: 1 179 | snap: 0 180 | invert: 1 181 | type: 2 182 | axis: 1 183 | joyNum: 0 184 | - serializedVersion: 3 185 | m_Name: Fire1 186 | descriptiveName: 187 | descriptiveNegativeName: 188 | negativeButton: 189 | positiveButton: joystick button 0 190 | altNegativeButton: 191 | altPositiveButton: 192 | gravity: 1000 193 | dead: 0.001 194 | sensitivity: 1000 195 | snap: 0 196 | invert: 0 197 | type: 0 198 | axis: 0 199 | joyNum: 0 200 | - serializedVersion: 3 201 | m_Name: Fire2 202 | descriptiveName: 203 | descriptiveNegativeName: 204 | negativeButton: 205 | positiveButton: joystick button 1 206 | altNegativeButton: 207 | altPositiveButton: 208 | gravity: 1000 209 | dead: 0.001 210 | sensitivity: 1000 211 | snap: 0 212 | invert: 0 213 | type: 0 214 | axis: 0 215 | joyNum: 0 216 | - serializedVersion: 3 217 | m_Name: Fire3 218 | descriptiveName: 219 | descriptiveNegativeName: 220 | negativeButton: 221 | positiveButton: joystick button 2 222 | altNegativeButton: 223 | altPositiveButton: 224 | gravity: 1000 225 | dead: 0.001 226 | sensitivity: 1000 227 | snap: 0 228 | invert: 0 229 | type: 0 230 | axis: 0 231 | joyNum: 0 232 | - serializedVersion: 3 233 | m_Name: Jump 234 | descriptiveName: 235 | descriptiveNegativeName: 236 | negativeButton: 237 | positiveButton: joystick button 3 238 | altNegativeButton: 239 | altPositiveButton: 240 | gravity: 1000 241 | dead: 0.001 242 | sensitivity: 1000 243 | snap: 0 244 | invert: 0 245 | type: 0 246 | axis: 0 247 | joyNum: 0 248 | - serializedVersion: 3 249 | m_Name: Submit 250 | descriptiveName: 251 | descriptiveNegativeName: 252 | negativeButton: 253 | positiveButton: return 254 | altNegativeButton: 255 | altPositiveButton: joystick button 0 256 | gravity: 1000 257 | dead: 0.001 258 | sensitivity: 1000 259 | snap: 0 260 | invert: 0 261 | type: 0 262 | axis: 0 263 | joyNum: 0 264 | - serializedVersion: 3 265 | m_Name: Submit 266 | descriptiveName: 267 | descriptiveNegativeName: 268 | negativeButton: 269 | positiveButton: enter 270 | altNegativeButton: 271 | altPositiveButton: space 272 | gravity: 1000 273 | dead: 0.001 274 | sensitivity: 1000 275 | snap: 0 276 | invert: 0 277 | type: 0 278 | axis: 0 279 | joyNum: 0 280 | - serializedVersion: 3 281 | m_Name: Cancel 282 | descriptiveName: 283 | descriptiveNegativeName: 284 | negativeButton: 285 | positiveButton: escape 286 | altNegativeButton: 287 | altPositiveButton: joystick button 1 288 | gravity: 1000 289 | dead: 0.001 290 | sensitivity: 1000 291 | snap: 0 292 | invert: 0 293 | type: 0 294 | axis: 0 295 | joyNum: 0 296 | -------------------------------------------------------------------------------- /unity/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!126 &1 4 | NavMeshProjectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | areas: 8 | - name: Walkable 9 | cost: 1 10 | - name: Not Walkable 11 | cost: 1 12 | - name: Jump 13 | cost: 2 14 | - name: 15 | cost: 1 16 | - name: 17 | cost: 1 18 | - name: 19 | cost: 1 20 | - name: 21 | cost: 1 22 | - name: 23 | cost: 1 24 | - name: 25 | cost: 1 26 | - name: 27 | cost: 1 28 | - name: 29 | cost: 1 30 | - name: 31 | cost: 1 32 | - name: 33 | cost: 1 34 | - name: 35 | cost: 1 36 | - name: 37 | cost: 1 38 | - name: 39 | cost: 1 40 | - name: 41 | cost: 1 42 | - name: 43 | cost: 1 44 | - name: 45 | cost: 1 46 | - name: 47 | cost: 1 48 | - name: 49 | cost: 1 50 | - name: 51 | cost: 1 52 | - name: 53 | cost: 1 54 | - name: 55 | cost: 1 56 | - name: 57 | cost: 1 58 | - name: 59 | cost: 1 60 | - name: 61 | cost: 1 62 | - name: 63 | cost: 1 64 | - name: 65 | cost: 1 66 | - name: 67 | cost: 1 68 | - name: 69 | cost: 1 70 | - name: 71 | cost: 1 72 | m_LastAgentTypeID: -887442657 73 | m_Settings: 74 | - serializedVersion: 2 75 | agentTypeID: 0 76 | agentRadius: 0.5 77 | agentHeight: 2 78 | agentSlope: 45 79 | agentClimb: 0.75 80 | ledgeDropHeight: 0 81 | maxJumpAcrossDistance: 0 82 | minRegionArea: 2 83 | manualCellSize: 0 84 | cellSize: 0.16666667 85 | manualTileSize: 0 86 | tileSize: 256 87 | accuratePlacement: 0 88 | debug: 89 | m_Flags: 0 90 | m_SettingNames: 91 | - Humanoid 92 | -------------------------------------------------------------------------------- /unity/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /unity/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!19 &1 4 | Physics2DSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 3 7 | m_Gravity: {x: 0, y: -9.81} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_VelocityIterations: 8 10 | m_PositionIterations: 3 11 | m_VelocityThreshold: 1 12 | m_MaxLinearCorrection: 0.2 13 | m_MaxAngularCorrection: 8 14 | m_MaxTranslationSpeed: 100 15 | m_MaxRotationSpeed: 360 16 | m_BaumgarteScale: 0.2 17 | m_BaumgarteTimeOfImpactScale: 0.75 18 | m_TimeToSleep: 0.5 19 | m_LinearSleepTolerance: 0.01 20 | m_AngularSleepTolerance: 2 21 | m_DefaultContactOffset: 0.01 22 | m_AutoSimulation: 1 23 | m_QueriesHitTriggers: 1 24 | m_QueriesStartInColliders: 1 25 | m_ChangeStopsCallbacks: 0 26 | m_CallbacksOnDisable: 1 27 | m_AutoSyncTransforms: 1 28 | m_AlwaysShowColliders: 0 29 | m_ShowColliderSleep: 1 30 | m_ShowColliderContacts: 0 31 | m_ShowColliderAABB: 0 32 | m_ContactArrowScale: 0.2 33 | m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} 34 | m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} 35 | m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} 36 | m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} 37 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 38 | -------------------------------------------------------------------------------- /unity/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | m_DefaultList: [] 7 | -------------------------------------------------------------------------------- /unity/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!129 &1 4 | PlayerSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 15 7 | productGUID: 307cb8e6fb44f664e9e5d557194bcadc 8 | AndroidProfiler: 0 9 | AndroidFilterTouchesWhenObscured: 0 10 | AndroidEnableSustainedPerformanceMode: 0 11 | defaultScreenOrientation: 0 12 | targetDevice: 2 13 | useOnDemandResources: 0 14 | accelerometerFrequency: 60 15 | companyName: Pieces 16 | productName: "UnityAndroid\u901A\u4FE1" 17 | defaultCursor: {fileID: 0} 18 | cursorHotspot: {x: 0, y: 0} 19 | m_SplashScreenBackgroundColor: {r: 0.13333334, g: 0.23529413, b: 0.39607847, a: 1} 20 | m_ShowUnitySplashScreen: 1 21 | m_ShowUnitySplashLogo: 1 22 | m_SplashScreenOverlayOpacity: 1 23 | m_SplashScreenAnimation: 0 24 | m_SplashScreenLogoStyle: 1 25 | m_SplashScreenDrawMode: 1 26 | m_SplashScreenBackgroundAnimationZoom: 1 27 | m_SplashScreenLogoAnimationZoom: 1 28 | m_SplashScreenBackgroundLandscapeAspect: 1 29 | m_SplashScreenBackgroundPortraitAspect: 1 30 | m_SplashScreenBackgroundLandscapeUvs: 31 | serializedVersion: 2 32 | x: 0 33 | y: 0 34 | width: 1 35 | height: 1 36 | m_SplashScreenBackgroundPortraitUvs: 37 | serializedVersion: 2 38 | x: 0 39 | y: 0 40 | width: 1 41 | height: 1 42 | m_SplashScreenLogos: 43 | - logo: {fileID: 10404, guid: 0000000000000000e000000000000000, type: 0} 44 | duration: 2 45 | m_VirtualRealitySplashScreen: {fileID: 2800000, guid: 2774ece821240e94ca5778aa00ef15e8, 46 | type: 3} 47 | m_HolographicTrackingLossScreen: {fileID: 0} 48 | defaultScreenWidth: 1024 49 | defaultScreenHeight: 768 50 | defaultScreenWidthWeb: 960 51 | defaultScreenHeightWeb: 600 52 | m_StereoRenderingPath: 0 53 | m_ActiveColorSpace: 0 54 | m_MTRendering: 1 55 | m_StackTraceTypes: 010000000100000001000000010000000100000001000000 56 | iosShowActivityIndicatorOnLoading: -1 57 | androidShowActivityIndicatorOnLoading: -1 58 | iosAppInBackgroundBehavior: 0 59 | displayResolutionDialog: 1 60 | iosAllowHTTPDownload: 1 61 | allowedAutorotateToPortrait: 1 62 | allowedAutorotateToPortraitUpsideDown: 1 63 | allowedAutorotateToLandscapeRight: 1 64 | allowedAutorotateToLandscapeLeft: 1 65 | useOSAutorotation: 1 66 | use32BitDisplayBuffer: 1 67 | preserveFramebufferAlpha: 0 68 | disableDepthAndStencilBuffers: 0 69 | androidStartInFullscreen: 1 70 | androidRenderOutsideSafeArea: 0 71 | androidBlitType: 0 72 | defaultIsNativeResolution: 1 73 | macRetinaSupport: 1 74 | runInBackground: 0 75 | captureSingleScreen: 0 76 | muteOtherAudioSources: 0 77 | Prepare IOS For Recording: 0 78 | Force IOS Speakers When Recording: 0 79 | deferSystemGesturesMode: 0 80 | hideHomeButton: 0 81 | submitAnalytics: 1 82 | usePlayerLog: 1 83 | bakeCollisionMeshes: 0 84 | forceSingleInstance: 0 85 | resizableWindow: 0 86 | useMacAppStoreValidation: 0 87 | macAppStoreCategory: public.app-category.games 88 | gpuSkinning: 0 89 | graphicsJobs: 0 90 | xboxPIXTextureCapture: 0 91 | xboxEnableAvatar: 0 92 | xboxEnableKinect: 0 93 | xboxEnableKinectAutoTracking: 0 94 | xboxEnableFitness: 0 95 | visibleInBackground: 1 96 | allowFullscreenSwitch: 1 97 | graphicsJobMode: 0 98 | fullscreenMode: 1 99 | xboxSpeechDB: 0 100 | xboxEnableHeadOrientation: 0 101 | xboxEnableGuest: 0 102 | xboxEnablePIXSampling: 0 103 | metalFramebufferOnly: 0 104 | xboxOneResolution: 0 105 | xboxOneSResolution: 0 106 | xboxOneXResolution: 3 107 | xboxOneMonoLoggingLevel: 0 108 | xboxOneLoggingLevel: 1 109 | xboxOneDisableEsram: 0 110 | xboxOnePresentImmediateThreshold: 0 111 | switchQueueCommandMemory: 1048576 112 | switchQueueControlMemory: 16384 113 | switchQueueComputeMemory: 262144 114 | switchNVNShaderPoolsGranularity: 33554432 115 | switchNVNDefaultPoolsGranularity: 16777216 116 | switchNVNOtherPoolsGranularity: 16777216 117 | vulkanEnableSetSRGBWrite: 0 118 | m_SupportedAspectRatios: 119 | 4:3: 1 120 | 5:4: 1 121 | 16:10: 1 122 | 16:9: 1 123 | Others: 1 124 | bundleVersion: 1.0 125 | preloadedAssets: [] 126 | metroInputSource: 0 127 | wsaTransparentSwapchain: 0 128 | m_HolographicPauseOnTrackingLoss: 1 129 | xboxOneDisableKinectGpuReservation: 0 130 | xboxOneEnable7thCore: 0 131 | isWsaHolographicRemotingEnabled: 0 132 | vrSettings: 133 | cardboard: 134 | depthFormat: 0 135 | enableTransitionView: 0 136 | daydream: 137 | depthFormat: 0 138 | useSustainedPerformanceMode: 0 139 | enableVideoLayer: 0 140 | useProtectedVideoMemory: 0 141 | minimumSupportedHeadTracking: 0 142 | maximumSupportedHeadTracking: 1 143 | hololens: 144 | depthFormat: 1 145 | depthBufferSharingEnabled: 1 146 | oculus: 147 | sharedDepthBuffer: 1 148 | dashSupport: 1 149 | enable360StereoCapture: 0 150 | protectGraphicsMemory: 0 151 | enableFrameTimingStats: 0 152 | useHDRDisplay: 0 153 | m_ColorGamuts: 00000000 154 | targetPixelDensity: 30 155 | resolutionScalingMode: 0 156 | androidSupportedAspectRatio: 1 157 | androidMaxAspectRatio: 2.1 158 | applicationIdentifier: 159 | Android: com.jing.u2ademo 160 | buildNumber: {} 161 | AndroidBundleVersionCode: 1 162 | AndroidMinSdkVersion: 16 163 | AndroidTargetSdkVersion: 0 164 | AndroidPreferredInstallLocation: 1 165 | aotOptions: 166 | stripEngineCode: 1 167 | iPhoneStrippingLevel: 0 168 | iPhoneScriptCallOptimization: 0 169 | ForceInternetPermission: 0 170 | ForceSDCardPermission: 0 171 | CreateWallpaper: 0 172 | APKExpansionFiles: 0 173 | keepLoadedShadersAlive: 0 174 | StripUnusedMeshComponents: 0 175 | VertexChannelCompressionMask: 214 176 | iPhoneSdkVersion: 988 177 | iOSTargetOSVersionString: 9.0 178 | tvOSSdkVersion: 0 179 | tvOSRequireExtendedGameController: 0 180 | tvOSTargetOSVersionString: 9.0 181 | uIPrerenderedIcon: 0 182 | uIRequiresPersistentWiFi: 0 183 | uIRequiresFullScreen: 1 184 | uIStatusBarHidden: 1 185 | uIExitOnSuspend: 0 186 | uIStatusBarStyle: 0 187 | iPhoneSplashScreen: {fileID: 0} 188 | iPhoneHighResSplashScreen: {fileID: 0} 189 | iPhoneTallHighResSplashScreen: {fileID: 0} 190 | iPhone47inSplashScreen: {fileID: 0} 191 | iPhone55inPortraitSplashScreen: {fileID: 0} 192 | iPhone55inLandscapeSplashScreen: {fileID: 0} 193 | iPhone58inPortraitSplashScreen: {fileID: 0} 194 | iPhone58inLandscapeSplashScreen: {fileID: 0} 195 | iPadPortraitSplashScreen: {fileID: 0} 196 | iPadHighResPortraitSplashScreen: {fileID: 0} 197 | iPadLandscapeSplashScreen: {fileID: 0} 198 | iPadHighResLandscapeSplashScreen: {fileID: 0} 199 | appleTVSplashScreen: {fileID: 0} 200 | appleTVSplashScreen2x: {fileID: 0} 201 | tvOSSmallIconLayers: [] 202 | tvOSSmallIconLayers2x: [] 203 | tvOSLargeIconLayers: [] 204 | tvOSLargeIconLayers2x: [] 205 | tvOSTopShelfImageLayers: [] 206 | tvOSTopShelfImageLayers2x: [] 207 | tvOSTopShelfImageWideLayers: [] 208 | tvOSTopShelfImageWideLayers2x: [] 209 | iOSLaunchScreenType: 0 210 | iOSLaunchScreenPortrait: {fileID: 0} 211 | iOSLaunchScreenLandscape: {fileID: 0} 212 | iOSLaunchScreenBackgroundColor: 213 | serializedVersion: 2 214 | rgba: 0 215 | iOSLaunchScreenFillPct: 100 216 | iOSLaunchScreenSize: 100 217 | iOSLaunchScreenCustomXibPath: 218 | iOSLaunchScreeniPadType: 0 219 | iOSLaunchScreeniPadImage: {fileID: 0} 220 | iOSLaunchScreeniPadBackgroundColor: 221 | serializedVersion: 2 222 | rgba: 0 223 | iOSLaunchScreeniPadFillPct: 100 224 | iOSLaunchScreeniPadSize: 100 225 | iOSLaunchScreeniPadCustomXibPath: 226 | iOSUseLaunchScreenStoryboard: 0 227 | iOSLaunchScreenCustomStoryboardPath: 228 | iOSDeviceRequirements: [] 229 | iOSURLSchemes: [] 230 | iOSBackgroundModes: 0 231 | iOSMetalForceHardShadows: 0 232 | metalEditorSupport: 1 233 | metalAPIValidation: 1 234 | iOSRenderExtraFrameOnPause: 0 235 | appleDeveloperTeamID: 236 | iOSManualSigningProvisioningProfileID: 237 | tvOSManualSigningProvisioningProfileID: 238 | iOSManualSigningProvisioningProfileType: 0 239 | tvOSManualSigningProvisioningProfileType: 0 240 | appleEnableAutomaticSigning: 0 241 | iOSRequireARKit: 0 242 | iOSAutomaticallyDetectAndAddCapabilities: 1 243 | appleEnableProMotion: 0 244 | clonedFromGUID: 00000000000000000000000000000000 245 | templatePackageId: 246 | templateDefaultScene: 247 | AndroidTargetArchitectures: 5 248 | AndroidSplashScreenScale: 2 249 | androidSplashScreen: {fileID: 0} 250 | AndroidKeystoreName: 251 | AndroidKeyaliasName: 252 | AndroidBuildApkPerCpuArchitecture: 0 253 | AndroidTVCompatibility: 1 254 | AndroidIsGame: 1 255 | AndroidEnableTango: 0 256 | androidEnableBanner: 1 257 | androidUseLowAccuracyLocation: 0 258 | m_AndroidBanners: 259 | - width: 320 260 | height: 180 261 | banner: {fileID: 0} 262 | androidGamepadSupportLevel: 0 263 | resolutionDialogBanner: {fileID: 0} 264 | m_BuildTargetIcons: 265 | - m_BuildTarget: 266 | m_Icons: 267 | - serializedVersion: 2 268 | m_Icon: {fileID: 2800000, guid: 51a41cff88d1d1c4e873cba27c7ffc3b, type: 3} 269 | m_Width: 128 270 | m_Height: 128 271 | m_Kind: 0 272 | m_BuildTargetPlatformIcons: [] 273 | m_BuildTargetBatching: [] 274 | m_BuildTargetGraphicsAPIs: [] 275 | m_BuildTargetVRSettings: [] 276 | m_BuildTargetEnableVuforiaSettings: [] 277 | openGLRequireES31: 0 278 | openGLRequireES31AEP: 0 279 | m_TemplateCustomTags: {} 280 | mobileMTRendering: 281 | Android: 1 282 | iPhone: 1 283 | tvOS: 1 284 | m_BuildTargetGroupLightmapEncodingQuality: 285 | - m_BuildTarget: Standalone 286 | m_EncodingQuality: 1 287 | - m_BuildTarget: XboxOne 288 | m_EncodingQuality: 1 289 | - m_BuildTarget: PS4 290 | m_EncodingQuality: 1 291 | m_BuildTargetGroupLightmapSettings: [] 292 | playModeTestRunnerEnabled: 0 293 | runPlayModeTestAsEditModeTest: 0 294 | actionOnDotNetUnhandledException: 1 295 | enableInternalProfiler: 0 296 | logObjCUncaughtExceptions: 1 297 | enableCrashReportAPI: 0 298 | cameraUsageDescription: 299 | locationUsageDescription: 300 | microphoneUsageDescription: 301 | switchNetLibKey: 302 | switchSocketMemoryPoolSize: 6144 303 | switchSocketAllocatorPoolSize: 128 304 | switchSocketConcurrencyLimit: 14 305 | switchScreenResolutionBehavior: 2 306 | switchUseCPUProfiler: 0 307 | switchApplicationID: 0x01004b9000490000 308 | switchNSODependencies: 309 | switchTitleNames_0: 310 | switchTitleNames_1: 311 | switchTitleNames_2: 312 | switchTitleNames_3: 313 | switchTitleNames_4: 314 | switchTitleNames_5: 315 | switchTitleNames_6: 316 | switchTitleNames_7: 317 | switchTitleNames_8: 318 | switchTitleNames_9: 319 | switchTitleNames_10: 320 | switchTitleNames_11: 321 | switchTitleNames_12: 322 | switchTitleNames_13: 323 | switchTitleNames_14: 324 | switchPublisherNames_0: 325 | switchPublisherNames_1: 326 | switchPublisherNames_2: 327 | switchPublisherNames_3: 328 | switchPublisherNames_4: 329 | switchPublisherNames_5: 330 | switchPublisherNames_6: 331 | switchPublisherNames_7: 332 | switchPublisherNames_8: 333 | switchPublisherNames_9: 334 | switchPublisherNames_10: 335 | switchPublisherNames_11: 336 | switchPublisherNames_12: 337 | switchPublisherNames_13: 338 | switchPublisherNames_14: 339 | switchIcons_0: {fileID: 0} 340 | switchIcons_1: {fileID: 0} 341 | switchIcons_2: {fileID: 0} 342 | switchIcons_3: {fileID: 0} 343 | switchIcons_4: {fileID: 0} 344 | switchIcons_5: {fileID: 0} 345 | switchIcons_6: {fileID: 0} 346 | switchIcons_7: {fileID: 0} 347 | switchIcons_8: {fileID: 0} 348 | switchIcons_9: {fileID: 0} 349 | switchIcons_10: {fileID: 0} 350 | switchIcons_11: {fileID: 0} 351 | switchIcons_12: {fileID: 0} 352 | switchIcons_13: {fileID: 0} 353 | switchIcons_14: {fileID: 0} 354 | switchSmallIcons_0: {fileID: 0} 355 | switchSmallIcons_1: {fileID: 0} 356 | switchSmallIcons_2: {fileID: 0} 357 | switchSmallIcons_3: {fileID: 0} 358 | switchSmallIcons_4: {fileID: 0} 359 | switchSmallIcons_5: {fileID: 0} 360 | switchSmallIcons_6: {fileID: 0} 361 | switchSmallIcons_7: {fileID: 0} 362 | switchSmallIcons_8: {fileID: 0} 363 | switchSmallIcons_9: {fileID: 0} 364 | switchSmallIcons_10: {fileID: 0} 365 | switchSmallIcons_11: {fileID: 0} 366 | switchSmallIcons_12: {fileID: 0} 367 | switchSmallIcons_13: {fileID: 0} 368 | switchSmallIcons_14: {fileID: 0} 369 | switchManualHTML: 370 | switchAccessibleURLs: 371 | switchLegalInformation: 372 | switchMainThreadStackSize: 1048576 373 | switchPresenceGroupId: 374 | switchLogoHandling: 0 375 | switchReleaseVersion: 0 376 | switchDisplayVersion: 1.0.0 377 | switchStartupUserAccount: 0 378 | switchTouchScreenUsage: 0 379 | switchSupportedLanguagesMask: 0 380 | switchLogoType: 0 381 | switchApplicationErrorCodeCategory: 382 | switchUserAccountSaveDataSize: 0 383 | switchUserAccountSaveDataJournalSize: 0 384 | switchApplicationAttribute: 0 385 | switchCardSpecSize: -1 386 | switchCardSpecClock: -1 387 | switchRatingsMask: 0 388 | switchRatingsInt_0: 0 389 | switchRatingsInt_1: 0 390 | switchRatingsInt_2: 0 391 | switchRatingsInt_3: 0 392 | switchRatingsInt_4: 0 393 | switchRatingsInt_5: 0 394 | switchRatingsInt_6: 0 395 | switchRatingsInt_7: 0 396 | switchRatingsInt_8: 0 397 | switchRatingsInt_9: 0 398 | switchRatingsInt_10: 0 399 | switchRatingsInt_11: 0 400 | switchLocalCommunicationIds_0: 401 | switchLocalCommunicationIds_1: 402 | switchLocalCommunicationIds_2: 403 | switchLocalCommunicationIds_3: 404 | switchLocalCommunicationIds_4: 405 | switchLocalCommunicationIds_5: 406 | switchLocalCommunicationIds_6: 407 | switchLocalCommunicationIds_7: 408 | switchParentalControl: 0 409 | switchAllowsScreenshot: 1 410 | switchAllowsVideoCapturing: 1 411 | switchAllowsRuntimeAddOnContentInstall: 0 412 | switchDataLossConfirmation: 0 413 | switchUserAccountLockEnabled: 0 414 | switchSystemResourceMemory: 16777216 415 | switchSupportedNpadStyles: 3 416 | switchNativeFsCacheSize: 32 417 | switchIsHoldTypeHorizontal: 0 418 | switchSupportedNpadCount: 8 419 | switchSocketConfigEnabled: 0 420 | switchTcpInitialSendBufferSize: 32 421 | switchTcpInitialReceiveBufferSize: 64 422 | switchTcpAutoSendBufferSizeMax: 256 423 | switchTcpAutoReceiveBufferSizeMax: 256 424 | switchUdpSendBufferSize: 9 425 | switchUdpReceiveBufferSize: 42 426 | switchSocketBufferEfficiency: 4 427 | switchSocketInitializeEnabled: 1 428 | switchNetworkInterfaceManagerInitializeEnabled: 1 429 | switchPlayerConnectionEnabled: 1 430 | ps4NPAgeRating: 12 431 | ps4NPTitleSecret: 432 | ps4NPTrophyPackPath: 433 | ps4ParentalLevel: 11 434 | ps4ContentID: ED1633-NPXX51362_00-0000000000000000 435 | ps4Category: 0 436 | ps4MasterVersion: 01.00 437 | ps4AppVersion: 01.00 438 | ps4AppType: 0 439 | ps4ParamSfxPath: 440 | ps4VideoOutPixelFormat: 0 441 | ps4VideoOutInitialWidth: 1920 442 | ps4VideoOutBaseModeInitialWidth: 1920 443 | ps4VideoOutReprojectionRate: 60 444 | ps4PronunciationXMLPath: 445 | ps4PronunciationSIGPath: 446 | ps4BackgroundImagePath: 447 | ps4StartupImagePath: 448 | ps4StartupImagesFolder: 449 | ps4IconImagesFolder: 450 | ps4SaveDataImagePath: 451 | ps4SdkOverride: 452 | ps4BGMPath: 453 | ps4ShareFilePath: 454 | ps4ShareOverlayImagePath: 455 | ps4PrivacyGuardImagePath: 456 | ps4NPtitleDatPath: 457 | ps4RemotePlayKeyAssignment: -1 458 | ps4RemotePlayKeyMappingDir: 459 | ps4PlayTogetherPlayerCount: 0 460 | ps4EnterButtonAssignment: 1 461 | ps4ApplicationParam1: 0 462 | ps4ApplicationParam2: 0 463 | ps4ApplicationParam3: 0 464 | ps4ApplicationParam4: 0 465 | ps4DownloadDataSize: 0 466 | ps4GarlicHeapSize: 2048 467 | ps4ProGarlicHeapSize: 2560 468 | ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ 469 | ps4pnSessions: 1 470 | ps4pnPresence: 1 471 | ps4pnFriends: 1 472 | ps4pnGameCustomData: 1 473 | playerPrefsSupport: 0 474 | enableApplicationExit: 0 475 | resetTempFolder: 1 476 | restrictedAudioUsageRights: 0 477 | ps4UseResolutionFallback: 0 478 | ps4ReprojectionSupport: 0 479 | ps4UseAudio3dBackend: 0 480 | ps4SocialScreenEnabled: 0 481 | ps4ScriptOptimizationLevel: 0 482 | ps4Audio3dVirtualSpeakerCount: 14 483 | ps4attribCpuUsage: 0 484 | ps4PatchPkgPath: 485 | ps4PatchLatestPkgPath: 486 | ps4PatchChangeinfoPath: 487 | ps4PatchDayOne: 0 488 | ps4attribUserManagement: 0 489 | ps4attribMoveSupport: 0 490 | ps4attrib3DSupport: 0 491 | ps4attribShareSupport: 0 492 | ps4attribExclusiveVR: 0 493 | ps4disableAutoHideSplash: 0 494 | ps4videoRecordingFeaturesUsed: 0 495 | ps4contentSearchFeaturesUsed: 0 496 | ps4attribEyeToEyeDistanceSettingVR: 0 497 | ps4IncludedModules: [] 498 | monoEnv: 499 | splashScreenBackgroundSourceLandscape: {fileID: 21300000, guid: 2774ece821240e94ca5778aa00ef15e8, 500 | type: 3} 501 | splashScreenBackgroundSourcePortrait: {fileID: 0} 502 | spritePackerPolicy: 503 | webGLMemorySize: 256 504 | webGLExceptionSupport: 1 505 | webGLNameFilesAsHashes: 0 506 | webGLDataCaching: 0 507 | webGLDebugSymbols: 0 508 | webGLEmscriptenArgs: 509 | webGLModulesDirectory: 510 | webGLTemplate: APPLICATION:Default 511 | webGLAnalyzeBuildSize: 0 512 | webGLUseEmbeddedResources: 0 513 | webGLCompressionFormat: 1 514 | webGLLinkerTarget: 1 515 | webGLThreadsSupport: 0 516 | scriptingDefineSymbols: {} 517 | platformArchitecture: {} 518 | scriptingBackend: {} 519 | il2cppCompilerConfiguration: {} 520 | managedStrippingLevel: {} 521 | incrementalIl2cppBuild: {} 522 | allowUnsafeCode: 0 523 | additionalIl2CppArgs: 524 | scriptingRuntimeVersion: 0 525 | apiCompatibilityLevelPerPlatform: {} 526 | m_RenderingPath: 1 527 | m_MobileRenderingPath: 1 528 | metroPackageName: unity 529 | metroPackageVersion: 530 | metroCertificatePath: 531 | metroCertificatePassword: 532 | metroCertificateSubject: 533 | metroCertificateIssuer: 534 | metroCertificateNotAfter: 0000000000000000 535 | metroApplicationDescription: unity 536 | wsaImages: {} 537 | metroTileShortName: 538 | metroTileShowName: 0 539 | metroMediumTileShowName: 0 540 | metroLargeTileShowName: 0 541 | metroWideTileShowName: 0 542 | metroSupportStreamingInstall: 0 543 | metroLastRequiredScene: 0 544 | metroDefaultTileSize: 1 545 | metroTileForegroundText: 2 546 | metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} 547 | metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, 548 | a: 1} 549 | metroSplashScreenUseBackgroundColor: 0 550 | platformCapabilities: {} 551 | metroTargetDeviceFamilies: {} 552 | metroFTAName: 553 | metroFTAFileTypes: [] 554 | metroProtocolName: 555 | metroCompilationOverrides: 1 556 | XboxOneProductId: 557 | XboxOneUpdateKey: 558 | XboxOneSandboxId: 559 | XboxOneContentId: 560 | XboxOneTitleId: 561 | XboxOneSCId: 562 | XboxOneGameOsOverridePath: 563 | XboxOnePackagingOverridePath: 564 | XboxOneAppManifestOverridePath: 565 | XboxOneVersion: 1.0.0.0 566 | XboxOnePackageEncryption: 0 567 | XboxOnePackageUpdateGranularity: 2 568 | XboxOneDescription: 569 | XboxOneLanguage: 570 | - enus 571 | XboxOneCapability: [] 572 | XboxOneGameRating: {} 573 | XboxOneIsContentPackage: 0 574 | XboxOneEnableGPUVariability: 0 575 | XboxOneSockets: {} 576 | XboxOneSplashScreen: {fileID: 0} 577 | XboxOneAllowedProductIds: [] 578 | XboxOnePersistentLocalStorageSize: 0 579 | XboxOneXTitleMemory: 8 580 | xboxOneScriptCompiler: 0 581 | XboxOneOverrideIdentityName: 582 | vrEditorSettings: 583 | daydream: 584 | daydreamIconForeground: {fileID: 0} 585 | daydreamIconBackground: {fileID: 0} 586 | cloudServicesEnabled: {} 587 | luminIcon: 588 | m_Name: 589 | m_ModelFolderPath: 590 | m_PortalFolderPath: 591 | luminCert: 592 | m_CertPath: 593 | m_PrivateKeyPath: 594 | luminIsChannelApp: 0 595 | luminVersion: 596 | m_VersionCode: 1 597 | m_VersionName: 598 | facebookSdkVersion: 7.9.4 599 | facebookAppId: 600 | facebookCookies: 1 601 | facebookLogging: 1 602 | facebookStatus: 1 603 | facebookXfbml: 0 604 | facebookFrictionlessRequests: 1 605 | apiCompatibilityLevel: 2 606 | cloudProjectId: 607 | framebufferDepthMemorylessMode: 0 608 | projectName: 609 | organizationId: 610 | cloudEnabled: 0 611 | enableNativePlatformBackendsForNewInputSystem: 0 612 | disableOldInputManagerSupport: 0 613 | legacyClampBlendShapeWeights: 1 614 | -------------------------------------------------------------------------------- /unity/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.4.0f1 2 | -------------------------------------------------------------------------------- /unity/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!47 &1 4 | QualitySettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 5 7 | m_CurrentQuality: 5 8 | m_QualitySettings: 9 | - serializedVersion: 2 10 | name: Very Low 11 | pixelLightCount: 0 12 | shadows: 0 13 | shadowResolution: 0 14 | shadowProjection: 1 15 | shadowCascades: 1 16 | shadowDistance: 15 17 | shadowNearPlaneOffset: 3 18 | shadowCascade2Split: 0.33333334 19 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 20 | shadowmaskMode: 0 21 | blendWeights: 1 22 | textureQuality: 1 23 | anisotropicTextures: 0 24 | antiAliasing: 0 25 | softParticles: 0 26 | softVegetation: 0 27 | realtimeReflectionProbes: 0 28 | billboardsFaceCameraPosition: 0 29 | vSyncCount: 0 30 | lodBias: 0.3 31 | maximumLODLevel: 0 32 | particleRaycastBudget: 4 33 | asyncUploadTimeSlice: 2 34 | asyncUploadBufferSize: 4 35 | resolutionScalingFixedDPIFactor: 1 36 | excludedTargetPlatforms: [] 37 | - serializedVersion: 2 38 | name: Low 39 | pixelLightCount: 0 40 | shadows: 0 41 | shadowResolution: 0 42 | shadowProjection: 1 43 | shadowCascades: 1 44 | shadowDistance: 20 45 | shadowNearPlaneOffset: 3 46 | shadowCascade2Split: 0.33333334 47 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 48 | shadowmaskMode: 0 49 | blendWeights: 2 50 | textureQuality: 0 51 | anisotropicTextures: 0 52 | antiAliasing: 0 53 | softParticles: 0 54 | softVegetation: 0 55 | realtimeReflectionProbes: 0 56 | billboardsFaceCameraPosition: 0 57 | vSyncCount: 0 58 | lodBias: 0.4 59 | maximumLODLevel: 0 60 | particleRaycastBudget: 16 61 | asyncUploadTimeSlice: 2 62 | asyncUploadBufferSize: 4 63 | resolutionScalingFixedDPIFactor: 1 64 | excludedTargetPlatforms: [] 65 | - serializedVersion: 2 66 | name: Medium 67 | pixelLightCount: 1 68 | shadows: 1 69 | shadowResolution: 0 70 | shadowProjection: 1 71 | shadowCascades: 1 72 | shadowDistance: 20 73 | shadowNearPlaneOffset: 3 74 | shadowCascade2Split: 0.33333334 75 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 76 | shadowmaskMode: 0 77 | blendWeights: 2 78 | textureQuality: 0 79 | anisotropicTextures: 1 80 | antiAliasing: 0 81 | softParticles: 0 82 | softVegetation: 0 83 | realtimeReflectionProbes: 0 84 | billboardsFaceCameraPosition: 0 85 | vSyncCount: 1 86 | lodBias: 0.7 87 | maximumLODLevel: 0 88 | particleRaycastBudget: 64 89 | asyncUploadTimeSlice: 2 90 | asyncUploadBufferSize: 4 91 | resolutionScalingFixedDPIFactor: 1 92 | excludedTargetPlatforms: [] 93 | - serializedVersion: 2 94 | name: High 95 | pixelLightCount: 2 96 | shadows: 2 97 | shadowResolution: 1 98 | shadowProjection: 1 99 | shadowCascades: 2 100 | shadowDistance: 40 101 | shadowNearPlaneOffset: 3 102 | shadowCascade2Split: 0.33333334 103 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 104 | shadowmaskMode: 1 105 | blendWeights: 2 106 | textureQuality: 0 107 | anisotropicTextures: 1 108 | antiAliasing: 0 109 | softParticles: 0 110 | softVegetation: 1 111 | realtimeReflectionProbes: 1 112 | billboardsFaceCameraPosition: 1 113 | vSyncCount: 1 114 | lodBias: 1 115 | maximumLODLevel: 0 116 | particleRaycastBudget: 256 117 | asyncUploadTimeSlice: 2 118 | asyncUploadBufferSize: 4 119 | resolutionScalingFixedDPIFactor: 1 120 | excludedTargetPlatforms: [] 121 | - serializedVersion: 2 122 | name: Very High 123 | pixelLightCount: 3 124 | shadows: 2 125 | shadowResolution: 2 126 | shadowProjection: 1 127 | shadowCascades: 2 128 | shadowDistance: 70 129 | shadowNearPlaneOffset: 3 130 | shadowCascade2Split: 0.33333334 131 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 132 | shadowmaskMode: 1 133 | blendWeights: 4 134 | textureQuality: 0 135 | anisotropicTextures: 2 136 | antiAliasing: 2 137 | softParticles: 1 138 | softVegetation: 1 139 | realtimeReflectionProbes: 1 140 | billboardsFaceCameraPosition: 1 141 | vSyncCount: 1 142 | lodBias: 1.5 143 | maximumLODLevel: 0 144 | particleRaycastBudget: 1024 145 | asyncUploadTimeSlice: 2 146 | asyncUploadBufferSize: 4 147 | resolutionScalingFixedDPIFactor: 1 148 | excludedTargetPlatforms: [] 149 | - serializedVersion: 2 150 | name: Ultra 151 | pixelLightCount: 4 152 | shadows: 2 153 | shadowResolution: 2 154 | shadowProjection: 1 155 | shadowCascades: 4 156 | shadowDistance: 150 157 | shadowNearPlaneOffset: 3 158 | shadowCascade2Split: 0.33333334 159 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 160 | shadowmaskMode: 1 161 | blendWeights: 4 162 | textureQuality: 0 163 | anisotropicTextures: 2 164 | antiAliasing: 2 165 | softParticles: 1 166 | softVegetation: 1 167 | realtimeReflectionProbes: 1 168 | billboardsFaceCameraPosition: 1 169 | vSyncCount: 1 170 | lodBias: 2 171 | maximumLODLevel: 0 172 | particleRaycastBudget: 4096 173 | asyncUploadTimeSlice: 2 174 | asyncUploadBufferSize: 4 175 | resolutionScalingFixedDPIFactor: 1 176 | excludedTargetPlatforms: [] 177 | m_PerPlatformDefaultQuality: 178 | Android: 2 179 | Nintendo 3DS: 5 180 | Nintendo Switch: 5 181 | PS4: 5 182 | PSM: 5 183 | PSP2: 2 184 | Samsung TV: 2 185 | Standalone: 5 186 | Tizen: 2 187 | WebGL: 3 188 | WiiU: 5 189 | Windows Store Apps: 5 190 | XboxOne: 5 191 | iPhone: 2 192 | tvOS: 2 193 | -------------------------------------------------------------------------------- /unity/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /unity/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /unity/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 1 7 | m_Enabled: 1 8 | m_TestMode: 0 9 | m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events 10 | m_EventUrl: https://cdp.cloud.unity3d.com/v1/events 11 | m_ConfigUrl: https://config.uca.cloud.unity3d.com 12 | m_TestInitMode: 0 13 | CrashReportingSettings: 14 | m_EventUrl: https://perf-events.cloud.unity3d.com 15 | m_Enabled: 0 16 | m_LogBufferSize: 10 17 | m_CaptureEditorExceptions: 1 18 | UnityPurchasingSettings: 19 | m_Enabled: 0 20 | m_TestMode: 0 21 | UnityAnalyticsSettings: 22 | m_Enabled: 0 23 | m_TestMode: 0 24 | m_InitializeOnStartup: 1 25 | UnityAdsSettings: 26 | m_Enabled: 0 27 | m_InitializeOnStartup: 1 28 | m_TestMode: 0 29 | m_IosGameId: 30 | m_AndroidGameId: 31 | m_GameIds: {} 32 | m_GameId: 33 | PerformanceReportingSettings: 34 | m_Enabled: 0 35 | -------------------------------------------------------------------------------- /unity/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!937362698 &1 4 | VFXManager: 5 | m_ObjectHideFlags: 0 6 | m_IndirectShader: {fileID: 0} 7 | m_CopyBufferShader: {fileID: 0} 8 | m_SortShader: {fileID: 0} 9 | m_RenderPipeSettingsPath: 10 | m_FixedTimeStep: 0.016666668 11 | m_MaxDeltaTime: 0.05 12 | --------------------------------------------------------------------------------