├── Images ├── plugin.png └── ffnewwindow.png ├── ProjectSettings ├── ProjectVersion.txt ├── ClusterInputManager.asset ├── NetworkManager.asset ├── TimeManager.asset ├── EditorBuildSettings.asset ├── UnityAdsSettings.asset ├── UnityConnectSettings.asset ├── AudioManager.asset ├── EditorSettings.asset ├── TagManager.asset ├── DynamicsManager.asset ├── Physics2DSettings.asset ├── NavMeshAreas.asset ├── GraphicsSettings.asset ├── QualitySettings.asset ├── InputManager.asset └── ProjectSettings.asset ├── Assets ├── Main.unity.meta ├── Plugins.meta ├── Scripts.meta ├── Plugins │ ├── WebGL.meta │ └── WebGL │ │ ├── OpenWindow.jslib │ │ └── OpenWindow.jslib.meta ├── Scripts │ ├── Link.cs.meta │ ├── PressHandler.cs.meta │ ├── PressHandler.cs │ └── Link.cs └── Main.unity ├── .gitignore └── README.md /Images/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valyard/UnityWebGLOpenLink/HEAD/Images/plugin.png -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.3.0b6 2 | m_StandardAssetsVersion: 0 3 | -------------------------------------------------------------------------------- /Images/ffnewwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valyard/UnityWebGLOpenLink/HEAD/Images/ffnewwindow.png -------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /Assets/Main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8cd7853ab463b4dd8a6385f308d39d2f 3 | timeCreated: 1446826957 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4763e1419c5d14421820b6a4dbbec9f2 3 | folderAsset: yes 4 | timeCreated: 1446828839 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb5921063d6fc453b90cba18f7ae44a0 3 | folderAsset: yes 4 | timeCreated: 1446827857 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/WebGL.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f3417ce59dfd481bbd031c24a9acfaf 3 | folderAsset: yes 4 | timeCreated: 1446828844 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /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/Main.unity 10 | -------------------------------------------------------------------------------- /ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!292 &1 4 | UnityAdsSettings: 5 | m_ObjectHideFlags: 0 6 | m_Enabled: 0 7 | m_InitializeOnStartup: 1 8 | m_TestMode: 0 9 | m_EnabledPlatforms: 4294967295 10 | m_IosGameId: 11 | m_AndroidGameId: 12 | -------------------------------------------------------------------------------- /Assets/Scripts/Link.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97ef33f0527d24bb0ab7e72fa2727d6f 3 | timeCreated: 1446827864 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Scripts/PressHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d622d03aa4cc47fd9c4a35894a0c6e8 3 | timeCreated: 1446829792 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | .Spotlight-V100 3 | .Trashes 4 | [Tt]humbs.db 5 | 6 | /Temp/ 7 | /Obj/ 8 | /UnityGenerated/ 9 | /Library/ 10 | /Build/ 11 | 12 | ExportedObj/ 13 | *.svd 14 | *.userprefs 15 | *.csproj 16 | *.pidb 17 | *.suo 18 | *.sln 19 | *.user 20 | *.unityproj 21 | *.booproj 22 | *.pdb 23 | *.mdb 24 | 25 | _ReSharper* 26 | 27 | *.pdb* 28 | *.mdb* -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/OpenWindow.jslib: -------------------------------------------------------------------------------- 1 | var OpenWindowPlugin = { 2 | openWindow: function(link) 3 | { 4 | var url = Pointer_stringify(link); 5 | document.onmouseup = function() 6 | { 7 | window.open(url); 8 | document.onmouseup = null; 9 | } 10 | } 11 | }; 12 | 13 | mergeInto(LibraryManager.library, OpenWindowPlugin); -------------------------------------------------------------------------------- /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 | UnityPurchasingSettings: 7 | m_Enabled: 0 8 | m_TestMode: 0 9 | UnityAnalyticsSettings: 10 | m_Enabled: 0 11 | m_InitializeOnStartup: 1 12 | m_TestMode: 0 13 | m_TestEventUrl: 14 | m_TestConfigUrl: 15 | -------------------------------------------------------------------------------- /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_DisableAudio: 0 16 | -------------------------------------------------------------------------------- /Assets/Plugins/WebGL/OpenWindow.jslib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3c769b963321348bf874cf057764ea2f 3 | timeCreated: 1446828894 4 | licenseType: Pro 5 | PluginImporter: 6 | serializedVersion: 1 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | platformData: 11 | Any: 12 | enabled: 1 13 | settings: {} 14 | userData: 15 | assetBundleName: 16 | assetBundleVariant: 17 | -------------------------------------------------------------------------------- /Assets/Scripts/PressHandler.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEngine.EventSystems; 3 | using System; 4 | using UnityEngine.Events; 5 | 6 | public class PressHandler : MonoBehaviour, IPointerDownHandler 7 | { 8 | [Serializable] 9 | public class ButtonPressEvent : UnityEvent { } 10 | 11 | public ButtonPressEvent OnPress = new ButtonPressEvent(); 12 | 13 | public void OnPointerDown(PointerEventData eventData) 14 | { 15 | OnPress.Invoke(); 16 | } 17 | } -------------------------------------------------------------------------------- /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: 3 7 | m_ExternalVersionControlSupport: Visible Meta Files 8 | m_SerializationMode: 2 9 | m_WebSecurityEmulationEnabled: 0 10 | m_WebSecurityEmulationHostUrl: http://www.mydomain.com/mygame.unity3d 11 | m_DefaultBehaviorMode: 0 12 | m_SpritePackerMode: 2 13 | m_SpritePackerPaddingPower: 1 14 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd 15 | m_ProjectGenerationRootNamespace: 16 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Assets/Scripts/Link.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Runtime.InteropServices; 3 | using UnityEngine.UI; 4 | 5 | public class Link : MonoBehaviour 6 | { 7 | 8 | public InputField Field; 9 | 10 | public void OpenLink() 11 | { 12 | Application.OpenURL(Field.text); 13 | } 14 | 15 | public void OpenLinkJS() 16 | { 17 | Application.ExternalEval("window.open('"+Field.text+"');"); 18 | } 19 | 20 | public void OpenLinkJSPlugin() 21 | { 22 | #if !UNITY_EDITOR 23 | openWindow(Field.text); 24 | #endif 25 | } 26 | 27 | [DllImport("__Internal")] 28 | private static extern void openWindow(string url); 29 | 30 | } -------------------------------------------------------------------------------- /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: 2 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_SolverIterationCount: 6 13 | m_QueriesHitTriggers: 1 14 | m_EnableAdaptiveForce: 0 15 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 16 | -------------------------------------------------------------------------------- /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: 2 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_MinPenetrationForPenalty: 0.01 17 | m_BaumgarteScale: 0.2 18 | m_BaumgarteTimeOfImpactScale: 0.75 19 | m_TimeToSleep: 0.5 20 | m_LinearSleepTolerance: 0.01 21 | m_AngularSleepTolerance: 2 22 | m_QueriesHitTriggers: 1 23 | m_QueriesStartInColliders: 1 24 | m_ChangeStopsCallbacks: 0 25 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 26 | -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!126 &1 4 | NavMeshAreas: 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 | -------------------------------------------------------------------------------- /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: 4 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_LegacyDeferred: 14 | m_Mode: 1 15 | m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} 16 | m_AlwaysIncludedShaders: 17 | - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} 18 | - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} 19 | - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} 20 | - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} 21 | - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} 22 | - {fileID: 10782, guid: 0000000000000000f000000000000000, type: 0} 23 | m_PreloadedShaders: [] 24 | m_ShaderSettings: 25 | useScreenSpaceShadows: 1 26 | m_BuildTargetShaderSettings: [] 27 | m_LightmapStripping: 0 28 | m_FogStripping: 0 29 | m_LightmapKeepPlain: 1 30 | m_LightmapKeepDirCombined: 1 31 | m_LightmapKeepDirSeparate: 1 32 | m_LightmapKeepDynamicPlain: 1 33 | m_LightmapKeepDynamicDirCombined: 1 34 | m_LightmapKeepDynamicDirSeparate: 1 35 | m_FogKeepLinear: 1 36 | m_FogKeepExp: 1 37 | m_FogKeepExp2: 1 38 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | >A [WebGL](http://docs.unity3d.com/Manual/webgl-gettingstarted.html) Unity project is just a normal HTML page running a 3 000 000 lines of code JavaScript file. 2 | 3 | The heart of HTML pages are [links](http://va.lent.in) which can be opened either in the same window/tab or in a popup window/tab. Turns out that it's not that simple with a Unity WebGL project precisely because of one of the browser's security mechanisms. 4 | 5 | Modern browsers open links in new tabs/windows only when they clearly see that this action resulted from a user input event, like mouse click for example. If not, Firefox displays this when a JavaScript uses ```window.open()``` code to open a new window: 6 | 7 | ![](/Images/ffnewwindow.png) 8 | 9 | This is fine in a context of a normal web page when you click links. But in Unity actual input is processed within *Player Loop* in a moment after you clicked an object which is too late for a browser to consider this action to be originated from a user event. 10 | 11 | So, if you use ```Application.ExternalEval("window.open('http://google.com');");``` in Unity when a mouse button is pressed this will be already too late and your window will be blocked by default. 12 | 13 | A proper solution here would be the same described in [Unity WebGL Docs](http://docs.unity3d.com/Manual/webgl-cursorfullscreen.html) — send a message to JavaScript from Unity when a button is pressed so JavaScript would execute actual window opening code when user releases the button. 14 | 15 | This can be done in a few ways described in Unity WebGL Docs: [Interacting With Browser Scripting](http://docs.unity3d.com/Manual/webgl-interactingwithbrowserscripting.html). But let's see how one can write a WebGL JS Plugin to do this. 16 | 17 | A WebGL plugin is a **.jslib** file placed anywhere in your project. It's a good idea to store plugins somewhere like **/Assets/Plugins/WebGL** but it's not required anymore. New *Plugin Inspector* in Unity 5 makes life much easier: 18 | 19 | ![](/Images/plugin.png) 20 | 21 | The contents of OpenWindow.jslib file is the following: 22 | 23 | ``` 24 | var OpenWindowPlugin = { 25 | openWindow: function(link) 26 | { 27 | var url = Pointer_stringify(link); 28 | document.onmouseup = function() 29 | { 30 | window.open(url); 31 | document.onmouseup = null; 32 | } 33 | } 34 | }; 35 | 36 | mergeInto(LibraryManager.library, OpenWindowPlugin); 37 | ``` 38 | 39 | It's a JS file with an object containing one function — **openWindow**. This function receives an URL from Unity and set's up **onmouseup** event for entire web page which when opens this URL. *Notice: this is just the most simple example code.* 40 | 41 | Then, the simplest script to use this plugin would be the following: 42 | 43 | ``` 44 | using UnityEngine; 45 | using System.Runtime.InteropServices; 46 | 47 | public class Link : MonoBehaviour { 48 | public void OpenLinkJSPlugin() { 49 | #if !UNITY_EDITOR 50 | openWindow("http://unity3d.com"); 51 | #endif 52 | } 53 | 54 | [DllImport("__Internal")] 55 | private static extern void openWindow(string url); 56 | } 57 | ``` 58 | 59 | Notice ```#if !UNITY_EDITOR``` in the script — this is a preprocessor define to include this code only when executed not in Unity Editor, because this code will not work there. 60 | 61 | The next thing is we need to code another small script to actually execute this code on **mouseDown** event when we click an UI Button for example. The issue with Buttons is that they fire **onClick** event only when mouse button is released, which is too late for us. This means that we need another script and we need to put it on our Button element in UI hierarchy: 62 | 63 | ``` 64 | using UnityEngine; 65 | using UnityEngine.EventSystems; 66 | using System; 67 | using UnityEngine.Events; 68 | 69 | public class PressHandler : MonoBehaviour, IPointerDownHandler { 70 | [Serializable] 71 | public class ButtonPressEvent : UnityEvent { } 72 | 73 | public ButtonPressEvent OnPress = new ButtonPressEvent(); 74 | 75 | public void OnPointerDown(PointerEventData eventData) { 76 | OnPress.Invoke(); 77 | } 78 | } 79 | ``` 80 | 81 | Put this script on your UI Button and set **OnPress** event to call our **OpenLinkJSPlugin** function. 82 | -------------------------------------------------------------------------------- /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: Fastest 11 | pixelLightCount: 0 12 | shadows: 0 13 | shadowResolution: 0 14 | shadowProjection: 1 15 | shadowCascades: 1 16 | shadowDistance: 15 17 | shadowNearPlaneOffset: 2 18 | shadowCascade2Split: 0.33333334 19 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 20 | blendWeights: 1 21 | textureQuality: 1 22 | anisotropicTextures: 0 23 | antiAliasing: 0 24 | softParticles: 0 25 | softVegetation: 0 26 | realtimeReflectionProbes: 0 27 | billboardsFaceCameraPosition: 0 28 | vSyncCount: 0 29 | lodBias: 0.3 30 | maximumLODLevel: 0 31 | particleRaycastBudget: 4 32 | asyncUploadTimeSlice: 2 33 | asyncUploadBufferSize: 4 34 | excludedTargetPlatforms: [] 35 | - serializedVersion: 2 36 | name: Fast 37 | pixelLightCount: 0 38 | shadows: 0 39 | shadowResolution: 0 40 | shadowProjection: 1 41 | shadowCascades: 1 42 | shadowDistance: 20 43 | shadowNearPlaneOffset: 2 44 | shadowCascade2Split: 0.33333334 45 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 46 | blendWeights: 2 47 | textureQuality: 0 48 | anisotropicTextures: 0 49 | antiAliasing: 0 50 | softParticles: 0 51 | softVegetation: 0 52 | realtimeReflectionProbes: 0 53 | billboardsFaceCameraPosition: 0 54 | vSyncCount: 0 55 | lodBias: 0.4 56 | maximumLODLevel: 0 57 | particleRaycastBudget: 16 58 | asyncUploadTimeSlice: 2 59 | asyncUploadBufferSize: 4 60 | excludedTargetPlatforms: [] 61 | - serializedVersion: 2 62 | name: Simple 63 | pixelLightCount: 1 64 | shadows: 1 65 | shadowResolution: 0 66 | shadowProjection: 1 67 | shadowCascades: 1 68 | shadowDistance: 20 69 | shadowNearPlaneOffset: 2 70 | shadowCascade2Split: 0.33333334 71 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 72 | blendWeights: 2 73 | textureQuality: 0 74 | anisotropicTextures: 1 75 | antiAliasing: 0 76 | softParticles: 0 77 | softVegetation: 0 78 | realtimeReflectionProbes: 0 79 | billboardsFaceCameraPosition: 0 80 | vSyncCount: 0 81 | lodBias: 0.7 82 | maximumLODLevel: 0 83 | particleRaycastBudget: 64 84 | asyncUploadTimeSlice: 2 85 | asyncUploadBufferSize: 4 86 | excludedTargetPlatforms: [] 87 | - serializedVersion: 2 88 | name: Good 89 | pixelLightCount: 2 90 | shadows: 2 91 | shadowResolution: 1 92 | shadowProjection: 1 93 | shadowCascades: 2 94 | shadowDistance: 40 95 | shadowNearPlaneOffset: 2 96 | shadowCascade2Split: 0.33333334 97 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 98 | blendWeights: 2 99 | textureQuality: 0 100 | anisotropicTextures: 1 101 | antiAliasing: 0 102 | softParticles: 0 103 | softVegetation: 1 104 | realtimeReflectionProbes: 1 105 | billboardsFaceCameraPosition: 1 106 | vSyncCount: 1 107 | lodBias: 1 108 | maximumLODLevel: 0 109 | particleRaycastBudget: 256 110 | asyncUploadTimeSlice: 2 111 | asyncUploadBufferSize: 4 112 | excludedTargetPlatforms: [] 113 | - serializedVersion: 2 114 | name: Beautiful 115 | pixelLightCount: 3 116 | shadows: 2 117 | shadowResolution: 2 118 | shadowProjection: 1 119 | shadowCascades: 2 120 | shadowDistance: 70 121 | shadowNearPlaneOffset: 2 122 | shadowCascade2Split: 0.33333334 123 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 124 | blendWeights: 4 125 | textureQuality: 0 126 | anisotropicTextures: 2 127 | antiAliasing: 2 128 | softParticles: 1 129 | softVegetation: 1 130 | realtimeReflectionProbes: 1 131 | billboardsFaceCameraPosition: 1 132 | vSyncCount: 1 133 | lodBias: 1.5 134 | maximumLODLevel: 0 135 | particleRaycastBudget: 1024 136 | asyncUploadTimeSlice: 2 137 | asyncUploadBufferSize: 4 138 | excludedTargetPlatforms: [] 139 | - serializedVersion: 2 140 | name: Fantastic 141 | pixelLightCount: 4 142 | shadows: 2 143 | shadowResolution: 2 144 | shadowProjection: 1 145 | shadowCascades: 4 146 | shadowDistance: 150 147 | shadowNearPlaneOffset: 2 148 | shadowCascade2Split: 0.33333334 149 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 150 | blendWeights: 4 151 | textureQuality: 0 152 | anisotropicTextures: 2 153 | antiAliasing: 2 154 | softParticles: 1 155 | softVegetation: 1 156 | realtimeReflectionProbes: 1 157 | billboardsFaceCameraPosition: 1 158 | vSyncCount: 1 159 | lodBias: 2 160 | maximumLODLevel: 0 161 | particleRaycastBudget: 4096 162 | asyncUploadTimeSlice: 2 163 | asyncUploadBufferSize: 4 164 | excludedTargetPlatforms: [] 165 | m_PerPlatformDefaultQuality: 166 | Android: 2 167 | BlackBerry: 2 168 | GLES Emulation: 5 169 | Nintendo 3DS: 5 170 | PS3: 5 171 | PS4: 5 172 | PSM: 5 173 | PSP2: 2 174 | Samsung TV: 2 175 | Standalone: 5 176 | Tizen: 2 177 | WP8: 5 178 | Web: 5 179 | WebGL: 3 180 | WiiU: 5 181 | Windows Store Apps: 5 182 | XBOX360: 5 183 | XboxOne: 5 184 | iPhone: 2 185 | tvOS: 5 186 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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: 8 7 | AndroidProfiler: 0 8 | defaultScreenOrientation: 4 9 | targetDevice: 2 10 | useOnDemandResources: 0 11 | accelerometerFrequency: 60 12 | companyName: DefaultCompany 13 | productName: OpenWindow 14 | defaultCursor: {fileID: 0} 15 | cursorHotspot: {x: 0, y: 0} 16 | m_ShowUnitySplashScreen: 1 17 | m_VirtualRealitySplashScreen: {fileID: 0} 18 | defaultScreenWidth: 1024 19 | defaultScreenHeight: 768 20 | defaultScreenWidthWeb: 960 21 | defaultScreenHeightWeb: 600 22 | m_RenderingPath: 1 23 | m_MobileRenderingPath: 1 24 | m_ActiveColorSpace: 0 25 | m_MTRendering: 1 26 | m_MobileMTRendering: 0 27 | m_Stereoscopic3D: 0 28 | iosShowActivityIndicatorOnLoading: -1 29 | androidShowActivityIndicatorOnLoading: -1 30 | iosAppInBackgroundBehavior: 0 31 | displayResolutionDialog: 1 32 | iosAllowHTTPDownload: 1 33 | allowedAutorotateToPortrait: 1 34 | allowedAutorotateToPortraitUpsideDown: 1 35 | allowedAutorotateToLandscapeRight: 1 36 | allowedAutorotateToLandscapeLeft: 1 37 | useOSAutorotation: 1 38 | use32BitDisplayBuffer: 1 39 | disableDepthAndStencilBuffers: 0 40 | defaultIsFullScreen: 1 41 | defaultIsNativeResolution: 1 42 | runInBackground: 0 43 | captureSingleScreen: 0 44 | Override IPod Music: 0 45 | Prepare IOS For Recording: 0 46 | submitAnalytics: 1 47 | usePlayerLog: 1 48 | bakeCollisionMeshes: 0 49 | forceSingleInstance: 0 50 | resizableWindow: 0 51 | useMacAppStoreValidation: 0 52 | gpuSkinning: 0 53 | xboxPIXTextureCapture: 0 54 | xboxEnableAvatar: 0 55 | xboxEnableKinect: 0 56 | xboxEnableKinectAutoTracking: 0 57 | xboxEnableFitness: 0 58 | visibleInBackground: 0 59 | allowFullscreenSwitch: 1 60 | macFullscreenMode: 2 61 | d3d9FullscreenMode: 1 62 | d3d11FullscreenMode: 1 63 | xboxSpeechDB: 0 64 | xboxEnableHeadOrientation: 0 65 | xboxEnableGuest: 0 66 | n3dsDisableStereoscopicView: 0 67 | n3dsEnableSharedListOpt: 1 68 | n3dsEnableVSync: 0 69 | uiUse16BitDepthBuffer: 0 70 | xboxOneResolution: 0 71 | ps3SplashScreen: {fileID: 0} 72 | videoMemoryForVertexBuffers: 0 73 | psp2PowerMode: 0 74 | psp2AcquireBGM: 1 75 | wiiUTVResolution: 0 76 | wiiUGamePadMSAA: 1 77 | wiiUSupportsNunchuk: 0 78 | wiiUSupportsClassicController: 0 79 | wiiUSupportsBalanceBoard: 0 80 | wiiUSupportsMotionPlus: 0 81 | wiiUSupportsProController: 0 82 | wiiUAllowScreenCapture: 1 83 | wiiUControllerCount: 0 84 | m_SupportedAspectRatios: 85 | 4:3: 1 86 | 5:4: 1 87 | 16:10: 1 88 | 16:9: 1 89 | Others: 1 90 | bundleIdentifier: com.Company.ProductName 91 | bundleVersion: 1.0 92 | preloadedAssets: [] 93 | metroEnableIndependentInputSource: 0 94 | metroEnableLowLatencyPresentationAPI: 0 95 | xboxOneDisableKinectGpuReservation: 0 96 | virtualRealitySupported: 0 97 | productGUID: 562e1e000b3af4c37a68eaebf65da5f7 98 | AndroidBundleVersionCode: 1 99 | AndroidMinSdkVersion: 9 100 | AndroidPreferredInstallLocation: 1 101 | aotOptions: 102 | apiCompatibilityLevel: 2 103 | stripEngineCode: 1 104 | iPhoneStrippingLevel: 0 105 | iPhoneScriptCallOptimization: 0 106 | iPhoneBuildNumber: 0 107 | ForceInternetPermission: 0 108 | ForceSDCardPermission: 0 109 | CreateWallpaper: 0 110 | APKExpansionFiles: 0 111 | preloadShaders: 0 112 | StripUnusedMeshComponents: 0 113 | VertexChannelCompressionMask: 114 | serializedVersion: 2 115 | m_Bits: 238 116 | iPhoneSdkVersion: 988 117 | iPhoneTargetOSVersion: 22 118 | uIPrerenderedIcon: 0 119 | uIRequiresPersistentWiFi: 0 120 | uIRequiresFullScreen: 1 121 | uIStatusBarHidden: 1 122 | uIExitOnSuspend: 0 123 | uIStatusBarStyle: 0 124 | iPhoneSplashScreen: {fileID: 0} 125 | iPhoneHighResSplashScreen: {fileID: 0} 126 | iPhoneTallHighResSplashScreen: {fileID: 0} 127 | iPhone47inSplashScreen: {fileID: 0} 128 | iPhone55inPortraitSplashScreen: {fileID: 0} 129 | iPhone55inLandscapeSplashScreen: {fileID: 0} 130 | iPadPortraitSplashScreen: {fileID: 0} 131 | iPadHighResPortraitSplashScreen: {fileID: 0} 132 | iPadLandscapeSplashScreen: {fileID: 0} 133 | iPadHighResLandscapeSplashScreen: {fileID: 0} 134 | appleTVSplashScreen: {fileID: 0} 135 | iOSLaunchScreenType: 0 136 | iOSLaunchScreenPortrait: {fileID: 0} 137 | iOSLaunchScreenLandscape: {fileID: 0} 138 | iOSLaunchScreenBackgroundColor: 139 | serializedVersion: 2 140 | rgba: 0 141 | iOSLaunchScreenFillPct: 100 142 | iOSLaunchScreenSize: 100 143 | iOSLaunchScreenCustomXibPath: 144 | iOSLaunchScreeniPadType: 0 145 | iOSLaunchScreeniPadImage: {fileID: 0} 146 | iOSLaunchScreeniPadBackgroundColor: 147 | serializedVersion: 2 148 | rgba: 0 149 | iOSLaunchScreeniPadFillPct: 100 150 | iOSLaunchScreeniPadSize: 100 151 | iOSLaunchScreeniPadCustomXibPath: 152 | iOSDeviceRequirements: [] 153 | AndroidTargetDevice: 0 154 | AndroidSplashScreenScale: 0 155 | androidSplashScreen: {fileID: 0} 156 | AndroidKeystoreName: 157 | AndroidKeyaliasName: 158 | AndroidTVCompatibility: 1 159 | AndroidIsGame: 1 160 | androidEnableBanner: 1 161 | m_AndroidBanners: 162 | - width: 320 163 | height: 180 164 | banner: {fileID: 0} 165 | androidGamepadSupportLevel: 0 166 | resolutionDialogBanner: {fileID: 0} 167 | m_BuildTargetIcons: 168 | - m_BuildTarget: 169 | m_Icons: 170 | - serializedVersion: 2 171 | m_Icon: {fileID: 0} 172 | m_Width: 128 173 | m_Height: 128 174 | m_BuildTargetBatching: [] 175 | m_BuildTargetGraphicsAPIs: [] 176 | webPlayerTemplate: APPLICATION:Default 177 | m_TemplateCustomTags: {} 178 | wiiUTitleID: 0005000011000000 179 | wiiUGroupID: 00010000 180 | wiiUCommonSaveSize: 4096 181 | wiiUAccountSaveSize: 2048 182 | wiiUOlvAccessKey: 0 183 | wiiUTinCode: 0 184 | wiiUJoinGameId: 0 185 | wiiUJoinGameModeMask: 0000000000000000 186 | wiiUCommonBossSize: 0 187 | wiiUAccountBossSize: 0 188 | wiiUAddOnUniqueIDs: [] 189 | wiiUMainThreadStackSize: 3072 190 | wiiULoaderThreadStackSize: 1024 191 | wiiUSystemHeapSize: 128 192 | wiiUTVStartupScreen: {fileID: 0} 193 | wiiUGamePadStartupScreen: {fileID: 0} 194 | wiiUProfilerLibPath: 195 | actionOnDotNetUnhandledException: 1 196 | enableInternalProfiler: 0 197 | logObjCUncaughtExceptions: 1 198 | enableCrashReportAPI: 0 199 | locationUsageDescription: 200 | XboxTitleId: 201 | XboxImageXexPath: 202 | XboxSpaPath: 203 | XboxGenerateSpa: 0 204 | XboxDeployKinectResources: 0 205 | XboxSplashScreen: {fileID: 0} 206 | xboxEnableSpeech: 0 207 | xboxAdditionalTitleMemorySize: 0 208 | xboxDeployKinectHeadOrientation: 0 209 | xboxDeployKinectHeadPosition: 0 210 | ps3TitleConfigPath: 211 | ps3DLCConfigPath: 212 | ps3ThumbnailPath: 213 | ps3BackgroundPath: 214 | ps3SoundPath: 215 | ps3NPAgeRating: 12 216 | ps3TrophyCommId: 217 | ps3NpCommunicationPassphrase: 218 | ps3TrophyPackagePath: 219 | ps3BootCheckMaxSaveGameSizeKB: 128 220 | ps3TrophyCommSig: 221 | ps3SaveGameSlots: 1 222 | ps3TrialMode: 0 223 | ps3VideoMemoryForAudio: 0 224 | ps3EnableVerboseMemoryStats: 0 225 | ps3UseSPUForUmbra: 0 226 | ps3EnableMoveSupport: 1 227 | ps3DisableDolbyEncoding: 0 228 | ps4NPAgeRating: 12 229 | ps4NPTitleSecret: 230 | ps4NPTrophyPackPath: 231 | ps4ParentalLevel: 1 232 | ps4ContentID: ED1633-NPXX51362_00-0000000000000000 233 | ps4Category: 0 234 | ps4MasterVersion: 01.00 235 | ps4AppVersion: 01.00 236 | ps4AppType: 0 237 | ps4ParamSfxPath: 238 | ps4VideoOutPixelFormat: 0 239 | ps4VideoOutResolution: 4 240 | ps4PronunciationXMLPath: 241 | ps4PronunciationSIGPath: 242 | ps4BackgroundImagePath: 243 | ps4StartupImagePath: 244 | ps4SaveDataImagePath: 245 | ps4SdkOverride: 246 | ps4BGMPath: 247 | ps4ShareFilePath: 248 | ps4ShareOverlayImagePath: 249 | ps4PrivacyGuardImagePath: 250 | ps4NPtitleDatPath: 251 | ps4RemotePlayKeyAssignment: -1 252 | ps4RemotePlayKeyMappingDir: 253 | ps4EnterButtonAssignment: 1 254 | ps4ApplicationParam1: 0 255 | ps4ApplicationParam2: 0 256 | ps4ApplicationParam3: 0 257 | ps4ApplicationParam4: 0 258 | ps4DownloadDataSize: 0 259 | ps4GarlicHeapSize: 2048 260 | ps4Passcode: 5PN2qmWqBlQ9wQj99nsQzldVI5ZuGXbE 261 | ps4pnSessions: 1 262 | ps4pnPresence: 1 263 | ps4pnFriends: 1 264 | ps4pnGameCustomData: 1 265 | playerPrefsSupport: 0 266 | ps4ReprojectionSupport: 0 267 | ps4UseAudio3dBackend: 0 268 | ps4SocialScreenEnabled: 0 269 | ps4Audio3dVirtualSpeakerCount: 14 270 | ps4attribCpuUsage: 0 271 | ps4PatchPkgPath: 272 | ps4PatchLatestPkgPath: 273 | ps4PatchChangeinfoPath: 274 | ps4attribUserManagement: 0 275 | ps4attribMoveSupport: 0 276 | ps4attrib3DSupport: 0 277 | ps4attribShareSupport: 0 278 | ps4IncludedModules: [] 279 | monoEnv: 280 | psp2Splashimage: {fileID: 0} 281 | psp2NPTrophyPackPath: 282 | psp2NPSupportGBMorGJP: 0 283 | psp2NPAgeRating: 12 284 | psp2NPTitleDatPath: 285 | psp2NPCommsID: 286 | psp2NPCommunicationsID: 287 | psp2NPCommsPassphrase: 288 | psp2NPCommsSig: 289 | psp2ParamSfxPath: 290 | psp2ManualPath: 291 | psp2LiveAreaGatePath: 292 | psp2LiveAreaBackroundPath: 293 | psp2LiveAreaPath: 294 | psp2LiveAreaTrialPath: 295 | psp2PatchChangeInfoPath: 296 | psp2PatchOriginalPackage: 297 | psp2PackagePassword: WRK5RhRXdCdG5nG5azdNMK66MuCV6GXi 298 | psp2KeystoneFile: 299 | psp2MemoryExpansionMode: 0 300 | psp2DRMType: 0 301 | psp2StorageType: 0 302 | psp2MediaCapacity: 0 303 | psp2DLCConfigPath: 304 | psp2ThumbnailPath: 305 | psp2BackgroundPath: 306 | psp2SoundPath: 307 | psp2TrophyCommId: 308 | psp2TrophyPackagePath: 309 | psp2PackagedResourcesPath: 310 | psp2SaveDataQuota: 10240 311 | psp2ParentalLevel: 1 312 | psp2ShortTitle: Not Set 313 | psp2ContentID: IV0000-ABCD12345_00-0123456789ABCDEF 314 | psp2Category: 0 315 | psp2MasterVersion: 01.00 316 | psp2AppVersion: 01.00 317 | psp2TVBootMode: 0 318 | psp2EnterButtonAssignment: 2 319 | psp2TVDisableEmu: 0 320 | psp2AllowTwitterDialog: 1 321 | psp2Upgradable: 0 322 | psp2HealthWarning: 0 323 | psp2UseLibLocation: 0 324 | psp2InfoBarOnStartup: 0 325 | psp2InfoBarColor: 0 326 | psmSplashimage: {fileID: 0} 327 | spritePackerPolicy: 328 | scriptingDefineSymbols: {} 329 | metroPackageName: OpenWindow 330 | metroPackageVersion: 331 | metroCertificatePath: 332 | metroCertificatePassword: 333 | metroCertificateSubject: 334 | metroCertificateIssuer: 335 | metroCertificateNotAfter: 0000000000000000 336 | metroApplicationDescription: OpenWindow 337 | wsaImages: {} 338 | metroTileShortName: 339 | metroCommandLineArgsFile: 340 | metroTileShowName: 0 341 | metroMediumTileShowName: 0 342 | metroLargeTileShowName: 0 343 | metroWideTileShowName: 0 344 | metroDefaultTileSize: 1 345 | metroTileForegroundText: 1 346 | metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} 347 | metroSplashScreenBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, 348 | a: 1} 349 | metroSplashScreenUseBackgroundColor: 1 350 | platformCapabilities: {} 351 | metroFTAName: 352 | metroFTAFileTypes: [] 353 | metroProtocolName: 354 | metroCompilationOverrides: 1 355 | blackberryDeviceAddress: 356 | blackberryDevicePassword: 357 | blackberryTokenPath: 358 | blackberryTokenExires: 359 | blackberryTokenAuthor: 360 | blackberryTokenAuthorId: 361 | blackberryCskPassword: 362 | blackberrySaveLogPath: 363 | blackberrySharedPermissions: 0 364 | blackberryCameraPermissions: 0 365 | blackberryGPSPermissions: 0 366 | blackberryDeviceIDPermissions: 0 367 | blackberryMicrophonePermissions: 0 368 | blackberryGamepadSupport: 0 369 | blackberryBuildId: 0 370 | blackberryLandscapeSplashScreen: {fileID: 0} 371 | blackberryPortraitSplashScreen: {fileID: 0} 372 | blackberrySquareSplashScreen: {fileID: 0} 373 | tizenProductDescription: 374 | tizenProductURL: 375 | tizenSigningProfileName: 376 | tizenGPSPermissions: 0 377 | tizenMicrophonePermissions: 0 378 | n3dsUseExtSaveData: 0 379 | n3dsCompressStaticMem: 1 380 | n3dsExtSaveDataNumber: 0x12345 381 | n3dsStackSize: 131072 382 | n3dsTargetPlatform: 2 383 | n3dsRegion: 7 384 | n3dsMediaSize: 0 385 | n3dsLogoStyle: 3 386 | n3dsTitle: GameName 387 | n3dsProductCode: 388 | n3dsApplicationId: 0xFF3FF 389 | stvDeviceAddress: 390 | stvProductDescription: 391 | stvProductAuthor: 392 | stvProductAuthorEmail: 393 | stvProductLink: 394 | stvProductCategory: 0 395 | XboxOneProductId: 396 | XboxOneUpdateKey: 397 | XboxOneSandboxId: 398 | XboxOneContentId: 399 | XboxOneTitleId: 400 | XboxOneSCId: 401 | XboxOneGameOsOverridePath: 402 | XboxOnePackagingOverridePath: 403 | XboxOneAppManifestOverridePath: 404 | XboxOnePackageEncryption: 0 405 | XboxOnePackageUpdateGranularity: 2 406 | XboxOneDescription: 407 | XboxOneIsContentPackage: 0 408 | XboxOneEnableGPUVariability: 0 409 | XboxOneSockets: {} 410 | XboxOneSplashScreen: {fileID: 0} 411 | XboxOneAllowedProductIds: [] 412 | XboxOnePersistentLocalStorageSize: 0 413 | intPropertyNames: 414 | - Standalone::ScriptingBackend 415 | - WebGL::ScriptingBackend 416 | - WebGL::audioCompressionFormat 417 | - WebGL::exceptionSupport 418 | - WebGL::memorySize 419 | - WebPlayer::ScriptingBackend 420 | - iOS::Architecture 421 | - iOS::EnableIncrementalBuildSupportForIl2cpp 422 | - iOS::ScriptingBackend 423 | Standalone::ScriptingBackend: 0 424 | WebGL::ScriptingBackend: 1 425 | WebGL::audioCompressionFormat: 4 426 | WebGL::exceptionSupport: 1 427 | WebGL::memorySize: 256 428 | WebPlayer::ScriptingBackend: 0 429 | iOS::Architecture: 2 430 | iOS::EnableIncrementalBuildSupportForIl2cpp: 0 431 | iOS::ScriptingBackend: 1 432 | boolPropertyNames: 433 | - WebGL::analyzeBuildSize 434 | - WebGL::dataCaching 435 | - WebGL::useEmbeddedResources 436 | - XboxOne::enus 437 | WebGL::analyzeBuildSize: 0 438 | WebGL::dataCaching: 0 439 | WebGL::useEmbeddedResources: 0 440 | XboxOne::enus: 1 441 | stringPropertyNames: 442 | - WebGL::emscriptenArgs 443 | - WebGL::template 444 | - additionalIl2CppArgs::additionalIl2CppArgs 445 | WebGL::emscriptenArgs: 446 | WebGL::template: APPLICATION:Default 447 | additionalIl2CppArgs::additionalIl2CppArgs: 448 | cloudProjectId: 449 | projectName: 450 | organizationId: 451 | cloudEnabled: 0 452 | -------------------------------------------------------------------------------- /Assets/Main.unity: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!29 &1 4 | SceneSettings: 5 | m_ObjectHideFlags: 0 6 | m_PVSData: 7 | m_PVSObjectsArray: [] 8 | m_PVSPortalsArray: [] 9 | m_OcclusionBakeSettings: 10 | smallestOccluder: 5 11 | smallestHole: 0.25 12 | backfaceThreshold: 100 13 | --- !u!104 &2 14 | RenderSettings: 15 | m_ObjectHideFlags: 0 16 | serializedVersion: 6 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_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} 29 | m_HaloStrength: 0.5 30 | m_FlareStrength: 1 31 | m_FlareFadeSpeed: 3 32 | m_HaloTexture: {fileID: 0} 33 | m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} 34 | m_DefaultReflectionMode: 0 35 | m_DefaultReflectionResolution: 128 36 | m_ReflectionBounces: 1 37 | m_ReflectionIntensity: 1 38 | m_CustomReflection: {fileID: 0} 39 | m_Sun: {fileID: 0} 40 | --- !u!157 &3 41 | LightmapSettings: 42 | m_ObjectHideFlags: 0 43 | serializedVersion: 6 44 | m_GIWorkflowMode: 0 45 | m_LightmapsMode: 1 46 | m_GISettings: 47 | serializedVersion: 2 48 | m_BounceScale: 1 49 | m_IndirectOutputScale: 1 50 | m_AlbedoBoost: 1 51 | m_TemporalCoherenceThreshold: 1 52 | m_EnvironmentLightingMode: 0 53 | m_EnableBakedLightmaps: 1 54 | m_EnableRealtimeLightmaps: 1 55 | m_LightmapEditorSettings: 56 | serializedVersion: 3 57 | m_Resolution: 2 58 | m_BakeResolution: 40 59 | m_TextureWidth: 1024 60 | m_TextureHeight: 1024 61 | m_AOMaxDistance: 1 62 | m_Padding: 2 63 | m_CompAOExponent: 0 64 | m_LightmapParameters: {fileID: 0} 65 | m_TextureCompression: 1 66 | m_FinalGather: 0 67 | m_FinalGatherRayCount: 1024 68 | m_ReflectionCompression: 2 69 | m_LightingDataAsset: {fileID: 0} 70 | m_RuntimeCPUUsage: 25 71 | --- !u!196 &4 72 | NavMeshSettings: 73 | serializedVersion: 2 74 | m_ObjectHideFlags: 0 75 | m_BuildSettings: 76 | serializedVersion: 2 77 | agentRadius: 0.5 78 | agentHeight: 2 79 | agentSlope: 45 80 | agentClimb: 0.4 81 | ledgeDropHeight: 0 82 | maxJumpAcrossDistance: 0 83 | accuratePlacement: 0 84 | minRegionArea: 2 85 | cellSize: 0.16666667 86 | manualCellSize: 0 87 | m_NavMeshData: {fileID: 0} 88 | --- !u!1 &127677717 89 | GameObject: 90 | m_ObjectHideFlags: 0 91 | m_PrefabParentObject: {fileID: 0} 92 | m_PrefabInternal: {fileID: 0} 93 | serializedVersion: 4 94 | m_Component: 95 | - 224: {fileID: 127677718} 96 | - 222: {fileID: 127677720} 97 | - 114: {fileID: 127677719} 98 | m_Layer: 5 99 | m_Name: Text 100 | m_TagString: Untagged 101 | m_Icon: {fileID: 0} 102 | m_NavMeshLayer: 0 103 | m_StaticEditorFlags: 0 104 | m_IsActive: 1 105 | --- !u!224 &127677718 106 | RectTransform: 107 | m_ObjectHideFlags: 0 108 | m_PrefabParentObject: {fileID: 0} 109 | m_PrefabInternal: {fileID: 0} 110 | m_GameObject: {fileID: 127677717} 111 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 112 | m_LocalPosition: {x: 0, y: 0, z: 0} 113 | m_LocalScale: {x: 1, y: 1, z: 1} 114 | m_Children: [] 115 | m_Father: {fileID: 1876499863} 116 | m_RootOrder: 0 117 | m_AnchorMin: {x: 0, y: 0} 118 | m_AnchorMax: {x: 1, y: 1} 119 | m_AnchoredPosition: {x: 0, y: 0} 120 | m_SizeDelta: {x: 0, y: 0} 121 | m_Pivot: {x: 0.5, y: 0.5} 122 | --- !u!114 &127677719 123 | MonoBehaviour: 124 | m_ObjectHideFlags: 0 125 | m_PrefabParentObject: {fileID: 0} 126 | m_PrefabInternal: {fileID: 0} 127 | m_GameObject: {fileID: 127677717} 128 | m_Enabled: 1 129 | m_EditorHideFlags: 0 130 | m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 131 | m_Name: 132 | m_EditorClassIdentifier: 133 | m_Material: {fileID: 0} 134 | m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} 135 | m_RaycastTarget: 1 136 | m_OnCullStateChanged: 137 | m_PersistentCalls: 138 | m_Calls: [] 139 | m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, 140 | Version=1.0.0.0, Culture=neutral, PublicKeyToken=null 141 | m_FontData: 142 | m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} 143 | m_FontSize: 40 144 | m_FontStyle: 1 145 | m_BestFit: 1 146 | m_MinSize: 10 147 | m_MaxSize: 40 148 | m_Alignment: 4 149 | m_RichText: 1 150 | m_HorizontalOverflow: 0 151 | m_VerticalOverflow: 0 152 | m_LineSpacing: 1 153 | m_Text: JS Plugin 154 | --- !u!222 &127677720 155 | CanvasRenderer: 156 | m_ObjectHideFlags: 0 157 | m_PrefabParentObject: {fileID: 0} 158 | m_PrefabInternal: {fileID: 0} 159 | m_GameObject: {fileID: 127677717} 160 | --- !u!1 &196507544 161 | GameObject: 162 | m_ObjectHideFlags: 0 163 | m_PrefabParentObject: {fileID: 0} 164 | m_PrefabInternal: {fileID: 0} 165 | serializedVersion: 4 166 | m_Component: 167 | - 4: {fileID: 196507546} 168 | - 108: {fileID: 196507545} 169 | m_Layer: 0 170 | m_Name: Directional Light 171 | m_TagString: Untagged 172 | m_Icon: {fileID: 0} 173 | m_NavMeshLayer: 0 174 | m_StaticEditorFlags: 0 175 | m_IsActive: 1 176 | --- !u!108 &196507545 177 | Light: 178 | m_ObjectHideFlags: 0 179 | m_PrefabParentObject: {fileID: 0} 180 | m_PrefabInternal: {fileID: 0} 181 | m_GameObject: {fileID: 196507544} 182 | m_Enabled: 1 183 | serializedVersion: 6 184 | m_Type: 1 185 | m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} 186 | m_Intensity: 1 187 | m_Range: 10 188 | m_SpotAngle: 30 189 | m_CookieSize: 10 190 | m_Shadows: 191 | m_Type: 2 192 | m_Resolution: -1 193 | m_Strength: 1 194 | m_Bias: 0.05 195 | m_NormalBias: 0.4 196 | m_NearPlane: 0.2 197 | m_Cookie: {fileID: 0} 198 | m_DrawHalo: 0 199 | m_Flare: {fileID: 0} 200 | m_RenderMode: 0 201 | m_CullingMask: 202 | serializedVersion: 2 203 | m_Bits: 4294967295 204 | m_Lightmapping: 4 205 | m_BounceIntensity: 1 206 | m_ShadowRadius: 0 207 | m_ShadowAngle: 0 208 | m_AreaSize: {x: 1, y: 1} 209 | --- !u!4 &196507546 210 | Transform: 211 | m_ObjectHideFlags: 0 212 | m_PrefabParentObject: {fileID: 0} 213 | m_PrefabInternal: {fileID: 0} 214 | m_GameObject: {fileID: 196507544} 215 | m_LocalRotation: {x: 0.40821794, y: -0.23456973, z: 0.109381676, w: 0.87542605} 216 | m_LocalPosition: {x: 0, y: 3, z: 0} 217 | m_LocalScale: {x: 1, y: 1, z: 1} 218 | m_Children: [] 219 | m_Father: {fileID: 0} 220 | m_RootOrder: 1 221 | --- !u!1 &196815717 222 | GameObject: 223 | m_ObjectHideFlags: 0 224 | m_PrefabParentObject: {fileID: 0} 225 | m_PrefabInternal: {fileID: 0} 226 | serializedVersion: 4 227 | m_Component: 228 | - 4: {fileID: 196815722} 229 | - 20: {fileID: 196815721} 230 | - 92: {fileID: 196815720} 231 | - 124: {fileID: 196815719} 232 | - 81: {fileID: 196815718} 233 | m_Layer: 0 234 | m_Name: Main Camera 235 | m_TagString: MainCamera 236 | m_Icon: {fileID: 0} 237 | m_NavMeshLayer: 0 238 | m_StaticEditorFlags: 0 239 | m_IsActive: 1 240 | --- !u!81 &196815718 241 | AudioListener: 242 | m_ObjectHideFlags: 0 243 | m_PrefabParentObject: {fileID: 0} 244 | m_PrefabInternal: {fileID: 0} 245 | m_GameObject: {fileID: 196815717} 246 | m_Enabled: 1 247 | --- !u!124 &196815719 248 | Behaviour: 249 | m_ObjectHideFlags: 0 250 | m_PrefabParentObject: {fileID: 0} 251 | m_PrefabInternal: {fileID: 0} 252 | m_GameObject: {fileID: 196815717} 253 | m_Enabled: 1 254 | --- !u!92 &196815720 255 | Behaviour: 256 | m_ObjectHideFlags: 0 257 | m_PrefabParentObject: {fileID: 0} 258 | m_PrefabInternal: {fileID: 0} 259 | m_GameObject: {fileID: 196815717} 260 | m_Enabled: 1 261 | --- !u!20 &196815721 262 | Camera: 263 | m_ObjectHideFlags: 0 264 | m_PrefabParentObject: {fileID: 0} 265 | m_PrefabInternal: {fileID: 0} 266 | m_GameObject: {fileID: 196815717} 267 | m_Enabled: 1 268 | serializedVersion: 2 269 | m_ClearFlags: 1 270 | m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0.019607844} 271 | m_NormalizedViewPortRect: 272 | serializedVersion: 2 273 | x: 0 274 | y: 0 275 | width: 1 276 | height: 1 277 | near clip plane: 0.3 278 | far clip plane: 1000 279 | field of view: 60 280 | orthographic: 0 281 | orthographic size: 5 282 | m_Depth: -1 283 | m_CullingMask: 284 | serializedVersion: 2 285 | m_Bits: 4294967295 286 | m_RenderingPath: -1 287 | m_TargetTexture: {fileID: 0} 288 | m_TargetDisplay: 0 289 | m_TargetEye: 3 290 | m_HDR: 0 291 | m_OcclusionCulling: 1 292 | m_StereoConvergence: 10 293 | m_StereoSeparation: 0.022 294 | m_StereoMirrorMode: 0 295 | --- !u!4 &196815722 296 | Transform: 297 | m_ObjectHideFlags: 0 298 | m_PrefabParentObject: {fileID: 0} 299 | m_PrefabInternal: {fileID: 0} 300 | m_GameObject: {fileID: 196815717} 301 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 302 | m_LocalPosition: {x: 0, y: 1, z: -10} 303 | m_LocalScale: {x: 1, y: 1, z: 1} 304 | m_Children: [] 305 | m_Father: {fileID: 0} 306 | m_RootOrder: 0 307 | --- !u!1 &325435706 308 | GameObject: 309 | m_ObjectHideFlags: 0 310 | m_PrefabParentObject: {fileID: 0} 311 | m_PrefabInternal: {fileID: 0} 312 | serializedVersion: 4 313 | m_Component: 314 | - 224: {fileID: 325435710} 315 | - 223: {fileID: 325435709} 316 | - 114: {fileID: 325435708} 317 | - 114: {fileID: 325435707} 318 | m_Layer: 5 319 | m_Name: Canvas 320 | m_TagString: Untagged 321 | m_Icon: {fileID: 0} 322 | m_NavMeshLayer: 0 323 | m_StaticEditorFlags: 0 324 | m_IsActive: 1 325 | --- !u!114 &325435707 326 | MonoBehaviour: 327 | m_ObjectHideFlags: 0 328 | m_PrefabParentObject: {fileID: 0} 329 | m_PrefabInternal: {fileID: 0} 330 | m_GameObject: {fileID: 325435706} 331 | m_Enabled: 1 332 | m_EditorHideFlags: 0 333 | m_Script: {fileID: 1301386320, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 334 | m_Name: 335 | m_EditorClassIdentifier: 336 | m_IgnoreReversedGraphics: 1 337 | m_BlockingObjects: 0 338 | m_BlockingMask: 339 | serializedVersion: 2 340 | m_Bits: 4294967295 341 | --- !u!114 &325435708 342 | MonoBehaviour: 343 | m_ObjectHideFlags: 0 344 | m_PrefabParentObject: {fileID: 0} 345 | m_PrefabInternal: {fileID: 0} 346 | m_GameObject: {fileID: 325435706} 347 | m_Enabled: 1 348 | m_EditorHideFlags: 0 349 | m_Script: {fileID: 1980459831, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 350 | m_Name: 351 | m_EditorClassIdentifier: 352 | m_UiScaleMode: 0 353 | m_ReferencePixelsPerUnit: 100 354 | m_ScaleFactor: 1 355 | m_ReferenceResolution: {x: 800, y: 600} 356 | m_ScreenMatchMode: 0 357 | m_MatchWidthOrHeight: 0 358 | m_PhysicalUnit: 3 359 | m_FallbackScreenDPI: 96 360 | m_DefaultSpriteDPI: 96 361 | m_DynamicPixelsPerUnit: 1 362 | --- !u!223 &325435709 363 | Canvas: 364 | m_ObjectHideFlags: 0 365 | m_PrefabParentObject: {fileID: 0} 366 | m_PrefabInternal: {fileID: 0} 367 | m_GameObject: {fileID: 325435706} 368 | m_Enabled: 1 369 | serializedVersion: 2 370 | m_RenderMode: 0 371 | m_Camera: {fileID: 0} 372 | m_PlaneDistance: 100 373 | m_PixelPerfect: 0 374 | m_ReceivesEvents: 1 375 | m_OverrideSorting: 0 376 | m_OverridePixelPerfect: 0 377 | m_SortingLayerID: 0 378 | m_SortingOrder: 0 379 | m_TargetDisplay: 0 380 | --- !u!224 &325435710 381 | RectTransform: 382 | m_ObjectHideFlags: 0 383 | m_PrefabParentObject: {fileID: 0} 384 | m_PrefabInternal: {fileID: 0} 385 | m_GameObject: {fileID: 325435706} 386 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 387 | m_LocalPosition: {x: 0, y: 0, z: 0} 388 | m_LocalScale: {x: 0, y: 0, z: 0} 389 | m_Children: 390 | - {fileID: 778493273} 391 | m_Father: {fileID: 0} 392 | m_RootOrder: 2 393 | m_AnchorMin: {x: 0, y: 0} 394 | m_AnchorMax: {x: 0, y: 0} 395 | m_AnchoredPosition: {x: 0, y: 0} 396 | m_SizeDelta: {x: 0, y: 0} 397 | m_Pivot: {x: 0, y: 0} 398 | --- !u!1 &331017152 399 | GameObject: 400 | m_ObjectHideFlags: 0 401 | m_PrefabParentObject: {fileID: 0} 402 | m_PrefabInternal: {fileID: 0} 403 | serializedVersion: 4 404 | m_Component: 405 | - 224: {fileID: 331017153} 406 | - 222: {fileID: 331017156} 407 | - 114: {fileID: 331017155} 408 | - 114: {fileID: 331017154} 409 | m_Layer: 5 410 | m_Name: InputField 411 | m_TagString: Untagged 412 | m_Icon: {fileID: 0} 413 | m_NavMeshLayer: 0 414 | m_StaticEditorFlags: 0 415 | m_IsActive: 1 416 | --- !u!224 &331017153 417 | RectTransform: 418 | m_ObjectHideFlags: 0 419 | m_PrefabParentObject: {fileID: 0} 420 | m_PrefabInternal: {fileID: 0} 421 | m_GameObject: {fileID: 331017152} 422 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 423 | m_LocalPosition: {x: 0, y: 0, z: 0} 424 | m_LocalScale: {x: 1, y: 1, z: 1} 425 | m_Children: 426 | - {fileID: 1104244421} 427 | m_Father: {fileID: 778493273} 428 | m_RootOrder: 0 429 | m_AnchorMin: {x: 0, y: 0} 430 | m_AnchorMax: {x: 0, y: 0} 431 | m_AnchoredPosition: {x: 0, y: 0} 432 | m_SizeDelta: {x: 0, y: 0} 433 | m_Pivot: {x: 0.5, y: 0.5} 434 | --- !u!114 &331017154 435 | MonoBehaviour: 436 | m_ObjectHideFlags: 0 437 | m_PrefabParentObject: {fileID: 0} 438 | m_PrefabInternal: {fileID: 0} 439 | m_GameObject: {fileID: 331017152} 440 | m_Enabled: 1 441 | m_EditorHideFlags: 0 442 | m_Script: {fileID: 575553740, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 443 | m_Name: 444 | m_EditorClassIdentifier: 445 | m_Navigation: 446 | m_Mode: 3 447 | m_SelectOnUp: {fileID: 0} 448 | m_SelectOnDown: {fileID: 0} 449 | m_SelectOnLeft: {fileID: 0} 450 | m_SelectOnRight: {fileID: 0} 451 | m_Transition: 1 452 | m_Colors: 453 | m_NormalColor: {r: 1, g: 1, b: 1, a: 1} 454 | m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} 455 | m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} 456 | m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} 457 | m_ColorMultiplier: 1 458 | m_FadeDuration: 0.1 459 | m_SpriteState: 460 | m_HighlightedSprite: {fileID: 0} 461 | m_PressedSprite: {fileID: 0} 462 | m_DisabledSprite: {fileID: 0} 463 | m_AnimationTriggers: 464 | m_NormalTrigger: Normal 465 | m_HighlightedTrigger: Highlighted 466 | m_PressedTrigger: Pressed 467 | m_DisabledTrigger: Disabled 468 | m_Interactable: 1 469 | m_TargetGraphic: {fileID: 331017155} 470 | m_TextComponent: {fileID: 1104244422} 471 | m_Placeholder: {fileID: 0} 472 | m_ContentType: 0 473 | m_InputType: 0 474 | m_AsteriskChar: 42 475 | m_KeyboardType: 0 476 | m_LineType: 0 477 | m_HideMobileInput: 0 478 | m_CharacterValidation: 0 479 | m_CharacterLimit: 0 480 | m_OnEndEdit: 481 | m_PersistentCalls: 482 | m_Calls: [] 483 | m_TypeName: UnityEngine.UI.InputField+SubmitEvent, UnityEngine.UI, Version=1.0.0.0, 484 | Culture=neutral, PublicKeyToken=null 485 | m_OnValueChanged: 486 | m_PersistentCalls: 487 | m_Calls: [] 488 | m_TypeName: UnityEngine.UI.InputField+OnChangeEvent, UnityEngine.UI, Version=1.0.0.0, 489 | Culture=neutral, PublicKeyToken=null 490 | m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} 491 | m_CustomCaretColor: 0 492 | m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} 493 | m_Text: http://unity3d.com 494 | m_CaretBlinkRate: 0.85 495 | m_CaretWidth: 1 496 | m_ReadOnly: 0 497 | --- !u!114 &331017155 498 | MonoBehaviour: 499 | m_ObjectHideFlags: 0 500 | m_PrefabParentObject: {fileID: 0} 501 | m_PrefabInternal: {fileID: 0} 502 | m_GameObject: {fileID: 331017152} 503 | m_Enabled: 1 504 | m_EditorHideFlags: 0 505 | m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 506 | m_Name: 507 | m_EditorClassIdentifier: 508 | m_Material: {fileID: 0} 509 | m_Color: {r: 1, g: 1, b: 1, a: 1} 510 | m_RaycastTarget: 1 511 | m_OnCullStateChanged: 512 | m_PersistentCalls: 513 | m_Calls: [] 514 | m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, 515 | Version=1.0.0.0, Culture=neutral, PublicKeyToken=null 516 | m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} 517 | m_Type: 1 518 | m_PreserveAspect: 0 519 | m_FillCenter: 1 520 | m_FillMethod: 4 521 | m_FillAmount: 1 522 | m_FillClockwise: 1 523 | m_FillOrigin: 0 524 | --- !u!222 &331017156 525 | CanvasRenderer: 526 | m_ObjectHideFlags: 0 527 | m_PrefabParentObject: {fileID: 0} 528 | m_PrefabInternal: {fileID: 0} 529 | m_GameObject: {fileID: 331017152} 530 | --- !u!1 &778493272 531 | GameObject: 532 | m_ObjectHideFlags: 0 533 | m_PrefabParentObject: {fileID: 0} 534 | m_PrefabInternal: {fileID: 0} 535 | serializedVersion: 4 536 | m_Component: 537 | - 224: {fileID: 778493273} 538 | - 114: {fileID: 778493274} 539 | m_Layer: 5 540 | m_Name: List 541 | m_TagString: Untagged 542 | m_Icon: {fileID: 0} 543 | m_NavMeshLayer: 0 544 | m_StaticEditorFlags: 0 545 | m_IsActive: 1 546 | --- !u!224 &778493273 547 | RectTransform: 548 | m_ObjectHideFlags: 0 549 | m_PrefabParentObject: {fileID: 0} 550 | m_PrefabInternal: {fileID: 0} 551 | m_GameObject: {fileID: 778493272} 552 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 553 | m_LocalPosition: {x: 0, y: 0, z: 0} 554 | m_LocalScale: {x: 1, y: 1, z: 1} 555 | m_Children: 556 | - {fileID: 331017153} 557 | - {fileID: 1100937962} 558 | - {fileID: 1042508503} 559 | - {fileID: 1876499863} 560 | m_Father: {fileID: 325435710} 561 | m_RootOrder: 0 562 | m_AnchorMin: {x: 0, y: 0} 563 | m_AnchorMax: {x: 1, y: 1} 564 | m_AnchoredPosition: {x: 0, y: 0} 565 | m_SizeDelta: {x: -260, y: -160} 566 | m_Pivot: {x: 0.5, y: 0.5} 567 | --- !u!114 &778493274 568 | MonoBehaviour: 569 | m_ObjectHideFlags: 0 570 | m_PrefabParentObject: {fileID: 0} 571 | m_PrefabInternal: {fileID: 0} 572 | m_GameObject: {fileID: 778493272} 573 | m_Enabled: 1 574 | m_EditorHideFlags: 0 575 | m_Script: {fileID: 1297475563, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 576 | m_Name: 577 | m_EditorClassIdentifier: 578 | m_Padding: 579 | m_Left: 0 580 | m_Right: 0 581 | m_Top: 0 582 | m_Bottom: 0 583 | m_ChildAlignment: 0 584 | m_Spacing: 10 585 | m_ChildForceExpandWidth: 1 586 | m_ChildForceExpandHeight: 1 587 | --- !u!1 &1042508502 588 | GameObject: 589 | m_ObjectHideFlags: 0 590 | m_PrefabParentObject: {fileID: 0} 591 | m_PrefabInternal: {fileID: 0} 592 | serializedVersion: 4 593 | m_Component: 594 | - 224: {fileID: 1042508503} 595 | - 222: {fileID: 1042508506} 596 | - 114: {fileID: 1042508505} 597 | - 114: {fileID: 1042508504} 598 | m_Layer: 5 599 | m_Name: window.open() 600 | m_TagString: Untagged 601 | m_Icon: {fileID: 0} 602 | m_NavMeshLayer: 0 603 | m_StaticEditorFlags: 0 604 | m_IsActive: 1 605 | --- !u!224 &1042508503 606 | RectTransform: 607 | m_ObjectHideFlags: 0 608 | m_PrefabParentObject: {fileID: 0} 609 | m_PrefabInternal: {fileID: 0} 610 | m_GameObject: {fileID: 1042508502} 611 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 612 | m_LocalPosition: {x: 0, y: 0, z: 0} 613 | m_LocalScale: {x: 1, y: 1, z: 1} 614 | m_Children: 615 | - {fileID: 1557555259} 616 | m_Father: {fileID: 778493273} 617 | m_RootOrder: 2 618 | m_AnchorMin: {x: 0, y: 0} 619 | m_AnchorMax: {x: 0, y: 0} 620 | m_AnchoredPosition: {x: 0, y: 0} 621 | m_SizeDelta: {x: 0, y: 0} 622 | m_Pivot: {x: 0.5, y: 0.5} 623 | --- !u!114 &1042508504 624 | MonoBehaviour: 625 | m_ObjectHideFlags: 0 626 | m_PrefabParentObject: {fileID: 0} 627 | m_PrefabInternal: {fileID: 0} 628 | m_GameObject: {fileID: 1042508502} 629 | m_Enabled: 1 630 | m_EditorHideFlags: 0 631 | m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 632 | m_Name: 633 | m_EditorClassIdentifier: 634 | m_Navigation: 635 | m_Mode: 3 636 | m_SelectOnUp: {fileID: 0} 637 | m_SelectOnDown: {fileID: 0} 638 | m_SelectOnLeft: {fileID: 0} 639 | m_SelectOnRight: {fileID: 0} 640 | m_Transition: 1 641 | m_Colors: 642 | m_NormalColor: {r: 1, g: 1, b: 1, a: 1} 643 | m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} 644 | m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} 645 | m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} 646 | m_ColorMultiplier: 1 647 | m_FadeDuration: 0.1 648 | m_SpriteState: 649 | m_HighlightedSprite: {fileID: 0} 650 | m_PressedSprite: {fileID: 0} 651 | m_DisabledSprite: {fileID: 0} 652 | m_AnimationTriggers: 653 | m_NormalTrigger: Normal 654 | m_HighlightedTrigger: Highlighted 655 | m_PressedTrigger: Pressed 656 | m_DisabledTrigger: Disabled 657 | m_Interactable: 1 658 | m_TargetGraphic: {fileID: 1042508505} 659 | m_OnClick: 660 | m_PersistentCalls: 661 | m_Calls: 662 | - m_Target: {fileID: 1342114266} 663 | m_MethodName: OpenLinkJS 664 | m_Mode: 1 665 | m_Arguments: 666 | m_ObjectArgument: {fileID: 0} 667 | m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine 668 | m_IntArgument: 0 669 | m_FloatArgument: 0 670 | m_StringArgument: 671 | m_BoolArgument: 0 672 | m_CallState: 2 673 | m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, 674 | Culture=neutral, PublicKeyToken=null 675 | --- !u!114 &1042508505 676 | MonoBehaviour: 677 | m_ObjectHideFlags: 0 678 | m_PrefabParentObject: {fileID: 0} 679 | m_PrefabInternal: {fileID: 0} 680 | m_GameObject: {fileID: 1042508502} 681 | m_Enabled: 1 682 | m_EditorHideFlags: 0 683 | m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 684 | m_Name: 685 | m_EditorClassIdentifier: 686 | m_Material: {fileID: 0} 687 | m_Color: {r: 1, g: 1, b: 1, a: 1} 688 | m_RaycastTarget: 1 689 | m_OnCullStateChanged: 690 | m_PersistentCalls: 691 | m_Calls: [] 692 | m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, 693 | Version=1.0.0.0, Culture=neutral, PublicKeyToken=null 694 | m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} 695 | m_Type: 1 696 | m_PreserveAspect: 0 697 | m_FillCenter: 1 698 | m_FillMethod: 4 699 | m_FillAmount: 1 700 | m_FillClockwise: 1 701 | m_FillOrigin: 0 702 | --- !u!222 &1042508506 703 | CanvasRenderer: 704 | m_ObjectHideFlags: 0 705 | m_PrefabParentObject: {fileID: 0} 706 | m_PrefabInternal: {fileID: 0} 707 | m_GameObject: {fileID: 1042508502} 708 | --- !u!1 &1100937961 709 | GameObject: 710 | m_ObjectHideFlags: 0 711 | m_PrefabParentObject: {fileID: 0} 712 | m_PrefabInternal: {fileID: 0} 713 | serializedVersion: 4 714 | m_Component: 715 | - 224: {fileID: 1100937962} 716 | - 222: {fileID: 1100937965} 717 | - 114: {fileID: 1100937964} 718 | - 114: {fileID: 1100937963} 719 | m_Layer: 5 720 | m_Name: Application.OpenURL() 721 | m_TagString: Untagged 722 | m_Icon: {fileID: 0} 723 | m_NavMeshLayer: 0 724 | m_StaticEditorFlags: 0 725 | m_IsActive: 1 726 | --- !u!224 &1100937962 727 | RectTransform: 728 | m_ObjectHideFlags: 0 729 | m_PrefabParentObject: {fileID: 0} 730 | m_PrefabInternal: {fileID: 0} 731 | m_GameObject: {fileID: 1100937961} 732 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 733 | m_LocalPosition: {x: 0, y: 0, z: 0} 734 | m_LocalScale: {x: 1, y: 1, z: 1} 735 | m_Children: 736 | - {fileID: 2085591116} 737 | m_Father: {fileID: 778493273} 738 | m_RootOrder: 1 739 | m_AnchorMin: {x: 0, y: 0} 740 | m_AnchorMax: {x: 0, y: 0} 741 | m_AnchoredPosition: {x: 0, y: 0} 742 | m_SizeDelta: {x: 0, y: 0} 743 | m_Pivot: {x: 0.5, y: 0.5} 744 | --- !u!114 &1100937963 745 | MonoBehaviour: 746 | m_ObjectHideFlags: 0 747 | m_PrefabParentObject: {fileID: 0} 748 | m_PrefabInternal: {fileID: 0} 749 | m_GameObject: {fileID: 1100937961} 750 | m_Enabled: 1 751 | m_EditorHideFlags: 0 752 | m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 753 | m_Name: 754 | m_EditorClassIdentifier: 755 | m_Navigation: 756 | m_Mode: 3 757 | m_SelectOnUp: {fileID: 0} 758 | m_SelectOnDown: {fileID: 0} 759 | m_SelectOnLeft: {fileID: 0} 760 | m_SelectOnRight: {fileID: 0} 761 | m_Transition: 1 762 | m_Colors: 763 | m_NormalColor: {r: 1, g: 1, b: 1, a: 1} 764 | m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} 765 | m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} 766 | m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} 767 | m_ColorMultiplier: 1 768 | m_FadeDuration: 0.1 769 | m_SpriteState: 770 | m_HighlightedSprite: {fileID: 0} 771 | m_PressedSprite: {fileID: 0} 772 | m_DisabledSprite: {fileID: 0} 773 | m_AnimationTriggers: 774 | m_NormalTrigger: Normal 775 | m_HighlightedTrigger: Highlighted 776 | m_PressedTrigger: Pressed 777 | m_DisabledTrigger: Disabled 778 | m_Interactable: 1 779 | m_TargetGraphic: {fileID: 1100937964} 780 | m_OnClick: 781 | m_PersistentCalls: 782 | m_Calls: 783 | - m_Target: {fileID: 1342114266} 784 | m_MethodName: OpenLink 785 | m_Mode: 1 786 | m_Arguments: 787 | m_ObjectArgument: {fileID: 0} 788 | m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine 789 | m_IntArgument: 0 790 | m_FloatArgument: 0 791 | m_StringArgument: 792 | m_BoolArgument: 0 793 | m_CallState: 2 794 | m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, 795 | Culture=neutral, PublicKeyToken=null 796 | --- !u!114 &1100937964 797 | MonoBehaviour: 798 | m_ObjectHideFlags: 0 799 | m_PrefabParentObject: {fileID: 0} 800 | m_PrefabInternal: {fileID: 0} 801 | m_GameObject: {fileID: 1100937961} 802 | m_Enabled: 1 803 | m_EditorHideFlags: 0 804 | m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 805 | m_Name: 806 | m_EditorClassIdentifier: 807 | m_Material: {fileID: 0} 808 | m_Color: {r: 1, g: 1, b: 1, a: 1} 809 | m_RaycastTarget: 1 810 | m_OnCullStateChanged: 811 | m_PersistentCalls: 812 | m_Calls: [] 813 | m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, 814 | Version=1.0.0.0, Culture=neutral, PublicKeyToken=null 815 | m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} 816 | m_Type: 1 817 | m_PreserveAspect: 0 818 | m_FillCenter: 1 819 | m_FillMethod: 4 820 | m_FillAmount: 1 821 | m_FillClockwise: 1 822 | m_FillOrigin: 0 823 | --- !u!222 &1100937965 824 | CanvasRenderer: 825 | m_ObjectHideFlags: 0 826 | m_PrefabParentObject: {fileID: 0} 827 | m_PrefabInternal: {fileID: 0} 828 | m_GameObject: {fileID: 1100937961} 829 | --- !u!1 &1104244420 830 | GameObject: 831 | m_ObjectHideFlags: 0 832 | m_PrefabParentObject: {fileID: 0} 833 | m_PrefabInternal: {fileID: 0} 834 | serializedVersion: 4 835 | m_Component: 836 | - 224: {fileID: 1104244421} 837 | - 222: {fileID: 1104244423} 838 | - 114: {fileID: 1104244422} 839 | m_Layer: 5 840 | m_Name: Text 841 | m_TagString: Untagged 842 | m_Icon: {fileID: 0} 843 | m_NavMeshLayer: 0 844 | m_StaticEditorFlags: 0 845 | m_IsActive: 1 846 | --- !u!224 &1104244421 847 | RectTransform: 848 | m_ObjectHideFlags: 0 849 | m_PrefabParentObject: {fileID: 0} 850 | m_PrefabInternal: {fileID: 0} 851 | m_GameObject: {fileID: 1104244420} 852 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 853 | m_LocalPosition: {x: 0, y: 0, z: 0} 854 | m_LocalScale: {x: 1, y: 1, z: 1} 855 | m_Children: [] 856 | m_Father: {fileID: 331017153} 857 | m_RootOrder: 0 858 | m_AnchorMin: {x: 0.03553956, y: 0} 859 | m_AnchorMax: {x: 0.96223915, y: 1} 860 | m_AnchoredPosition: {x: 0, y: -0.5} 861 | m_SizeDelta: {x: -20, y: -13} 862 | m_Pivot: {x: 0.5, y: 0.5} 863 | --- !u!114 &1104244422 864 | MonoBehaviour: 865 | m_ObjectHideFlags: 0 866 | m_PrefabParentObject: {fileID: 0} 867 | m_PrefabInternal: {fileID: 0} 868 | m_GameObject: {fileID: 1104244420} 869 | m_Enabled: 1 870 | m_EditorHideFlags: 0 871 | m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 872 | m_Name: 873 | m_EditorClassIdentifier: 874 | m_Material: {fileID: 0} 875 | m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} 876 | m_RaycastTarget: 1 877 | m_OnCullStateChanged: 878 | m_PersistentCalls: 879 | m_Calls: [] 880 | m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, 881 | Version=1.0.0.0, Culture=neutral, PublicKeyToken=null 882 | m_FontData: 883 | m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} 884 | m_FontSize: 30 885 | m_FontStyle: 0 886 | m_BestFit: 0 887 | m_MinSize: 10 888 | m_MaxSize: 40 889 | m_Alignment: 4 890 | m_RichText: 0 891 | m_HorizontalOverflow: 0 892 | m_VerticalOverflow: 0 893 | m_LineSpacing: 1 894 | m_Text: http://unity3d.com 895 | --- !u!222 &1104244423 896 | CanvasRenderer: 897 | m_ObjectHideFlags: 0 898 | m_PrefabParentObject: {fileID: 0} 899 | m_PrefabInternal: {fileID: 0} 900 | m_GameObject: {fileID: 1104244420} 901 | --- !u!1 &1342114265 902 | GameObject: 903 | m_ObjectHideFlags: 0 904 | m_PrefabParentObject: {fileID: 0} 905 | m_PrefabInternal: {fileID: 0} 906 | serializedVersion: 4 907 | m_Component: 908 | - 4: {fileID: 1342114267} 909 | - 114: {fileID: 1342114266} 910 | m_Layer: 0 911 | m_Name: Script 912 | m_TagString: Untagged 913 | m_Icon: {fileID: 0} 914 | m_NavMeshLayer: 0 915 | m_StaticEditorFlags: 0 916 | m_IsActive: 1 917 | --- !u!114 &1342114266 918 | MonoBehaviour: 919 | m_ObjectHideFlags: 0 920 | m_PrefabParentObject: {fileID: 0} 921 | m_PrefabInternal: {fileID: 0} 922 | m_GameObject: {fileID: 1342114265} 923 | m_Enabled: 1 924 | m_EditorHideFlags: 0 925 | m_Script: {fileID: 11500000, guid: 97ef33f0527d24bb0ab7e72fa2727d6f, type: 3} 926 | m_Name: 927 | m_EditorClassIdentifier: 928 | Field: {fileID: 331017154} 929 | --- !u!4 &1342114267 930 | Transform: 931 | m_ObjectHideFlags: 0 932 | m_PrefabParentObject: {fileID: 0} 933 | m_PrefabInternal: {fileID: 0} 934 | m_GameObject: {fileID: 1342114265} 935 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 936 | m_LocalPosition: {x: 0, y: 0, z: 0} 937 | m_LocalScale: {x: 1, y: 1, z: 1} 938 | m_Children: [] 939 | m_Father: {fileID: 0} 940 | m_RootOrder: 4 941 | --- !u!1 &1358060434 942 | GameObject: 943 | m_ObjectHideFlags: 0 944 | m_PrefabParentObject: {fileID: 0} 945 | m_PrefabInternal: {fileID: 0} 946 | serializedVersion: 4 947 | m_Component: 948 | - 4: {fileID: 1358060437} 949 | - 114: {fileID: 1358060436} 950 | - 114: {fileID: 1358060435} 951 | m_Layer: 0 952 | m_Name: EventSystem 953 | m_TagString: Untagged 954 | m_Icon: {fileID: 0} 955 | m_NavMeshLayer: 0 956 | m_StaticEditorFlags: 0 957 | m_IsActive: 1 958 | --- !u!114 &1358060435 959 | MonoBehaviour: 960 | m_ObjectHideFlags: 0 961 | m_PrefabParentObject: {fileID: 0} 962 | m_PrefabInternal: {fileID: 0} 963 | m_GameObject: {fileID: 1358060434} 964 | m_Enabled: 1 965 | m_EditorHideFlags: 0 966 | m_Script: {fileID: 1077351063, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 967 | m_Name: 968 | m_EditorClassIdentifier: 969 | m_HorizontalAxis: Horizontal 970 | m_VerticalAxis: Vertical 971 | m_SubmitButton: Submit 972 | m_CancelButton: Cancel 973 | m_InputActionsPerSecond: 10 974 | m_RepeatDelay: 0.5 975 | m_ForceModuleActive: 0 976 | --- !u!114 &1358060436 977 | MonoBehaviour: 978 | m_ObjectHideFlags: 0 979 | m_PrefabParentObject: {fileID: 0} 980 | m_PrefabInternal: {fileID: 0} 981 | m_GameObject: {fileID: 1358060434} 982 | m_Enabled: 1 983 | m_EditorHideFlags: 0 984 | m_Script: {fileID: -619905303, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 985 | m_Name: 986 | m_EditorClassIdentifier: 987 | m_FirstSelected: {fileID: 0} 988 | m_sendNavigationEvents: 1 989 | m_DragThreshold: 5 990 | --- !u!4 &1358060437 991 | Transform: 992 | m_ObjectHideFlags: 0 993 | m_PrefabParentObject: {fileID: 0} 994 | m_PrefabInternal: {fileID: 0} 995 | m_GameObject: {fileID: 1358060434} 996 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 997 | m_LocalPosition: {x: 0, y: 0, z: 0} 998 | m_LocalScale: {x: 1, y: 1, z: 1} 999 | m_Children: [] 1000 | m_Father: {fileID: 0} 1001 | m_RootOrder: 3 1002 | --- !u!1 &1557555258 1003 | GameObject: 1004 | m_ObjectHideFlags: 0 1005 | m_PrefabParentObject: {fileID: 0} 1006 | m_PrefabInternal: {fileID: 0} 1007 | serializedVersion: 4 1008 | m_Component: 1009 | - 224: {fileID: 1557555259} 1010 | - 222: {fileID: 1557555261} 1011 | - 114: {fileID: 1557555260} 1012 | m_Layer: 5 1013 | m_Name: Text 1014 | m_TagString: Untagged 1015 | m_Icon: {fileID: 0} 1016 | m_NavMeshLayer: 0 1017 | m_StaticEditorFlags: 0 1018 | m_IsActive: 1 1019 | --- !u!224 &1557555259 1020 | RectTransform: 1021 | m_ObjectHideFlags: 0 1022 | m_PrefabParentObject: {fileID: 0} 1023 | m_PrefabInternal: {fileID: 0} 1024 | m_GameObject: {fileID: 1557555258} 1025 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 1026 | m_LocalPosition: {x: 0, y: 0, z: 0} 1027 | m_LocalScale: {x: 1, y: 1, z: 1} 1028 | m_Children: [] 1029 | m_Father: {fileID: 1042508503} 1030 | m_RootOrder: 0 1031 | m_AnchorMin: {x: 0, y: 0} 1032 | m_AnchorMax: {x: 1, y: 1} 1033 | m_AnchoredPosition: {x: 0, y: 0} 1034 | m_SizeDelta: {x: 0, y: 0} 1035 | m_Pivot: {x: 0.5, y: 0.5} 1036 | --- !u!114 &1557555260 1037 | MonoBehaviour: 1038 | m_ObjectHideFlags: 0 1039 | m_PrefabParentObject: {fileID: 0} 1040 | m_PrefabInternal: {fileID: 0} 1041 | m_GameObject: {fileID: 1557555258} 1042 | m_Enabled: 1 1043 | m_EditorHideFlags: 0 1044 | m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 1045 | m_Name: 1046 | m_EditorClassIdentifier: 1047 | m_Material: {fileID: 0} 1048 | m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} 1049 | m_RaycastTarget: 1 1050 | m_OnCullStateChanged: 1051 | m_PersistentCalls: 1052 | m_Calls: [] 1053 | m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, 1054 | Version=1.0.0.0, Culture=neutral, PublicKeyToken=null 1055 | m_FontData: 1056 | m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} 1057 | m_FontSize: 40 1058 | m_FontStyle: 1 1059 | m_BestFit: 1 1060 | m_MinSize: 10 1061 | m_MaxSize: 40 1062 | m_Alignment: 4 1063 | m_RichText: 1 1064 | m_HorizontalOverflow: 0 1065 | m_VerticalOverflow: 0 1066 | m_LineSpacing: 1 1067 | m_Text: window.open() 1068 | --- !u!222 &1557555261 1069 | CanvasRenderer: 1070 | m_ObjectHideFlags: 0 1071 | m_PrefabParentObject: {fileID: 0} 1072 | m_PrefabInternal: {fileID: 0} 1073 | m_GameObject: {fileID: 1557555258} 1074 | --- !u!1 &1876499862 1075 | GameObject: 1076 | m_ObjectHideFlags: 0 1077 | m_PrefabParentObject: {fileID: 0} 1078 | m_PrefabInternal: {fileID: 0} 1079 | serializedVersion: 4 1080 | m_Component: 1081 | - 224: {fileID: 1876499863} 1082 | - 222: {fileID: 1876499866} 1083 | - 114: {fileID: 1876499865} 1084 | - 114: {fileID: 1876499864} 1085 | - 114: {fileID: 1876499867} 1086 | m_Layer: 5 1087 | m_Name: JS Plugin 1088 | m_TagString: Untagged 1089 | m_Icon: {fileID: 0} 1090 | m_NavMeshLayer: 0 1091 | m_StaticEditorFlags: 0 1092 | m_IsActive: 1 1093 | --- !u!224 &1876499863 1094 | RectTransform: 1095 | m_ObjectHideFlags: 0 1096 | m_PrefabParentObject: {fileID: 0} 1097 | m_PrefabInternal: {fileID: 0} 1098 | m_GameObject: {fileID: 1876499862} 1099 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 1100 | m_LocalPosition: {x: 0, y: 0, z: 0} 1101 | m_LocalScale: {x: 1, y: 1, z: 1} 1102 | m_Children: 1103 | - {fileID: 127677718} 1104 | m_Father: {fileID: 778493273} 1105 | m_RootOrder: 3 1106 | m_AnchorMin: {x: 0, y: 0} 1107 | m_AnchorMax: {x: 0, y: 0} 1108 | m_AnchoredPosition: {x: 0, y: 0} 1109 | m_SizeDelta: {x: 0, y: 0} 1110 | m_Pivot: {x: 0.5, y: 0.5} 1111 | --- !u!114 &1876499864 1112 | MonoBehaviour: 1113 | m_ObjectHideFlags: 0 1114 | m_PrefabParentObject: {fileID: 0} 1115 | m_PrefabInternal: {fileID: 0} 1116 | m_GameObject: {fileID: 1876499862} 1117 | m_Enabled: 1 1118 | m_EditorHideFlags: 0 1119 | m_Script: {fileID: 1392445389, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 1120 | m_Name: 1121 | m_EditorClassIdentifier: 1122 | m_Navigation: 1123 | m_Mode: 3 1124 | m_SelectOnUp: {fileID: 0} 1125 | m_SelectOnDown: {fileID: 0} 1126 | m_SelectOnLeft: {fileID: 0} 1127 | m_SelectOnRight: {fileID: 0} 1128 | m_Transition: 1 1129 | m_Colors: 1130 | m_NormalColor: {r: 1, g: 1, b: 1, a: 1} 1131 | m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} 1132 | m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} 1133 | m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} 1134 | m_ColorMultiplier: 1 1135 | m_FadeDuration: 0.1 1136 | m_SpriteState: 1137 | m_HighlightedSprite: {fileID: 0} 1138 | m_PressedSprite: {fileID: 0} 1139 | m_DisabledSprite: {fileID: 0} 1140 | m_AnimationTriggers: 1141 | m_NormalTrigger: Normal 1142 | m_HighlightedTrigger: Highlighted 1143 | m_PressedTrigger: Pressed 1144 | m_DisabledTrigger: Disabled 1145 | m_Interactable: 1 1146 | m_TargetGraphic: {fileID: 1876499865} 1147 | m_OnClick: 1148 | m_PersistentCalls: 1149 | m_Calls: [] 1150 | m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, 1151 | Culture=neutral, PublicKeyToken=null 1152 | --- !u!114 &1876499865 1153 | MonoBehaviour: 1154 | m_ObjectHideFlags: 0 1155 | m_PrefabParentObject: {fileID: 0} 1156 | m_PrefabInternal: {fileID: 0} 1157 | m_GameObject: {fileID: 1876499862} 1158 | m_Enabled: 1 1159 | m_EditorHideFlags: 0 1160 | m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 1161 | m_Name: 1162 | m_EditorClassIdentifier: 1163 | m_Material: {fileID: 0} 1164 | m_Color: {r: 1, g: 1, b: 1, a: 1} 1165 | m_RaycastTarget: 1 1166 | m_OnCullStateChanged: 1167 | m_PersistentCalls: 1168 | m_Calls: [] 1169 | m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, 1170 | Version=1.0.0.0, Culture=neutral, PublicKeyToken=null 1171 | m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} 1172 | m_Type: 1 1173 | m_PreserveAspect: 0 1174 | m_FillCenter: 1 1175 | m_FillMethod: 4 1176 | m_FillAmount: 1 1177 | m_FillClockwise: 1 1178 | m_FillOrigin: 0 1179 | --- !u!222 &1876499866 1180 | CanvasRenderer: 1181 | m_ObjectHideFlags: 0 1182 | m_PrefabParentObject: {fileID: 0} 1183 | m_PrefabInternal: {fileID: 0} 1184 | m_GameObject: {fileID: 1876499862} 1185 | --- !u!114 &1876499867 1186 | MonoBehaviour: 1187 | m_ObjectHideFlags: 0 1188 | m_PrefabParentObject: {fileID: 0} 1189 | m_PrefabInternal: {fileID: 0} 1190 | m_GameObject: {fileID: 1876499862} 1191 | m_Enabled: 1 1192 | m_EditorHideFlags: 0 1193 | m_Script: {fileID: 11500000, guid: 6d622d03aa4cc47fd9c4a35894a0c6e8, type: 3} 1194 | m_Name: 1195 | m_EditorClassIdentifier: 1196 | OnPress: 1197 | m_PersistentCalls: 1198 | m_Calls: 1199 | - m_Target: {fileID: 1342114266} 1200 | m_MethodName: OpenLinkJSPlugin 1201 | m_Mode: 1 1202 | m_Arguments: 1203 | m_ObjectArgument: {fileID: 0} 1204 | m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine 1205 | m_IntArgument: 0 1206 | m_FloatArgument: 0 1207 | m_StringArgument: 1208 | m_BoolArgument: 0 1209 | m_CallState: 2 1210 | m_TypeName: PressHandler+ButtonPressEvent, Assembly-CSharp, Version=0.0.0.0, Culture=neutral, 1211 | PublicKeyToken=null 1212 | --- !u!1 &2085591115 1213 | GameObject: 1214 | m_ObjectHideFlags: 0 1215 | m_PrefabParentObject: {fileID: 0} 1216 | m_PrefabInternal: {fileID: 0} 1217 | serializedVersion: 4 1218 | m_Component: 1219 | - 224: {fileID: 2085591116} 1220 | - 222: {fileID: 2085591118} 1221 | - 114: {fileID: 2085591117} 1222 | m_Layer: 5 1223 | m_Name: Text 1224 | m_TagString: Untagged 1225 | m_Icon: {fileID: 0} 1226 | m_NavMeshLayer: 0 1227 | m_StaticEditorFlags: 0 1228 | m_IsActive: 1 1229 | --- !u!224 &2085591116 1230 | RectTransform: 1231 | m_ObjectHideFlags: 0 1232 | m_PrefabParentObject: {fileID: 0} 1233 | m_PrefabInternal: {fileID: 0} 1234 | m_GameObject: {fileID: 2085591115} 1235 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 1236 | m_LocalPosition: {x: 0, y: 0, z: 0} 1237 | m_LocalScale: {x: 1, y: 1, z: 1} 1238 | m_Children: [] 1239 | m_Father: {fileID: 1100937962} 1240 | m_RootOrder: 0 1241 | m_AnchorMin: {x: 0, y: 0} 1242 | m_AnchorMax: {x: 1, y: 1} 1243 | m_AnchoredPosition: {x: 0, y: 0} 1244 | m_SizeDelta: {x: 0, y: 0} 1245 | m_Pivot: {x: 0.5, y: 0.5} 1246 | --- !u!114 &2085591117 1247 | MonoBehaviour: 1248 | m_ObjectHideFlags: 0 1249 | m_PrefabParentObject: {fileID: 0} 1250 | m_PrefabInternal: {fileID: 0} 1251 | m_GameObject: {fileID: 2085591115} 1252 | m_Enabled: 1 1253 | m_EditorHideFlags: 0 1254 | m_Script: {fileID: 708705254, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3} 1255 | m_Name: 1256 | m_EditorClassIdentifier: 1257 | m_Material: {fileID: 0} 1258 | m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} 1259 | m_RaycastTarget: 1 1260 | m_OnCullStateChanged: 1261 | m_PersistentCalls: 1262 | m_Calls: [] 1263 | m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, 1264 | Version=1.0.0.0, Culture=neutral, PublicKeyToken=null 1265 | m_FontData: 1266 | m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} 1267 | m_FontSize: 40 1268 | m_FontStyle: 1 1269 | m_BestFit: 1 1270 | m_MinSize: 10 1271 | m_MaxSize: 40 1272 | m_Alignment: 4 1273 | m_RichText: 1 1274 | m_HorizontalOverflow: 0 1275 | m_VerticalOverflow: 0 1276 | m_LineSpacing: 1 1277 | m_Text: Application.OpenURL() 1278 | --- !u!222 &2085591118 1279 | CanvasRenderer: 1280 | m_ObjectHideFlags: 0 1281 | m_PrefabParentObject: {fileID: 0} 1282 | m_PrefabInternal: {fileID: 0} 1283 | m_GameObject: {fileID: 2085591115} 1284 | --------------------------------------------------------------------------------