├── ProjectSettings ├── ProjectVersion.txt ├── ClusterInputManager.asset ├── PresetManager.asset ├── UPRSettings.asset ├── NetworkManager.asset ├── TimeManager.asset ├── EditorBuildSettings.asset ├── VFXManager.asset ├── AudioManager.asset ├── TagManager.asset ├── EditorSettings.asset ├── DynamicsManager.asset ├── UnityConnectSettings.asset ├── Physics2DSettings.asset ├── NavMeshAreas.asset ├── GraphicsSettings.asset ├── QualitySettings.asset ├── InputManager.asset └── ProjectSettings.asset ├── Assets ├── Plugins │ ├── Android │ │ ├── videoplugin-lib-debug.jar │ │ └── videoplugin-lib-debug.jar.meta │ └── Android.meta ├── Project │ ├── Main.unity.meta │ ├── Main.cs.meta │ ├── Main.cs │ └── Main.unity ├── Plugins.meta └── Project.meta ├── README.md ├── .gitignore ├── Packages └── manifest.json └── LICENSE /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.4.21f1 2 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/videoplugin-lib-debug.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waynehan-lab/EasyMovie-Unity/HEAD/Assets/Plugins/Android/videoplugin-lib-debug.jar -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /ProjectSettings/UPRSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!487778994 &1 4 | UPRManager: 5 | m_openweb: 1 6 | m_screenshotEnable: 1 7 | m_objectProfilerTicker: 0 8 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # EasyMovie-Unity 2 | Displays the Android MediaPlayer decoded video in Unity in real time. 3 | 4 | The Android plugin library is [EasyMovie-Android](https://github.com/hywenbinger/EasyMovie-Android) 5 | -------------------------------------------------------------------------------- /Assets/Project/Main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57caf9059a59f7642a871ed03b027f23 3 | timeCreated: 1564730319 4 | licenseType: Free 5 | DefaultImporter: 6 | externalObjects: {} 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3c202779752482498880c18bde9454d 3 | folderAsset: yes 4 | timeCreated: 1564730337 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Project.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95cd9c42079cc084296f66d70933fabb 3 | folderAsset: yes 4 | timeCreated: 1568705613 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f6ad8f5c248ee154fb9be27366cf1c0f 3 | folderAsset: yes 4 | timeCreated: 1564730347 5 | licenseType: Free 6 | DefaultImporter: 7 | externalObjects: {} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /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 | - enabled: 1 9 | path: Assets/Project/Main.unity 10 | guid: 57caf9059a59f7642a871ed03b027f23 11 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Project/Main.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 016568b4a1e16034fb5a23bcb63c763b 3 | timeCreated: 1564731151 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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: 0 10 | m_SpritePackerMode: 0 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 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/videoplugin-lib-debug.jar.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9bf53bae83c81b44db2a7b9a5e0b44bd 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/api/events/crashes 15 | m_Enabled: 1 16 | m_LogBufferSize: 10 17 | m_CaptureEditorExceptions: 1 18 | UnityPurchasingSettings: 19 | m_Enabled: 0 20 | m_TestMode: 0 21 | UnityAnalyticsSettings: 22 | m_Enabled: 1 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 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # This .gitignore file should be placed at the root of your Unity project directory 2 | # 3 | # Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore 4 | # 5 | /[Ll]ibrary/ 6 | /[Tt]emp/ 7 | /[Oo]bj/ 8 | /[Bb]uild/ 9 | /[Bb]uilds/ 10 | /[Ll]ogs/ 11 | /[Mm]emoryCaptures/ 12 | 13 | # Asset meta data should only be ignored when the corresponding asset is also ignored 14 | !/[Aa]ssets/**/*.meta 15 | 16 | # Uncomment this line if you wish to ignore the asset store tools plugin 17 | # /[Aa]ssets/AssetStoreTools* 18 | 19 | # Autogenerated Jetbrains Rider plugin 20 | [Aa]ssets/Plugins/Editor/JetBrains* 21 | 22 | # Visual Studio cache directory 23 | .vs/ 24 | 25 | # Gradle cache directory 26 | .gradle/ 27 | 28 | # Autogenerated VS/MD/Consulo solution and project files 29 | ExportedObj/ 30 | .consulo/ 31 | *.csproj 32 | *.unityproj 33 | *.sln 34 | *.suo 35 | *.tmp 36 | *.user 37 | *.userprefs 38 | *.pidb 39 | *.booproj 40 | *.svd 41 | *.pdb 42 | *.mdb 43 | *.opendb 44 | *.VC.db 45 | 46 | # Unity3D generated meta files 47 | *.pidb.meta 48 | *.pdb.meta 49 | *.mdb.meta 50 | 51 | # Unity3D generated file on crash reports 52 | sysinfo.txt 53 | 54 | # Builds 55 | *.apk 56 | *.unitypackage 57 | 58 | # Crashlytics generated file 59 | crashlytics-build.properties 60 | 61 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Project/Main.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | using UnityEngine.UI; 5 | using System; 6 | 7 | 8 | public class Main : MonoBehaviour 9 | { 10 | 11 | public MeshRenderer meshRenderer; 12 | public RawImage rawImage; 13 | private AndroidJavaObject nativeObject; 14 | private int width, height; 15 | private Texture2D texture2D; 16 | 17 | // Use this for initialization 18 | void Start() 19 | { 20 | nativeObject = new AndroidJavaObject("com.example.videoplugin.VideoPlugin"); 21 | width = 1600; 22 | height = 900; 23 | Debug.Log("VideoPlugin:" + width + ", " + height); 24 | } 25 | 26 | // Update is called once per frame 27 | void Update() 28 | { 29 | if (texture2D != null && nativeObject.Call("isUpdateFrame")) 30 | { 31 | Debug.Log("VideoPlugin:Update"); 32 | nativeObject.Call("updateTexture"); 33 | GL.InvalidateState(); 34 | } 35 | } 36 | 37 | public void Click() 38 | { 39 | Debug.Log("VideoPlugin:Start"); 40 | if (texture2D == null) 41 | { 42 | texture2D = new Texture2D(width, height, TextureFormat.RGB24, false, false); 43 | //texture2D.wrapMode = TextureWrapMode.Clamp; 44 | //texture2D.filterMode = FilterMode.Bilinear; 45 | //texture2D.Apply(); 46 | nativeObject.Call("start", (int)texture2D.GetNativeTexturePtr(), width, height); 47 | meshRenderer.material.mainTexture = texture2D; 48 | rawImage.texture = texture2D; 49 | } 50 | } 51 | 52 | } 53 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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.doc_zh": "0.1.0-preview.10", 7 | "com.unity.package-manager-ui": "2.0.8", 8 | "com.unity.purchasing": "2.0.3", 9 | "com.unity.textmeshpro": "1.4.1", 10 | "com.unity.modules.ai": "1.0.0", 11 | "com.unity.modules.animation": "1.0.0", 12 | "com.unity.modules.assetbundle": "1.0.0", 13 | "com.unity.modules.audio": "1.0.0", 14 | "com.unity.modules.cloth": "1.0.0", 15 | "com.unity.modules.director": "1.0.0", 16 | "com.unity.modules.imageconversion": "1.0.0", 17 | "com.unity.modules.imgui": "1.0.0", 18 | "com.unity.modules.jsonserialize": "1.0.0", 19 | "com.unity.modules.particlesystem": "1.0.0", 20 | "com.unity.modules.physics": "1.0.0", 21 | "com.unity.modules.physics2d": "1.0.0", 22 | "com.unity.modules.screencapture": "1.0.0", 23 | "com.unity.modules.terrain": "1.0.0", 24 | "com.unity.modules.terrainphysics": "1.0.0", 25 | "com.unity.modules.tilemap": "1.0.0", 26 | "com.unity.modules.ui": "1.0.0", 27 | "com.unity.modules.uielements": "1.0.0", 28 | "com.unity.modules.umbra": "1.0.0", 29 | "com.unity.modules.unityanalytics": "1.0.0", 30 | "com.unity.modules.unitywebrequest": "1.0.0", 31 | "com.unity.modules.unitywebrequestassetbundle": "1.0.0", 32 | "com.unity.modules.unitywebrequestaudio": "1.0.0", 33 | "com.unity.modules.unitywebrequesttexture": "1.0.0", 34 | "com.unity.modules.unitywebrequestwww": "1.0.0", 35 | "com.unity.modules.vehicles": "1.0.0", 36 | "com.unity.modules.video": "1.0.0", 37 | "com.unity.modules.vr": "1.0.0", 38 | "com.unity.modules.wind": "1.0.0", 39 | "com.unity.modules.xr": "1.0.0" 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /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: 18 7 | productGUID: 84ca980674e24264aabe78c1bd6cbbaf 8 | AndroidProfiler: 0 9 | AndroidFilterTouchesWhenObscured: 0 10 | AndroidEnableSustainedPerformanceMode: 0 11 | defaultScreenOrientation: 4 12 | targetDevice: 2 13 | useOnDemandResources: 0 14 | accelerometerFrequency: 60 15 | companyName: Default 16 | productName: EasyMovie 17 | defaultCursor: {fileID: 0} 18 | cursorHotspot: {x: 0, y: 0} 19 | m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} 20 | m_ShowUnitySplashScreen: 1 21 | m_ShowUnitySplashLogo: 1 22 | m_SplashScreenOverlayOpacity: 1 23 | m_SplashScreenAnimation: 1 24 | m_SplashScreenLogoStyle: 1 25 | m_SplashScreenDrawMode: 0 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 | m_VirtualRealitySplashScreen: {fileID: 0} 44 | m_ShowUnitySplashAds: 0 45 | m_AdsAndroidGameId: 46 | m_AdsIosGameId: 47 | m_ShowSplashAdsSlogan: 0 48 | m_SloganImage: {fileID: 0} 49 | m_SloganHeight: 150 50 | m_HolographicTrackingLossScreen: {fileID: 0} 51 | defaultScreenWidth: 1024 52 | defaultScreenHeight: 768 53 | defaultScreenWidthWeb: 960 54 | defaultScreenHeightWeb: 600 55 | m_StereoRenderingPath: 0 56 | m_ActiveColorSpace: 0 57 | m_MTRendering: 1 58 | m_StackTraceTypes: 010000000100000001000000010000000100000001000000 59 | iosShowActivityIndicatorOnLoading: -1 60 | androidShowActivityIndicatorOnLoading: -1 61 | displayResolutionDialog: 1 62 | iosUseCustomAppBackgroundBehavior: 0 63 | iosAllowHTTPDownload: 1 64 | allowedAutorotateToPortrait: 1 65 | allowedAutorotateToPortraitUpsideDown: 1 66 | allowedAutorotateToLandscapeRight: 1 67 | allowedAutorotateToLandscapeLeft: 1 68 | useOSAutorotation: 1 69 | use32BitDisplayBuffer: 1 70 | preserveFramebufferAlpha: 0 71 | disableDepthAndStencilBuffers: 0 72 | androidStartInFullscreen: 1 73 | androidRenderOutsideSafeArea: 0 74 | androidBlitType: 0 75 | defaultIsNativeResolution: 1 76 | macRetinaSupport: 1 77 | runInBackground: 0 78 | captureSingleScreen: 0 79 | muteOtherAudioSources: 0 80 | Prepare IOS For Recording: 0 81 | Force IOS Speakers When Recording: 0 82 | deferSystemGesturesMode: 0 83 | hideHomeButton: 0 84 | submitAnalytics: 1 85 | usePlayerLog: 1 86 | bakeCollisionMeshes: 0 87 | forceSingleInstance: 0 88 | resizableWindow: 0 89 | useMacAppStoreValidation: 0 90 | macAppStoreCategory: public.app-category.games 91 | gpuSkinning: 0 92 | graphicsJobs: 0 93 | xboxPIXTextureCapture: 0 94 | xboxEnableAvatar: 0 95 | xboxEnableKinect: 0 96 | xboxEnableKinectAutoTracking: 0 97 | xboxEnableFitness: 0 98 | visibleInBackground: 1 99 | allowFullscreenSwitch: 1 100 | graphicsJobMode: 0 101 | fullscreenMode: 1 102 | xboxSpeechDB: 0 103 | xboxEnableHeadOrientation: 0 104 | xboxEnableGuest: 0 105 | xboxEnablePIXSampling: 0 106 | metalFramebufferOnly: 0 107 | xboxOneResolution: 0 108 | xboxOneSResolution: 0 109 | xboxOneXResolution: 3 110 | xboxOneMonoLoggingLevel: 0 111 | xboxOneLoggingLevel: 1 112 | xboxOneDisableEsram: 0 113 | xboxOneEnableTypeOptimization: 0 114 | xboxOnePresentImmediateThreshold: 0 115 | switchQueueCommandMemory: 0 116 | switchQueueControlMemory: 16384 117 | switchQueueComputeMemory: 262144 118 | switchNVNShaderPoolsGranularity: 33554432 119 | switchNVNDefaultPoolsGranularity: 16777216 120 | switchNVNOtherPoolsGranularity: 16777216 121 | vulkanEnableSetSRGBWrite: 0 122 | useSecurityBuild: 0 123 | m_SupportedAspectRatios: 124 | 4:3: 1 125 | 5:4: 1 126 | 16:10: 1 127 | 16:9: 1 128 | Others: 1 129 | bundleVersion: 1.0 130 | preloadedAssets: [] 131 | metroInputSource: 0 132 | wsaTransparentSwapchain: 0 133 | m_HolographicPauseOnTrackingLoss: 1 134 | xboxOneDisableKinectGpuReservation: 0 135 | xboxOneEnable7thCore: 0 136 | isWsaHolographicRemotingEnabled: 0 137 | vrSettings: 138 | cardboard: 139 | depthFormat: 0 140 | enableTransitionView: 0 141 | daydream: 142 | depthFormat: 0 143 | useSustainedPerformanceMode: 0 144 | enableVideoLayer: 0 145 | useProtectedVideoMemory: 0 146 | minimumSupportedHeadTracking: 0 147 | maximumSupportedHeadTracking: 1 148 | hololens: 149 | depthFormat: 1 150 | depthBufferSharingEnabled: 0 151 | oculus: 152 | sharedDepthBuffer: 0 153 | dashSupport: 0 154 | lowOverheadMode: 0 155 | protectedContext: 0 156 | v2Signing: 0 157 | enable360StereoCapture: 0 158 | protectGraphicsMemory: 0 159 | enableFrameTimingStats: 0 160 | useHDRDisplay: 0 161 | m_ColorGamuts: 00000000 162 | targetPixelDensity: 30 163 | resolutionScalingMode: 0 164 | androidSupportedAspectRatio: 1 165 | androidMaxAspectRatio: 2.1 166 | applicationIdentifier: 167 | Android: com.example.video 168 | buildNumber: {} 169 | AndroidBundleVersionCode: 1 170 | AndroidMinSdkVersion: 23 171 | AndroidTargetSdkVersion: 26 172 | AndroidPreferredInstallLocation: 1 173 | aotOptions: 174 | stripEngineCode: 1 175 | iPhoneStrippingLevel: 0 176 | iPhoneScriptCallOptimization: 0 177 | ForceInternetPermission: 0 178 | ForceSDCardPermission: 1 179 | CreateWallpaper: 0 180 | APKExpansionFiles: 0 181 | keepLoadedShadersAlive: 0 182 | StripUnusedMeshComponents: 0 183 | VertexChannelCompressionMask: 214 184 | iPhoneSdkVersion: 988 185 | iOSTargetOSVersionString: 9.0 186 | tvOSSdkVersion: 0 187 | tvOSRequireExtendedGameController: 0 188 | tvOSTargetOSVersionString: 9.0 189 | uIPrerenderedIcon: 0 190 | uIRequiresPersistentWiFi: 0 191 | uIRequiresFullScreen: 1 192 | uIStatusBarHidden: 1 193 | uIExitOnSuspend: 0 194 | uIStatusBarStyle: 0 195 | iPhoneSplashScreen: {fileID: 0} 196 | iPhoneHighResSplashScreen: {fileID: 0} 197 | iPhoneTallHighResSplashScreen: {fileID: 0} 198 | iPhone47inSplashScreen: {fileID: 0} 199 | iPhone55inPortraitSplashScreen: {fileID: 0} 200 | iPhone55inLandscapeSplashScreen: {fileID: 0} 201 | iPhone58inPortraitSplashScreen: {fileID: 0} 202 | iPhone58inLandscapeSplashScreen: {fileID: 0} 203 | iPadPortraitSplashScreen: {fileID: 0} 204 | iPadHighResPortraitSplashScreen: {fileID: 0} 205 | iPadLandscapeSplashScreen: {fileID: 0} 206 | iPadHighResLandscapeSplashScreen: {fileID: 0} 207 | appleTVSplashScreen: {fileID: 0} 208 | appleTVSplashScreen2x: {fileID: 0} 209 | tvOSSmallIconLayers: [] 210 | tvOSSmallIconLayers2x: [] 211 | tvOSLargeIconLayers: [] 212 | tvOSLargeIconLayers2x: [] 213 | tvOSTopShelfImageLayers: [] 214 | tvOSTopShelfImageLayers2x: [] 215 | tvOSTopShelfImageWideLayers: [] 216 | tvOSTopShelfImageWideLayers2x: [] 217 | iOSLaunchScreenType: 0 218 | iOSLaunchScreenPortrait: {fileID: 0} 219 | iOSLaunchScreenLandscape: {fileID: 0} 220 | iOSLaunchScreenBackgroundColor: 221 | serializedVersion: 2 222 | rgba: 0 223 | iOSLaunchScreenFillPct: 100 224 | iOSLaunchScreenSize: 100 225 | iOSLaunchScreenCustomXibPath: 226 | iOSLaunchScreeniPadType: 0 227 | iOSLaunchScreeniPadImage: {fileID: 0} 228 | iOSLaunchScreeniPadBackgroundColor: 229 | serializedVersion: 2 230 | rgba: 0 231 | iOSLaunchScreeniPadFillPct: 100 232 | iOSLaunchScreeniPadSize: 100 233 | iOSLaunchScreeniPadCustomXibPath: 234 | iOSUseLaunchScreenStoryboard: 0 235 | iOSLaunchScreenCustomStoryboardPath: 236 | iOSDeviceRequirements: [] 237 | iOSURLSchemes: [] 238 | iOSBackgroundModes: 0 239 | iOSMetalForceHardShadows: 0 240 | metalEditorSupport: 1 241 | metalAPIValidation: 1 242 | iOSRenderExtraFrameOnPause: 0 243 | appleDeveloperTeamID: 244 | iOSManualSigningProvisioningProfileID: 245 | tvOSManualSigningProvisioningProfileID: 246 | iOSManualSigningProvisioningProfileType: 0 247 | tvOSManualSigningProvisioningProfileType: 0 248 | appleEnableAutomaticSigning: 0 249 | iOSRequireARKit: 0 250 | iOSAutomaticallyDetectAndAddCapabilities: 1 251 | appleEnableProMotion: 0 252 | clonedFromGUID: 00000000000000000000000000000000 253 | templatePackageId: 254 | templateDefaultScene: 255 | AndroidTargetArchitectures: 1 256 | AndroidSplashScreenScale: 0 257 | androidSplashScreen: {fileID: 0} 258 | AndroidKeystoreName: 259 | AndroidKeyaliasName: 260 | AndroidBuildApkPerCpuArchitecture: 0 261 | AndroidTVCompatibility: 1 262 | AndroidIsGame: 1 263 | AndroidEnableTango: 0 264 | androidEnableBanner: 1 265 | androidUseLowAccuracyLocation: 0 266 | m_AndroidBanners: 267 | - width: 320 268 | height: 180 269 | banner: {fileID: 0} 270 | androidGamepadSupportLevel: 0 271 | resolutionDialogBanner: {fileID: 0} 272 | m_BuildTargetIcons: [] 273 | m_BuildTargetPlatformIcons: 274 | - m_BuildTarget: Android 275 | m_Icons: 276 | - m_Textures: [] 277 | m_Width: 192 278 | m_Height: 192 279 | m_Kind: 1 280 | m_SubKind: 281 | - m_Textures: [] 282 | m_Width: 144 283 | m_Height: 144 284 | m_Kind: 1 285 | m_SubKind: 286 | - m_Textures: [] 287 | m_Width: 96 288 | m_Height: 96 289 | m_Kind: 1 290 | m_SubKind: 291 | - m_Textures: [] 292 | m_Width: 72 293 | m_Height: 72 294 | m_Kind: 1 295 | m_SubKind: 296 | - m_Textures: [] 297 | m_Width: 48 298 | m_Height: 48 299 | m_Kind: 1 300 | m_SubKind: 301 | - m_Textures: [] 302 | m_Width: 36 303 | m_Height: 36 304 | m_Kind: 1 305 | m_SubKind: 306 | - m_Textures: [] 307 | m_Width: 192 308 | m_Height: 192 309 | m_Kind: 0 310 | m_SubKind: 311 | - m_Textures: [] 312 | m_Width: 144 313 | m_Height: 144 314 | m_Kind: 0 315 | m_SubKind: 316 | - m_Textures: [] 317 | m_Width: 96 318 | m_Height: 96 319 | m_Kind: 0 320 | m_SubKind: 321 | - m_Textures: [] 322 | m_Width: 72 323 | m_Height: 72 324 | m_Kind: 0 325 | m_SubKind: 326 | - m_Textures: [] 327 | m_Width: 48 328 | m_Height: 48 329 | m_Kind: 0 330 | m_SubKind: 331 | - m_Textures: [] 332 | m_Width: 36 333 | m_Height: 36 334 | m_Kind: 0 335 | m_SubKind: 336 | - m_Textures: [] 337 | m_Width: 432 338 | m_Height: 432 339 | m_Kind: 2 340 | m_SubKind: 341 | - m_Textures: [] 342 | m_Width: 324 343 | m_Height: 324 344 | m_Kind: 2 345 | m_SubKind: 346 | - m_Textures: [] 347 | m_Width: 216 348 | m_Height: 216 349 | m_Kind: 2 350 | m_SubKind: 351 | - m_Textures: [] 352 | m_Width: 162 353 | m_Height: 162 354 | m_Kind: 2 355 | m_SubKind: 356 | - m_Textures: [] 357 | m_Width: 108 358 | m_Height: 108 359 | m_Kind: 2 360 | m_SubKind: 361 | - m_Textures: [] 362 | m_Width: 81 363 | m_Height: 81 364 | m_Kind: 2 365 | m_SubKind: 366 | m_BuildTargetBatching: [] 367 | m_BuildTargetEncrypting: [] 368 | m_BuildTargetGraphicsAPIs: 369 | - m_BuildTarget: AndroidPlayer 370 | m_APIs: 08000000 371 | m_Automatic: 0 372 | m_BuildTargetVRSettings: [] 373 | m_BuildTargetEnableVuforiaSettings: [] 374 | openGLRequireES31: 0 375 | openGLRequireES31AEP: 0 376 | m_TemplateCustomTags: {} 377 | mobileMTRendering: 378 | Android: 0 379 | iPhone: 1 380 | tvOS: 1 381 | m_BuildTargetGroupLightmapEncodingQuality: 382 | - m_BuildTarget: Standalone 383 | m_EncodingQuality: 1 384 | - m_BuildTarget: XboxOne 385 | m_EncodingQuality: 1 386 | - m_BuildTarget: PS4 387 | m_EncodingQuality: 1 388 | m_BuildTargetGroupLightmapSettings: [] 389 | playModeTestRunnerEnabled: 0 390 | runPlayModeTestAsEditModeTest: 0 391 | actionOnDotNetUnhandledException: 1 392 | enableInternalProfiler: 0 393 | logObjCUncaughtExceptions: 1 394 | enableCrashReportAPI: 0 395 | cameraUsageDescription: 396 | locationUsageDescription: 397 | microphoneUsageDescription: 398 | switchNetLibKey: 399 | switchSocketMemoryPoolSize: 6144 400 | switchSocketAllocatorPoolSize: 128 401 | switchSocketConcurrencyLimit: 14 402 | switchScreenResolutionBehavior: 2 403 | switchUseCPUProfiler: 0 404 | switchApplicationID: 0x01004b9000490000 405 | switchNSODependencies: 406 | switchTitleNames_0: 407 | switchTitleNames_1: 408 | switchTitleNames_2: 409 | switchTitleNames_3: 410 | switchTitleNames_4: 411 | switchTitleNames_5: 412 | switchTitleNames_6: 413 | switchTitleNames_7: 414 | switchTitleNames_8: 415 | switchTitleNames_9: 416 | switchTitleNames_10: 417 | switchTitleNames_11: 418 | switchTitleNames_12: 419 | switchTitleNames_13: 420 | switchTitleNames_14: 421 | switchPublisherNames_0: 422 | switchPublisherNames_1: 423 | switchPublisherNames_2: 424 | switchPublisherNames_3: 425 | switchPublisherNames_4: 426 | switchPublisherNames_5: 427 | switchPublisherNames_6: 428 | switchPublisherNames_7: 429 | switchPublisherNames_8: 430 | switchPublisherNames_9: 431 | switchPublisherNames_10: 432 | switchPublisherNames_11: 433 | switchPublisherNames_12: 434 | switchPublisherNames_13: 435 | switchPublisherNames_14: 436 | switchIcons_0: {fileID: 0} 437 | switchIcons_1: {fileID: 0} 438 | switchIcons_2: {fileID: 0} 439 | switchIcons_3: {fileID: 0} 440 | switchIcons_4: {fileID: 0} 441 | switchIcons_5: {fileID: 0} 442 | switchIcons_6: {fileID: 0} 443 | switchIcons_7: {fileID: 0} 444 | switchIcons_8: {fileID: 0} 445 | switchIcons_9: {fileID: 0} 446 | switchIcons_10: {fileID: 0} 447 | switchIcons_11: {fileID: 0} 448 | switchIcons_12: {fileID: 0} 449 | switchIcons_13: {fileID: 0} 450 | switchIcons_14: {fileID: 0} 451 | switchSmallIcons_0: {fileID: 0} 452 | switchSmallIcons_1: {fileID: 0} 453 | switchSmallIcons_2: {fileID: 0} 454 | switchSmallIcons_3: {fileID: 0} 455 | switchSmallIcons_4: {fileID: 0} 456 | switchSmallIcons_5: {fileID: 0} 457 | switchSmallIcons_6: {fileID: 0} 458 | switchSmallIcons_7: {fileID: 0} 459 | switchSmallIcons_8: {fileID: 0} 460 | switchSmallIcons_9: {fileID: 0} 461 | switchSmallIcons_10: {fileID: 0} 462 | switchSmallIcons_11: {fileID: 0} 463 | switchSmallIcons_12: {fileID: 0} 464 | switchSmallIcons_13: {fileID: 0} 465 | switchSmallIcons_14: {fileID: 0} 466 | switchManualHTML: 467 | switchAccessibleURLs: 468 | switchLegalInformation: 469 | switchMainThreadStackSize: 1048576 470 | switchPresenceGroupId: 471 | switchLogoHandling: 0 472 | switchReleaseVersion: 0 473 | switchDisplayVersion: 1.0.0 474 | switchStartupUserAccount: 0 475 | switchTouchScreenUsage: 0 476 | switchSupportedLanguagesMask: 0 477 | switchLogoType: 0 478 | switchApplicationErrorCodeCategory: 479 | switchUserAccountSaveDataSize: 0 480 | switchUserAccountSaveDataJournalSize: 0 481 | switchApplicationAttribute: 0 482 | switchCardSpecSize: -1 483 | switchCardSpecClock: -1 484 | switchRatingsMask: 0 485 | switchRatingsInt_0: 0 486 | switchRatingsInt_1: 0 487 | switchRatingsInt_2: 0 488 | switchRatingsInt_3: 0 489 | switchRatingsInt_4: 0 490 | switchRatingsInt_5: 0 491 | switchRatingsInt_6: 0 492 | switchRatingsInt_7: 0 493 | switchRatingsInt_8: 0 494 | switchRatingsInt_9: 0 495 | switchRatingsInt_10: 0 496 | switchRatingsInt_11: 0 497 | switchRatingsInt_12: 0 498 | switchLocalCommunicationIds_0: 499 | switchLocalCommunicationIds_1: 500 | switchLocalCommunicationIds_2: 501 | switchLocalCommunicationIds_3: 502 | switchLocalCommunicationIds_4: 503 | switchLocalCommunicationIds_5: 504 | switchLocalCommunicationIds_6: 505 | switchLocalCommunicationIds_7: 506 | switchParentalControl: 0 507 | switchAllowsScreenshot: 1 508 | switchAllowsVideoCapturing: 1 509 | switchAllowsRuntimeAddOnContentInstall: 0 510 | switchDataLossConfirmation: 0 511 | switchUserAccountLockEnabled: 0 512 | switchSystemResourceMemory: 16777216 513 | switchSupportedNpadStyles: 3 514 | switchNativeFsCacheSize: 32 515 | switchIsHoldTypeHorizontal: 0 516 | switchSupportedNpadCount: 8 517 | switchSocketConfigEnabled: 0 518 | switchTcpInitialSendBufferSize: 32 519 | switchTcpInitialReceiveBufferSize: 64 520 | switchTcpAutoSendBufferSizeMax: 256 521 | switchTcpAutoReceiveBufferSizeMax: 256 522 | switchUdpSendBufferSize: 9 523 | switchUdpReceiveBufferSize: 42 524 | switchSocketBufferEfficiency: 4 525 | switchSocketInitializeEnabled: 1 526 | switchNetworkInterfaceManagerInitializeEnabled: 1 527 | switchPlayerConnectionEnabled: 1 528 | ps4NPAgeRating: 12 529 | ps4NPTitleSecret: 530 | ps4NPTrophyPackPath: 531 | ps4ParentalLevel: 11 532 | ps4ContentID: ED1633-NPXX51362_00-0000000000000000 533 | ps4Category: 0 534 | ps4MasterVersion: 01.00 535 | ps4AppVersion: 01.00 536 | ps4AppType: 0 537 | ps4ParamSfxPath: 538 | ps4VideoOutPixelFormat: 0 539 | ps4VideoOutInitialWidth: 1920 540 | ps4VideoOutBaseModeInitialWidth: 1920 541 | ps4VideoOutReprojectionRate: 60 542 | ps4PronunciationXMLPath: 543 | ps4PronunciationSIGPath: 544 | ps4BackgroundImagePath: 545 | ps4StartupImagePath: 546 | ps4StartupImagesFolder: 547 | ps4IconImagesFolder: 548 | ps4SaveDataImagePath: 549 | ps4SdkOverride: 550 | ps4BGMPath: 551 | ps4ShareFilePath: 552 | ps4ShareOverlayImagePath: 553 | ps4PrivacyGuardImagePath: 554 | ps4NPtitleDatPath: 555 | ps4RemotePlayKeyAssignment: -1 556 | ps4RemotePlayKeyMappingDir: 557 | ps4PlayTogetherPlayerCount: 0 558 | ps4EnterButtonAssignment: 1 559 | ps4ApplicationParam1: 0 560 | ps4ApplicationParam2: 0 561 | ps4ApplicationParam3: 0 562 | ps4ApplicationParam4: 0 563 | ps4DownloadDataSize: 0 564 | ps4GarlicHeapSize: 2048 565 | ps4ProGarlicHeapSize: 2560 566 | ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ 567 | ps4pnSessions: 1 568 | ps4pnPresence: 1 569 | ps4pnFriends: 1 570 | ps4pnGameCustomData: 1 571 | playerPrefsSupport: 0 572 | enableApplicationExit: 0 573 | resetTempFolder: 1 574 | restrictedAudioUsageRights: 0 575 | ps4UseResolutionFallback: 0 576 | ps4ReprojectionSupport: 0 577 | ps4UseAudio3dBackend: 0 578 | ps4SocialScreenEnabled: 0 579 | ps4ScriptOptimizationLevel: 0 580 | ps4Audio3dVirtualSpeakerCount: 14 581 | ps4attribCpuUsage: 0 582 | ps4PatchPkgPath: 583 | ps4PatchLatestPkgPath: 584 | ps4PatchChangeinfoPath: 585 | ps4PatchDayOne: 0 586 | ps4attribUserManagement: 0 587 | ps4attribMoveSupport: 0 588 | ps4attrib3DSupport: 0 589 | ps4attribShareSupport: 0 590 | ps4attribExclusiveVR: 0 591 | ps4disableAutoHideSplash: 0 592 | ps4videoRecordingFeaturesUsed: 0 593 | ps4contentSearchFeaturesUsed: 0 594 | ps4attribEyeToEyeDistanceSettingVR: 0 595 | ps4IncludedModules: [] 596 | monoEnv: 597 | splashScreenBackgroundSourceLandscape: {fileID: 0} 598 | splashScreenBackgroundSourcePortrait: {fileID: 0} 599 | spritePackerPolicy: 600 | webGLMemorySize: 256 601 | webGLExceptionSupport: 1 602 | webGLNameFilesAsHashes: 0 603 | webGLDataCaching: 0 604 | webGLDebugSymbols: 0 605 | webGLEmscriptenArgs: 606 | webGLModulesDirectory: 607 | webGLTemplate: APPLICATION:Default 608 | webGLAnalyzeBuildSize: 0 609 | webGLUseEmbeddedResources: 0 610 | webGLCompressionFormat: 1 611 | webGLLinkerTarget: 1 612 | webGLThreadsSupport: 0 613 | scriptingDefineSymbols: {} 614 | platformArchitecture: {} 615 | scriptingBackend: {} 616 | il2cppCompilerConfiguration: {} 617 | managedStrippingLevel: {} 618 | incrementalIl2cppBuild: {} 619 | allowUnsafeCode: 0 620 | additionalIl2CppArgs: 621 | scriptingRuntimeVersion: 1 622 | apiCompatibilityLevelPerPlatform: {} 623 | m_RenderingPath: 1 624 | m_MobileRenderingPath: 1 625 | metroPackageName: UnityCameraDemo 626 | metroPackageVersion: 627 | metroCertificatePath: 628 | metroCertificatePassword: 629 | metroCertificateSubject: 630 | metroCertificateIssuer: 631 | metroCertificateNotAfter: 0000000000000000 632 | metroApplicationDescription: UnityCameraDemo 633 | wsaImages: {} 634 | metroTileShortName: 635 | metroTileShowName: 0 636 | metroMediumTileShowName: 0 637 | metroLargeTileShowName: 0 638 | metroWideTileShowName: 0 639 | metroSupportStreamingInstall: 0 640 | metroLastRequiredScene: 0 641 | metroDefaultTileSize: 1 642 | metroTileForegroundText: 2 643 | metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} 644 | metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, 645 | a: 1} 646 | metroSplashScreenUseBackgroundColor: 0 647 | platformCapabilities: {} 648 | metroTargetDeviceFamilies: {} 649 | metroFTAName: 650 | metroFTAFileTypes: [] 651 | metroProtocolName: 652 | metroCompilationOverrides: 1 653 | XboxOneProductId: 654 | XboxOneUpdateKey: 655 | XboxOneSandboxId: 656 | XboxOneContentId: 657 | XboxOneTitleId: 658 | XboxOneSCId: 659 | XboxOneGameOsOverridePath: 660 | XboxOnePackagingOverridePath: 661 | XboxOneAppManifestOverridePath: 662 | XboxOneVersion: 1.0.0.0 663 | XboxOnePackageEncryption: 0 664 | XboxOnePackageUpdateGranularity: 2 665 | XboxOneDescription: 666 | XboxOneLanguage: 667 | - enus 668 | XboxOneCapability: [] 669 | XboxOneGameRating: {} 670 | XboxOneIsContentPackage: 0 671 | XboxOneEnableGPUVariability: 0 672 | XboxOneSockets: {} 673 | XboxOneSplashScreen: {fileID: 0} 674 | XboxOneAllowedProductIds: [] 675 | XboxOnePersistentLocalStorageSize: 0 676 | XboxOneXTitleMemory: 8 677 | xboxOneScriptCompiler: 0 678 | XboxOneOverrideIdentityName: 679 | vrEditorSettings: 680 | daydream: 681 | daydreamIconForeground: {fileID: 0} 682 | daydreamIconBackground: {fileID: 0} 683 | cloudServicesEnabled: 684 | UNet: 1 685 | luminIcon: 686 | m_Name: 687 | m_ModelFolderPath: 688 | m_PortalFolderPath: 689 | luminCert: 690 | m_CertPath: 691 | m_PrivateKeyPath: 692 | luminIsChannelApp: 0 693 | luminVersion: 694 | m_VersionCode: 1 695 | m_VersionName: 696 | facebookSdkVersion: 7.9.4 697 | facebookAppId: 698 | facebookCookies: 1 699 | facebookLogging: 1 700 | facebookStatus: 1 701 | facebookXfbml: 0 702 | facebookFrictionlessRequests: 1 703 | apiCompatibilityLevel: 6 704 | cloudProjectId: 32d98ce7-f904-41d7-81c2-568055918f22 705 | framebufferDepthMemorylessMode: 0 706 | projectName: UnityCameraDemo 707 | organizationId: hywenbinger 708 | cloudEnabled: 0 709 | enableNativePlatformBackendsForNewInputSystem: 0 710 | disableOldInputManagerSupport: 0 711 | legacyClampBlendShapeWeights: 1 712 | -------------------------------------------------------------------------------- /Assets/Project/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: 9 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: 0 28 | m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} 29 | m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 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.44657874, g: 0.49641258, b: 0.5748172, a: 1} 42 | m_UseRadianceAmbientProbe: 0 43 | --- !u!157 &3 44 | LightmapSettings: 45 | m_ObjectHideFlags: 0 46 | serializedVersion: 11 47 | m_GIWorkflowMode: 0 48 | m_GISettings: 49 | serializedVersion: 2 50 | m_BounceScale: 1 51 | m_IndirectOutputScale: 1 52 | m_AlbedoBoost: 1 53 | m_EnvironmentLightingMode: 0 54 | m_EnableBakedLightmaps: 1 55 | m_EnableRealtimeLightmaps: 1 56 | m_LightmapEditorSettings: 57 | serializedVersion: 10 58 | m_Resolution: 2 59 | m_BakeResolution: 40 60 | m_AtlasSize: 1024 61 | m_AO: 0 62 | m_AOMaxDistance: 1 63 | m_CompAOExponent: 1 64 | m_CompAOExponentDirect: 0 65 | m_Padding: 2 66 | m_LightmapParameters: {fileID: 0} 67 | m_LightmapsBakeMode: 1 68 | m_TextureCompression: 1 69 | m_FinalGather: 0 70 | m_FinalGatherFiltering: 1 71 | m_FinalGatherRayCount: 256 72 | m_ReflectionCompression: 2 73 | m_MixedBakeMode: 2 74 | m_BakeBackend: 0 75 | m_PVRSampling: 1 76 | m_PVRDirectSampleCount: 32 77 | m_PVRSampleCount: 500 78 | m_PVRBounces: 2 79 | m_PVRFilterTypeDirect: 0 80 | m_PVRFilterTypeIndirect: 0 81 | m_PVRFilterTypeAO: 0 82 | m_PVRFilteringMode: 1 83 | m_PVRCulling: 1 84 | m_PVRFilteringGaussRadiusDirect: 1 85 | m_PVRFilteringGaussRadiusIndirect: 5 86 | m_PVRFilteringGaussRadiusAO: 2 87 | m_PVRFilteringAtrousPositionSigmaDirect: 0.5 88 | m_PVRFilteringAtrousPositionSigmaIndirect: 2 89 | m_PVRFilteringAtrousPositionSigmaAO: 1 90 | m_ShowResolutionOverlay: 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 &278179629 116 | GameObject: 117 | m_ObjectHideFlags: 0 118 | m_CorrespondingSourceObject: {fileID: 0} 119 | m_PrefabInstance: {fileID: 0} 120 | m_PrefabAsset: {fileID: 0} 121 | serializedVersion: 6 122 | m_Component: 123 | - component: {fileID: 278179630} 124 | - component: {fileID: 278179633} 125 | - component: {fileID: 278179632} 126 | - component: {fileID: 278179631} 127 | m_Layer: 5 128 | m_Name: Button 129 | m_TagString: Untagged 130 | m_Icon: {fileID: 0} 131 | m_NavMeshLayer: 0 132 | m_StaticEditorFlags: 0 133 | m_IsActive: 1 134 | --- !u!224 &278179630 135 | RectTransform: 136 | m_ObjectHideFlags: 0 137 | m_CorrespondingSourceObject: {fileID: 0} 138 | m_PrefabInstance: {fileID: 0} 139 | m_PrefabAsset: {fileID: 0} 140 | m_GameObject: {fileID: 278179629} 141 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 142 | m_LocalPosition: {x: 0, y: 0, z: 0} 143 | m_LocalScale: {x: 1, y: 1, z: 1} 144 | m_Children: 145 | - {fileID: 515439679} 146 | m_Father: {fileID: 608450898} 147 | m_RootOrder: 0 148 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 149 | m_AnchorMin: {x: 0.5, y: 0.5} 150 | m_AnchorMax: {x: 0.5, y: 0.5} 151 | m_AnchoredPosition: {x: 1126, y: 0} 152 | m_SizeDelta: {x: 250, y: 250} 153 | m_Pivot: {x: 0.5, y: 0.5} 154 | --- !u!114 &278179631 155 | MonoBehaviour: 156 | m_ObjectHideFlags: 0 157 | m_CorrespondingSourceObject: {fileID: 0} 158 | m_PrefabInstance: {fileID: 0} 159 | m_PrefabAsset: {fileID: 0} 160 | m_GameObject: {fileID: 278179629} 161 | m_Enabled: 1 162 | m_EditorHideFlags: 0 163 | m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} 164 | m_Name: 165 | m_EditorClassIdentifier: 166 | m_Navigation: 167 | m_Mode: 3 168 | m_SelectOnUp: {fileID: 0} 169 | m_SelectOnDown: {fileID: 0} 170 | m_SelectOnLeft: {fileID: 0} 171 | m_SelectOnRight: {fileID: 0} 172 | m_Transition: 1 173 | m_Colors: 174 | m_NormalColor: {r: 1, g: 1, b: 1, a: 1} 175 | m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} 176 | m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} 177 | m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} 178 | m_ColorMultiplier: 1 179 | m_FadeDuration: 0.1 180 | m_SpriteState: 181 | m_HighlightedSprite: {fileID: 0} 182 | m_PressedSprite: {fileID: 0} 183 | m_DisabledSprite: {fileID: 0} 184 | m_AnimationTriggers: 185 | m_NormalTrigger: Normal 186 | m_HighlightedTrigger: Highlighted 187 | m_PressedTrigger: Pressed 188 | m_DisabledTrigger: Disabled 189 | m_Interactable: 1 190 | m_TargetGraphic: {fileID: 278179632} 191 | m_OnClick: 192 | m_PersistentCalls: 193 | m_Calls: 194 | - m_Target: {fileID: 608450899} 195 | m_MethodName: Click 196 | m_Mode: 1 197 | m_Arguments: 198 | m_ObjectArgument: {fileID: 0} 199 | m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine 200 | m_IntArgument: 0 201 | m_FloatArgument: 0 202 | m_StringArgument: 203 | m_BoolArgument: 0 204 | m_CallState: 2 205 | --- !u!114 &278179632 206 | MonoBehaviour: 207 | m_ObjectHideFlags: 0 208 | m_CorrespondingSourceObject: {fileID: 0} 209 | m_PrefabInstance: {fileID: 0} 210 | m_PrefabAsset: {fileID: 0} 211 | m_GameObject: {fileID: 278179629} 212 | m_Enabled: 1 213 | m_EditorHideFlags: 0 214 | m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} 215 | m_Name: 216 | m_EditorClassIdentifier: 217 | m_Material: {fileID: 0} 218 | m_Color: {r: 1, g: 1, b: 1, a: 1} 219 | m_RaycastTarget: 1 220 | m_OnCullStateChanged: 221 | m_PersistentCalls: 222 | m_Calls: [] 223 | m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} 224 | m_Type: 1 225 | m_PreserveAspect: 0 226 | m_FillCenter: 1 227 | m_FillMethod: 4 228 | m_FillAmount: 1 229 | m_FillClockwise: 1 230 | m_FillOrigin: 0 231 | m_UseSpriteMesh: 0 232 | --- !u!222 &278179633 233 | CanvasRenderer: 234 | m_ObjectHideFlags: 0 235 | m_CorrespondingSourceObject: {fileID: 0} 236 | m_PrefabInstance: {fileID: 0} 237 | m_PrefabAsset: {fileID: 0} 238 | m_GameObject: {fileID: 278179629} 239 | m_CullTransparentMesh: 0 240 | --- !u!1 &515439678 241 | GameObject: 242 | m_ObjectHideFlags: 0 243 | m_CorrespondingSourceObject: {fileID: 0} 244 | m_PrefabInstance: {fileID: 0} 245 | m_PrefabAsset: {fileID: 0} 246 | serializedVersion: 6 247 | m_Component: 248 | - component: {fileID: 515439679} 249 | - component: {fileID: 515439681} 250 | - component: {fileID: 515439680} 251 | m_Layer: 5 252 | m_Name: Text 253 | m_TagString: Untagged 254 | m_Icon: {fileID: 0} 255 | m_NavMeshLayer: 0 256 | m_StaticEditorFlags: 0 257 | m_IsActive: 1 258 | --- !u!224 &515439679 259 | RectTransform: 260 | m_ObjectHideFlags: 0 261 | m_CorrespondingSourceObject: {fileID: 0} 262 | m_PrefabInstance: {fileID: 0} 263 | m_PrefabAsset: {fileID: 0} 264 | m_GameObject: {fileID: 515439678} 265 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 266 | m_LocalPosition: {x: 0, y: 0, z: 0} 267 | m_LocalScale: {x: 1, y: 1, z: 1} 268 | m_Children: [] 269 | m_Father: {fileID: 278179630} 270 | m_RootOrder: 0 271 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 272 | m_AnchorMin: {x: 0, y: 0} 273 | m_AnchorMax: {x: 1, y: 1} 274 | m_AnchoredPosition: {x: 0, y: 0} 275 | m_SizeDelta: {x: 0, y: 0} 276 | m_Pivot: {x: 0.5, y: 0.5} 277 | --- !u!114 &515439680 278 | MonoBehaviour: 279 | m_ObjectHideFlags: 0 280 | m_CorrespondingSourceObject: {fileID: 0} 281 | m_PrefabInstance: {fileID: 0} 282 | m_PrefabAsset: {fileID: 0} 283 | m_GameObject: {fileID: 515439678} 284 | m_Enabled: 1 285 | m_EditorHideFlags: 0 286 | m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} 287 | m_Name: 288 | m_EditorClassIdentifier: 289 | m_Material: {fileID: 0} 290 | m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} 291 | m_RaycastTarget: 1 292 | m_OnCullStateChanged: 293 | m_PersistentCalls: 294 | m_Calls: [] 295 | m_FontData: 296 | m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} 297 | m_FontSize: 70 298 | m_FontStyle: 0 299 | m_BestFit: 0 300 | m_MinSize: 0 301 | m_MaxSize: 70 302 | m_Alignment: 4 303 | m_AlignByGeometry: 0 304 | m_RichText: 1 305 | m_HorizontalOverflow: 0 306 | m_VerticalOverflow: 0 307 | m_LineSpacing: 1 308 | m_Text: Play 309 | --- !u!222 &515439681 310 | CanvasRenderer: 311 | m_ObjectHideFlags: 0 312 | m_CorrespondingSourceObject: {fileID: 0} 313 | m_PrefabInstance: {fileID: 0} 314 | m_PrefabAsset: {fileID: 0} 315 | m_GameObject: {fileID: 515439678} 316 | m_CullTransparentMesh: 0 317 | --- !u!1 &608450894 318 | GameObject: 319 | m_ObjectHideFlags: 0 320 | m_CorrespondingSourceObject: {fileID: 0} 321 | m_PrefabInstance: {fileID: 0} 322 | m_PrefabAsset: {fileID: 0} 323 | serializedVersion: 6 324 | m_Component: 325 | - component: {fileID: 608450898} 326 | - component: {fileID: 608450897} 327 | - component: {fileID: 608450896} 328 | - component: {fileID: 608450895} 329 | - component: {fileID: 608450899} 330 | m_Layer: 5 331 | m_Name: Canvas 332 | m_TagString: Untagged 333 | m_Icon: {fileID: 0} 334 | m_NavMeshLayer: 0 335 | m_StaticEditorFlags: 0 336 | m_IsActive: 1 337 | --- !u!114 &608450895 338 | MonoBehaviour: 339 | m_ObjectHideFlags: 0 340 | m_CorrespondingSourceObject: {fileID: 0} 341 | m_PrefabInstance: {fileID: 0} 342 | m_PrefabAsset: {fileID: 0} 343 | m_GameObject: {fileID: 608450894} 344 | m_Enabled: 1 345 | m_EditorHideFlags: 0 346 | m_Script: {fileID: 1301386320, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 347 | m_Name: 348 | m_EditorClassIdentifier: 349 | m_IgnoreReversedGraphics: 1 350 | m_BlockingObjects: 0 351 | m_BlockingMask: 352 | serializedVersion: 2 353 | m_Bits: 4294967295 354 | --- !u!114 &608450896 355 | MonoBehaviour: 356 | m_ObjectHideFlags: 0 357 | m_CorrespondingSourceObject: {fileID: 0} 358 | m_PrefabInstance: {fileID: 0} 359 | m_PrefabAsset: {fileID: 0} 360 | m_GameObject: {fileID: 608450894} 361 | m_Enabled: 1 362 | m_EditorHideFlags: 0 363 | m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 364 | m_Name: 365 | m_EditorClassIdentifier: 366 | m_UiScaleMode: 0 367 | m_ReferencePixelsPerUnit: 100 368 | m_ScaleFactor: 1 369 | m_ReferenceResolution: {x: 800, y: 600} 370 | m_ScreenMatchMode: 0 371 | m_MatchWidthOrHeight: 0 372 | m_PhysicalUnit: 3 373 | m_FallbackScreenDPI: 96 374 | m_DefaultSpriteDPI: 96 375 | m_DynamicPixelsPerUnit: 1 376 | --- !u!223 &608450897 377 | Canvas: 378 | m_ObjectHideFlags: 0 379 | m_CorrespondingSourceObject: {fileID: 0} 380 | m_PrefabInstance: {fileID: 0} 381 | m_PrefabAsset: {fileID: 0} 382 | m_GameObject: {fileID: 608450894} 383 | m_Enabled: 1 384 | serializedVersion: 3 385 | m_RenderMode: 0 386 | m_Camera: {fileID: 0} 387 | m_PlaneDistance: 100 388 | m_PixelPerfect: 0 389 | m_ReceivesEvents: 1 390 | m_OverrideSorting: 0 391 | m_OverridePixelPerfect: 0 392 | m_SortingBucketNormalizedSize: 0 393 | m_AdditionalShaderChannelsFlag: 0 394 | m_SortingLayerID: 0 395 | m_SortingOrder: 0 396 | m_TargetDisplay: 0 397 | --- !u!224 &608450898 398 | RectTransform: 399 | m_ObjectHideFlags: 0 400 | m_CorrespondingSourceObject: {fileID: 0} 401 | m_PrefabInstance: {fileID: 0} 402 | m_PrefabAsset: {fileID: 0} 403 | m_GameObject: {fileID: 608450894} 404 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 405 | m_LocalPosition: {x: 0, y: 0, z: 0} 406 | m_LocalScale: {x: 0, y: 0, z: 0} 407 | m_Children: 408 | - {fileID: 278179630} 409 | - {fileID: 737165971} 410 | m_Father: {fileID: 0} 411 | m_RootOrder: 2 412 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 413 | m_AnchorMin: {x: 0, y: 0} 414 | m_AnchorMax: {x: 0, y: 0} 415 | m_AnchoredPosition: {x: 0, y: 0} 416 | m_SizeDelta: {x: 0, y: 0} 417 | m_Pivot: {x: 0, y: 0} 418 | --- !u!114 &608450899 419 | MonoBehaviour: 420 | m_ObjectHideFlags: 0 421 | m_CorrespondingSourceObject: {fileID: 0} 422 | m_PrefabInstance: {fileID: 0} 423 | m_PrefabAsset: {fileID: 0} 424 | m_GameObject: {fileID: 608450894} 425 | m_Enabled: 1 426 | m_EditorHideFlags: 0 427 | m_Script: {fileID: 11500000, guid: 016568b4a1e16034fb5a23bcb63c763b, type: 3} 428 | m_Name: 429 | m_EditorClassIdentifier: 430 | meshRenderer: {fileID: 1286957786} 431 | rawImage: {fileID: 737165972} 432 | --- !u!1 &737165970 433 | GameObject: 434 | m_ObjectHideFlags: 0 435 | m_CorrespondingSourceObject: {fileID: 0} 436 | m_PrefabInstance: {fileID: 0} 437 | m_PrefabAsset: {fileID: 0} 438 | serializedVersion: 6 439 | m_Component: 440 | - component: {fileID: 737165971} 441 | - component: {fileID: 737165973} 442 | - component: {fileID: 737165972} 443 | m_Layer: 5 444 | m_Name: RawImage 445 | m_TagString: Untagged 446 | m_Icon: {fileID: 0} 447 | m_NavMeshLayer: 0 448 | m_StaticEditorFlags: 0 449 | m_IsActive: 1 450 | --- !u!224 &737165971 451 | RectTransform: 452 | m_ObjectHideFlags: 0 453 | m_CorrespondingSourceObject: {fileID: 0} 454 | m_PrefabInstance: {fileID: 0} 455 | m_PrefabAsset: {fileID: 0} 456 | m_GameObject: {fileID: 737165970} 457 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 458 | m_LocalPosition: {x: 0, y: 0, z: 0} 459 | m_LocalScale: {x: 1, y: 1, z: 1} 460 | m_Children: [] 461 | m_Father: {fileID: 608450898} 462 | m_RootOrder: 1 463 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 464 | m_AnchorMin: {x: 0.5, y: 0.5} 465 | m_AnchorMax: {x: 0.5, y: 0.5} 466 | m_AnchoredPosition: {x: 1149, y: 334} 467 | m_SizeDelta: {x: 400, y: 225} 468 | m_Pivot: {x: 0.5, y: 0.5} 469 | --- !u!114 &737165972 470 | MonoBehaviour: 471 | m_ObjectHideFlags: 0 472 | m_CorrespondingSourceObject: {fileID: 0} 473 | m_PrefabInstance: {fileID: 0} 474 | m_PrefabAsset: {fileID: 0} 475 | m_GameObject: {fileID: 737165970} 476 | m_Enabled: 1 477 | m_EditorHideFlags: 0 478 | m_Script: {fileID: -98529514, guid: f70555f144d8491a825f0804e09c671c, type: 3} 479 | m_Name: 480 | m_EditorClassIdentifier: 481 | m_Material: {fileID: 0} 482 | m_Color: {r: 1, g: 1, b: 1, a: 1} 483 | m_RaycastTarget: 1 484 | m_OnCullStateChanged: 485 | m_PersistentCalls: 486 | m_Calls: [] 487 | m_Texture: {fileID: 0} 488 | m_UVRect: 489 | serializedVersion: 2 490 | x: 0 491 | y: 0 492 | width: 1 493 | height: 1 494 | --- !u!222 &737165973 495 | CanvasRenderer: 496 | m_ObjectHideFlags: 0 497 | m_CorrespondingSourceObject: {fileID: 0} 498 | m_PrefabInstance: {fileID: 0} 499 | m_PrefabAsset: {fileID: 0} 500 | m_GameObject: {fileID: 737165970} 501 | m_CullTransparentMesh: 0 502 | --- !u!1 &955212258 503 | GameObject: 504 | m_ObjectHideFlags: 0 505 | m_CorrespondingSourceObject: {fileID: 0} 506 | m_PrefabInstance: {fileID: 0} 507 | m_PrefabAsset: {fileID: 0} 508 | serializedVersion: 6 509 | m_Component: 510 | - component: {fileID: 955212262} 511 | - component: {fileID: 955212261} 512 | - component: {fileID: 955212260} 513 | - component: {fileID: 955212259} 514 | m_Layer: 0 515 | m_Name: Main Camera 516 | m_TagString: MainCamera 517 | m_Icon: {fileID: 0} 518 | m_NavMeshLayer: 0 519 | m_StaticEditorFlags: 0 520 | m_IsActive: 1 521 | --- !u!81 &955212259 522 | AudioListener: 523 | m_ObjectHideFlags: 0 524 | m_CorrespondingSourceObject: {fileID: 0} 525 | m_PrefabInstance: {fileID: 0} 526 | m_PrefabAsset: {fileID: 0} 527 | m_GameObject: {fileID: 955212258} 528 | m_Enabled: 1 529 | --- !u!124 &955212260 530 | Behaviour: 531 | m_ObjectHideFlags: 0 532 | m_CorrespondingSourceObject: {fileID: 0} 533 | m_PrefabInstance: {fileID: 0} 534 | m_PrefabAsset: {fileID: 0} 535 | m_GameObject: {fileID: 955212258} 536 | m_Enabled: 1 537 | --- !u!20 &955212261 538 | Camera: 539 | m_ObjectHideFlags: 0 540 | m_CorrespondingSourceObject: {fileID: 0} 541 | m_PrefabInstance: {fileID: 0} 542 | m_PrefabAsset: {fileID: 0} 543 | m_GameObject: {fileID: 955212258} 544 | m_Enabled: 1 545 | serializedVersion: 2 546 | m_ClearFlags: 1 547 | m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} 548 | m_projectionMatrixMode: 1 549 | m_SensorSize: {x: 36, y: 24} 550 | m_LensShift: {x: 0, y: 0} 551 | m_GateFitMode: 2 552 | m_FocalLength: 50 553 | m_NormalizedViewPortRect: 554 | serializedVersion: 2 555 | x: 0 556 | y: 0 557 | width: 1 558 | height: 1 559 | near clip plane: 0.3 560 | far clip plane: 1000 561 | field of view: 60 562 | orthographic: 0 563 | orthographic size: 5 564 | m_Depth: -1 565 | m_CullingMask: 566 | serializedVersion: 2 567 | m_Bits: 4294967295 568 | m_RenderingPath: -1 569 | m_TargetTexture: {fileID: 0} 570 | m_TargetDisplay: 0 571 | m_TargetEye: 3 572 | m_HDR: 1 573 | m_AllowMSAA: 1 574 | m_AllowDynamicResolution: 0 575 | m_ForceIntoRT: 0 576 | m_OcclusionCulling: 1 577 | m_StereoConvergence: 10 578 | m_StereoSeparation: 0.022 579 | --- !u!4 &955212262 580 | Transform: 581 | m_ObjectHideFlags: 0 582 | m_CorrespondingSourceObject: {fileID: 0} 583 | m_PrefabInstance: {fileID: 0} 584 | m_PrefabAsset: {fileID: 0} 585 | m_GameObject: {fileID: 955212258} 586 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 587 | m_LocalPosition: {x: 1369, y: 706, z: -980} 588 | m_LocalScale: {x: 1, y: 1, z: 1} 589 | m_Children: [] 590 | m_Father: {fileID: 0} 591 | m_RootOrder: 0 592 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 593 | --- !u!1 &1286957784 594 | GameObject: 595 | m_ObjectHideFlags: 0 596 | m_CorrespondingSourceObject: {fileID: 0} 597 | m_PrefabInstance: {fileID: 0} 598 | m_PrefabAsset: {fileID: 0} 599 | serializedVersion: 6 600 | m_Component: 601 | - component: {fileID: 1286957785} 602 | - component: {fileID: 1286957788} 603 | - component: {fileID: 1286957787} 604 | - component: {fileID: 1286957786} 605 | m_Layer: 5 606 | m_Name: Quad 607 | m_TagString: Untagged 608 | m_Icon: {fileID: 0} 609 | m_NavMeshLayer: 0 610 | m_StaticEditorFlags: 0 611 | m_IsActive: 1 612 | --- !u!4 &1286957785 613 | Transform: 614 | m_ObjectHideFlags: 0 615 | m_CorrespondingSourceObject: {fileID: 0} 616 | m_PrefabInstance: {fileID: 0} 617 | m_PrefabAsset: {fileID: 0} 618 | m_GameObject: {fileID: 1286957784} 619 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 620 | m_LocalPosition: {x: 1200, y: 720, z: 0} 621 | m_LocalScale: {x: 800, y: 450, z: 1} 622 | m_Children: [] 623 | m_Father: {fileID: 0} 624 | m_RootOrder: 1 625 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 626 | --- !u!23 &1286957786 627 | MeshRenderer: 628 | m_ObjectHideFlags: 0 629 | m_CorrespondingSourceObject: {fileID: 0} 630 | m_PrefabInstance: {fileID: 0} 631 | m_PrefabAsset: {fileID: 0} 632 | m_GameObject: {fileID: 1286957784} 633 | m_Enabled: 1 634 | m_CastShadows: 1 635 | m_ReceiveShadows: 1 636 | m_DynamicOccludee: 1 637 | m_MotionVectors: 1 638 | m_LightProbeUsage: 1 639 | m_ReflectionProbeUsage: 1 640 | m_RenderingLayerMask: 4294967295 641 | m_RendererPriority: 0 642 | m_Materials: 643 | - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} 644 | m_StaticBatchInfo: 645 | firstSubMesh: 0 646 | subMeshCount: 0 647 | m_StaticBatchRoot: {fileID: 0} 648 | m_ProbeAnchor: {fileID: 0} 649 | m_LightProbeVolumeOverride: {fileID: 0} 650 | m_ScaleInLightmap: 1 651 | m_PreserveUVs: 1 652 | m_IgnoreNormalsForChartDetection: 0 653 | m_ImportantGI: 0 654 | m_StitchLightmapSeams: 0 655 | m_SelectedEditorRenderState: 3 656 | m_MinimumChartSize: 4 657 | m_AutoUVMaxDistance: 0.5 658 | m_AutoUVMaxAngle: 89 659 | m_LightmapParameters: {fileID: 0} 660 | m_SortingLayerID: 0 661 | m_SortingLayer: 0 662 | m_SortingOrder: 0 663 | --- !u!64 &1286957787 664 | MeshCollider: 665 | m_ObjectHideFlags: 0 666 | m_CorrespondingSourceObject: {fileID: 0} 667 | m_PrefabInstance: {fileID: 0} 668 | m_PrefabAsset: {fileID: 0} 669 | m_GameObject: {fileID: 1286957784} 670 | m_Material: {fileID: 0} 671 | m_IsTrigger: 0 672 | m_Enabled: 1 673 | serializedVersion: 3 674 | m_Convex: 0 675 | m_CookingOptions: 14 676 | m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0} 677 | --- !u!33 &1286957788 678 | MeshFilter: 679 | m_ObjectHideFlags: 0 680 | m_CorrespondingSourceObject: {fileID: 0} 681 | m_PrefabInstance: {fileID: 0} 682 | m_PrefabAsset: {fileID: 0} 683 | m_GameObject: {fileID: 1286957784} 684 | m_Mesh: {fileID: 10210, guid: 0000000000000000e000000000000000, type: 0} 685 | --- !u!1 &1448116975 686 | GameObject: 687 | m_ObjectHideFlags: 0 688 | m_CorrespondingSourceObject: {fileID: 0} 689 | m_PrefabInstance: {fileID: 0} 690 | m_PrefabAsset: {fileID: 0} 691 | serializedVersion: 6 692 | m_Component: 693 | - component: {fileID: 1448116978} 694 | - component: {fileID: 1448116977} 695 | - component: {fileID: 1448116976} 696 | m_Layer: 0 697 | m_Name: EventSystem 698 | m_TagString: Untagged 699 | m_Icon: {fileID: 0} 700 | m_NavMeshLayer: 0 701 | m_StaticEditorFlags: 0 702 | m_IsActive: 1 703 | --- !u!114 &1448116976 704 | MonoBehaviour: 705 | m_ObjectHideFlags: 0 706 | m_CorrespondingSourceObject: {fileID: 0} 707 | m_PrefabInstance: {fileID: 0} 708 | m_PrefabAsset: {fileID: 0} 709 | m_GameObject: {fileID: 1448116975} 710 | m_Enabled: 1 711 | m_EditorHideFlags: 0 712 | m_Script: {fileID: 1077351063, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 713 | m_Name: 714 | m_EditorClassIdentifier: 715 | m_HorizontalAxis: Horizontal 716 | m_VerticalAxis: Vertical 717 | m_SubmitButton: Submit 718 | m_CancelButton: Cancel 719 | m_InputActionsPerSecond: 10 720 | m_RepeatDelay: 0.5 721 | m_ForceModuleActive: 0 722 | --- !u!114 &1448116977 723 | MonoBehaviour: 724 | m_ObjectHideFlags: 0 725 | m_CorrespondingSourceObject: {fileID: 0} 726 | m_PrefabInstance: {fileID: 0} 727 | m_PrefabAsset: {fileID: 0} 728 | m_GameObject: {fileID: 1448116975} 729 | m_Enabled: 1 730 | m_EditorHideFlags: 0 731 | m_Script: {fileID: -619905303, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 732 | m_Name: 733 | m_EditorClassIdentifier: 734 | m_FirstSelected: {fileID: 0} 735 | m_sendNavigationEvents: 1 736 | m_DragThreshold: 5 737 | --- !u!4 &1448116978 738 | Transform: 739 | m_ObjectHideFlags: 0 740 | m_CorrespondingSourceObject: {fileID: 0} 741 | m_PrefabInstance: {fileID: 0} 742 | m_PrefabAsset: {fileID: 0} 743 | m_GameObject: {fileID: 1448116975} 744 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 745 | m_LocalPosition: {x: 0, y: 0, z: 0} 746 | m_LocalScale: {x: 1, y: 1, z: 1} 747 | m_Children: [] 748 | m_Father: {fileID: 0} 749 | m_RootOrder: 3 750 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 751 | --------------------------------------------------------------------------------