diff --git a/Assets/Plugins.meta b/Assets/Plugins.meta deleted file mode 100644 index 12b3592..0000000 --- a/Assets/Plugins.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 45eb5e5096e3c282a94fd0eb7928a6ad -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Plugins/SimpleFileBrowser.meta b/Assets/Plugins/SimpleFileBrowser.meta deleted file mode 100644 index 1cb5d55..0000000 --- a/Assets/Plugins/SimpleFileBrowser.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 6440a5f3157375d469774ee0793ec07b -folderAsset: yes -timeCreated: 1479413187 -licenseType: Store -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Plugins/SimpleFileBrowser/Android.meta b/Assets/Plugins/SimpleFileBrowser/Android.meta deleted file mode 100644 index 2e6c447..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Android.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: ff366e107d0770a41a2afe8ad87ef708 -folderAsset: yes -timeCreated: 1509396159 -licenseType: Store -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Plugins/SimpleFileBrowser/Android/FBCallbackHelper.cs b/Assets/Plugins/SimpleFileBrowser/Android/FBCallbackHelper.cs deleted file mode 100644 index 2ec654b..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Android/FBCallbackHelper.cs +++ /dev/null @@ -1,52 +0,0 @@ -#if UNITY_EDITOR || UNITY_ANDROID -using System; -using UnityEngine; - -namespace SimpleFileBrowser -{ - public class FBCallbackHelper : MonoBehaviour - { - private bool autoDestroyWithCallback; - private Action mainThreadAction = null; - - public static FBCallbackHelper Create( bool autoDestroyWithCallback ) - { - FBCallbackHelper result = new GameObject( "FBCallbackHelper" ).AddComponent(); - result.autoDestroyWithCallback = autoDestroyWithCallback; - DontDestroyOnLoad( result.gameObject ); - return result; - } - - public void CallOnMainThread( Action function ) - { - lock( this ) - { - mainThreadAction += function; - } - } - - private void Update() - { - if( mainThreadAction != null ) - { - try - { - Action temp; - lock( this ) - { - temp = mainThreadAction; - mainThreadAction = null; - } - - temp(); - } - finally - { - if( autoDestroyWithCallback ) - Destroy( gameObject ); - } - } - } - } -} -#endif \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/Android/FBCallbackHelper.cs.meta b/Assets/Plugins/SimpleFileBrowser/Android/FBCallbackHelper.cs.meta deleted file mode 100644 index 3257635..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Android/FBCallbackHelper.cs.meta +++ /dev/null @@ -1,19 +0,0 @@ -fileFormatVersion: 2 -guid: 997bfc59716c24c41ad03bcbd7f8ef0a -timeCreated: 1570918076 -licenseType: Store -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Android/FBCallbackHelper.cs - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Android/FBDirectoryReceiveCallbackAndroid.cs b/Assets/Plugins/SimpleFileBrowser/Android/FBDirectoryReceiveCallbackAndroid.cs deleted file mode 100644 index 55f85c7..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Android/FBDirectoryReceiveCallbackAndroid.cs +++ /dev/null @@ -1,24 +0,0 @@ -#if UNITY_EDITOR || UNITY_ANDROID -using UnityEngine; - -namespace SimpleFileBrowser -{ - public class FBDirectoryReceiveCallbackAndroid : AndroidJavaProxy - { - private readonly FileBrowser.AndroidSAFDirectoryPickCallback callback; - private readonly FBCallbackHelper callbackHelper; - - public FBDirectoryReceiveCallbackAndroid( FileBrowser.AndroidSAFDirectoryPickCallback callback ) : base( "com.yasirkula.unity.FileBrowserDirectoryReceiver" ) - { - this.callback = callback; - callbackHelper = FBCallbackHelper.Create( true ); - } - - [UnityEngine.Scripting.Preserve] - public void OnDirectoryPicked( string rawUri, string name ) - { - callbackHelper.CallOnMainThread( () => callback( rawUri, name ) ); - } - } -} -#endif \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/Android/FBDirectoryReceiveCallbackAndroid.cs.meta b/Assets/Plugins/SimpleFileBrowser/Android/FBDirectoryReceiveCallbackAndroid.cs.meta deleted file mode 100644 index b47993b..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Android/FBDirectoryReceiveCallbackAndroid.cs.meta +++ /dev/null @@ -1,19 +0,0 @@ -fileFormatVersion: 2 -guid: 8dec4dc5be16ca84e9c147627361671d -timeCreated: 1520199471 -licenseType: Store -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Android/FBDirectoryReceiveCallbackAndroid.cs - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Android/FBPermissionCallbackAndroid.cs b/Assets/Plugins/SimpleFileBrowser/Android/FBPermissionCallbackAndroid.cs deleted file mode 100644 index ad0b2c4..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Android/FBPermissionCallbackAndroid.cs +++ /dev/null @@ -1,24 +0,0 @@ -#if UNITY_EDITOR || UNITY_ANDROID -using UnityEngine; - -namespace SimpleFileBrowser -{ - public class FBPermissionCallbackAndroid : AndroidJavaProxy - { - private readonly FileBrowser.PermissionCallback callback; - private readonly FBCallbackHelper callbackHelper; - - public FBPermissionCallbackAndroid( FileBrowser.PermissionCallback callback ) : base( "com.yasirkula.unity.FileBrowserPermissionReceiver" ) - { - this.callback = callback; - callbackHelper = FBCallbackHelper.Create( true ); - } - - [UnityEngine.Scripting.Preserve] - public void OnPermissionResult( int result ) - { - callbackHelper.CallOnMainThread( () => callback( (FileBrowser.Permission) result ) ); - } - } -} -#endif \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/Android/FBPermissionCallbackAndroid.cs.meta b/Assets/Plugins/SimpleFileBrowser/Android/FBPermissionCallbackAndroid.cs.meta deleted file mode 100644 index 63ebb32..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Android/FBPermissionCallbackAndroid.cs.meta +++ /dev/null @@ -1,19 +0,0 @@ -fileFormatVersion: 2 -guid: 2cd91db0ba676ef47af67e3597037d1a -timeCreated: 1520199471 -licenseType: Store -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Android/FBPermissionCallbackAndroid.cs - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Android/SimpleFileBrowser.aar b/Assets/Plugins/SimpleFileBrowser/Android/SimpleFileBrowser.aar deleted file mode 100644 index 78e281f..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Android/SimpleFileBrowser.aar and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Android/SimpleFileBrowser.aar.meta b/Assets/Plugins/SimpleFileBrowser/Android/SimpleFileBrowser.aar.meta deleted file mode 100644 index ee748cd..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Android/SimpleFileBrowser.aar.meta +++ /dev/null @@ -1,40 +0,0 @@ -fileFormatVersion: 2 -guid: cae0a78f915b13748ba09fd56bafb4c8 -timeCreated: 1606638456 -licenseType: Store -PluginImporter: - serializedVersion: 2 - iconMap: {} - executionOrder: {} - isPreloaded: 0 - isOverridable: 0 - platformData: - data: - first: - Android: Android - second: - enabled: 1 - settings: {} - data: - first: - Any: - second: - enabled: 0 - settings: {} - data: - first: - Editor: Editor - second: - enabled: 0 - settings: - DefaultValueInitialized: true - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Android/SimpleFileBrowser.aar - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Prefabs.meta b/Assets/Plugins/SimpleFileBrowser/Prefabs.meta deleted file mode 100644 index cf7a533..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Prefabs.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 53eaeb5abaee5aa4ca7f07beacb73c2e -folderAsset: yes -timeCreated: 1479489583 -licenseType: Store -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Plugins/SimpleFileBrowser/Prefabs/SimpleFileBrowserItem.prefab b/Assets/Plugins/SimpleFileBrowser/Prefabs/SimpleFileBrowserItem.prefab deleted file mode 100644 index 45e2557..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Prefabs/SimpleFileBrowserItem.prefab +++ /dev/null @@ -1,401 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &1000010981689570 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000013702633820} - - component: {fileID: 222000010857273394} - - component: {fileID: 4089076303554880505} - m_Layer: 5 - m_Name: Name - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000013702633820 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010981689570} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000013952242090} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 19, y: 0} - m_SizeDelta: {x: -38, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000010857273394 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010981689570} - m_CullTransparentMesh: 1 ---- !u!114 &4089076303554880505 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010981689570} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Filename - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: 0 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 3 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 0 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1000011646011302 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000013952242090} - - component: {fileID: 222000013410998874} - - component: {fileID: 114000012602770182} - - component: {fileID: 114000012265032802} - m_Layer: 5 - m_Name: SimpleFileBrowserItem - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000013952242090 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011646011302} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000012393993334} - - {fileID: 224447975432582502} - - {fileID: 224000013702633820} - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 30} - m_Pivot: {x: 0, y: 1} ---- !u!222 &222000013410998874 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011646011302} - m_CullTransparentMesh: 1 ---- !u!114 &114000012602770182 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011646011302} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff773ea42aedd04c8bb96a1fe9a73b8, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114000012265032802 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011646011302} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: b5f1b2825c50f7b4d9be146ab2137bff, type: 3} - m_Name: - m_EditorClassIdentifier: - background: {fileID: 114000012602770182} - icon: {fileID: 114807149938652920} - multiSelectionToggle: {fileID: 114000013208375990} - nameText: {fileID: 4089076303554880505} ---- !u!1 &1000013967986654 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000012393993334} - - component: {fileID: 222000012809932278} - - component: {fileID: 114000013208375990} - m_Layer: 5 - m_Name: MultiSelectionToggle - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &224000012393993334 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000013967986654} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000013952242090} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 18.99997, y: 0} - m_SizeDelta: {x: 30, y: -6} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000012809932278 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000013967986654} - m_CullTransparentMesh: 1 ---- !u!114 &114000013208375990 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000013967986654} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: d6beaeac8de2af749a48581db778df3e, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &1268973638054374 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224447975432582502} - - component: {fileID: 222113778025760416} - - component: {fileID: 114807149938652920} - - component: {fileID: 114942441918357790} - m_Layer: 5 - m_Name: Icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224447975432582502 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1268973638054374} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000013952242090} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 19, y: 0} - m_SizeDelta: {x: 30, y: -6} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222113778025760416 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1268973638054374} - m_CullTransparentMesh: 1 ---- !u!114 &114807149938652920 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1268973638054374} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114942441918357790 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1268973638054374} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: cfabb0440166ab443bba8876756fdfa9, type: 3} - m_Name: - m_EditorClassIdentifier: - m_EffectColor: {r: 0, g: 0, b: 0, a: 0.1764706} - m_EffectDistance: {x: 0.75, y: -0.75} - m_UseGraphicAlpha: 1 diff --git a/Assets/Plugins/SimpleFileBrowser/Prefabs/SimpleFileBrowserItem.prefab.meta b/Assets/Plugins/SimpleFileBrowser/Prefabs/SimpleFileBrowserItem.prefab.meta deleted file mode 100644 index 15d3e6c..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Prefabs/SimpleFileBrowserItem.prefab.meta +++ /dev/null @@ -1,15 +0,0 @@ -fileFormatVersion: 2 -guid: c2db22c1e3cd2584fa0e9168745a4536 -timeCreated: 1479415743 -licenseType: Store -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Prefabs/SimpleFileBrowserItem.prefab - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Prefabs/SimpleFileBrowserQuickLink.prefab b/Assets/Plugins/SimpleFileBrowser/Prefabs/SimpleFileBrowserQuickLink.prefab deleted file mode 100644 index 0f27495..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Prefabs/SimpleFileBrowserQuickLink.prefab +++ /dev/null @@ -1,179 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1001 &423326606346492666 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 0} - m_Modifications: - - target: {fileID: 1000011646011302, guid: c2db22c1e3cd2584fa0e9168745a4536, type: 3} - propertyPath: m_Name - value: SimpleFileBrowserQuickLink - objectReference: {fileID: 0} - - target: {fileID: 224000013952242090, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - propertyPath: m_Pivot.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 224000013952242090, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - propertyPath: m_Pivot.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 224000013952242090, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - propertyPath: m_RootOrder - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 224000013952242090, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - propertyPath: m_AnchorMax.x - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 224000013952242090, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - propertyPath: m_AnchorMax.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 224000013952242090, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - propertyPath: m_AnchorMin.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 224000013952242090, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - propertyPath: m_AnchorMin.y - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 224000013952242090, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - propertyPath: m_SizeDelta.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 224000013952242090, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - propertyPath: m_SizeDelta.y - value: 30 - objectReference: {fileID: 0} - - target: {fileID: 224000013952242090, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 224000013952242090, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 224000013952242090, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 224000013952242090, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 224000013952242090, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 224000013952242090, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 224000013952242090, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 224000013952242090, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - propertyPath: m_AnchoredPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 224000013952242090, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - propertyPath: m_AnchoredPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 224000013952242090, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 224000013952242090, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 224000013952242090, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - m_RemovedComponents: - - {fileID: 114000012265032802, guid: c2db22c1e3cd2584fa0e9168745a4536, type: 3} - m_SourcePrefab: {fileID: 100100000, guid: c2db22c1e3cd2584fa0e9168745a4536, type: 3} ---- !u!114 &308519873171270658 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 114807149938652920, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - m_PrefabInstance: {fileID: 423326606346492666} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!114 &309331268969241084 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 114000012602770182, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - m_PrefabInstance: {fileID: 423326606346492666} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 422345297158446428} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1 &422345297158446428 stripped -GameObject: - m_CorrespondingSourceObject: {fileID: 1000011646011302, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - m_PrefabInstance: {fileID: 423326606346492666} - m_PrefabAsset: {fileID: 0} ---- !u!114 &1505320505842670623 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 422345297158446428} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 1f277f5418eabf94cad94208055878af, type: 3} - m_Name: - m_EditorClassIdentifier: - background: {fileID: 309331268969241084} - icon: {fileID: 308519873171270658} - multiSelectionToggle: {fileID: 0} - nameText: {fileID: 4422715658905204995} ---- !u!114 &4422715658905204995 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 4089076303554880505, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - m_PrefabInstance: {fileID: 423326606346492666} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: diff --git a/Assets/Plugins/SimpleFileBrowser/Prefabs/SimpleFileBrowserQuickLink.prefab.meta b/Assets/Plugins/SimpleFileBrowser/Prefabs/SimpleFileBrowserQuickLink.prefab.meta deleted file mode 100644 index aa385e8..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Prefabs/SimpleFileBrowserQuickLink.prefab.meta +++ /dev/null @@ -1,14 +0,0 @@ -fileFormatVersion: 2 -guid: c4e8ee7cea600bf4fb4498b4a47ae8f5 -PrefabImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Prefabs/SimpleFileBrowserQuickLink.prefab - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/README.txt b/Assets/Plugins/SimpleFileBrowser/README.txt deleted file mode 100644 index cc08017..0000000 --- a/Assets/Plugins/SimpleFileBrowser/README.txt +++ /dev/null @@ -1,6 +0,0 @@ -= Simple File Browser (v1.7.5) = - -Documentation: https://github.com/yasirkula/UnitySimpleFileBrowser -FAQ: https://github.com/yasirkula/UnitySimpleFileBrowser#faq -Example code: https://github.com/yasirkula/UnitySimpleFileBrowser#example-code -E-mail: yasirkula@gmail.com \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/README.txt.meta b/Assets/Plugins/SimpleFileBrowser/README.txt.meta deleted file mode 100644 index 99f601d..0000000 --- a/Assets/Plugins/SimpleFileBrowser/README.txt.meta +++ /dev/null @@ -1,15 +0,0 @@ -fileFormatVersion: 2 -guid: 02a0a0f34932297429c157aca8b9a977 -timeCreated: 1563308858 -licenseType: Store -TextScriptImporter: - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/README.txt - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Resources.meta b/Assets/Plugins/SimpleFileBrowser/Resources.meta deleted file mode 100644 index 377c0ad..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Resources.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: f4cd9780a618bad4b821ad3b1a68bacd -folderAsset: yes -timeCreated: 1479561120 -licenseType: Store -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Plugins/SimpleFileBrowser/Resources/SimpleFileBrowserCanvas.prefab b/Assets/Plugins/SimpleFileBrowser/Resources/SimpleFileBrowserCanvas.prefab deleted file mode 100644 index e102970..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Resources/SimpleFileBrowserCanvas.prefab +++ /dev/null @@ -1,12589 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &1000010010525506 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000012041644098} - - component: {fileID: 222671291018935018} - - component: {fileID: 114096179475727156} - - component: {fileID: 114575417859048552} - m_Layer: 5 - m_Name: MidView - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000012041644098 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010010525506} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000011581190364} - m_Father: {fileID: 224000012589068232} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 1} ---- !u!222 &222671291018935018 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010010525506} - m_CullTransparentMesh: 1 ---- !u!114 &114096179475727156 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010010525506} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: b9c5fedc997f125448c4d8be2fc43bcd, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114575417859048552 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010010525506} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 0 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: -1 - m_FlexibleWidth: -1 - m_FlexibleHeight: 1 - m_LayoutPriority: 1 ---- !u!1 &1000010113651986 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000011406587750} - - component: {fileID: 114000013198154200} - - component: {fileID: 222000014052645996} - - component: {fileID: 114000013463924600} - m_Layer: 5 - m_Name: QuickLinks - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000011406587750 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010113651986} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000012294561952} - - {fileID: 224000010556846038} - m_Father: {fileID: 224000011581190364} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 145, y: 0} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &114000013198154200 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010113651986} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Content: {fileID: 224000010383356806} - m_Horizontal: 0 - m_Vertical: 1 - m_MovementType: 2 - m_Elasticity: 0.1 - m_Inertia: 1 - m_DecelerationRate: 0.00001 - m_ScrollSensitivity: 35 - m_Viewport: {fileID: 224000012294561952} - m_HorizontalScrollbar: {fileID: 0} - m_VerticalScrollbar: {fileID: 114000013668631192} - m_HorizontalScrollbarVisibility: 2 - m_VerticalScrollbarVisibility: 2 - m_HorizontalScrollbarSpacing: -3 - m_VerticalScrollbarSpacing: 0 - m_OnValueChanged: - m_PersistentCalls: - m_Calls: [] ---- !u!222 &222000014052645996 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010113651986} - m_CullTransparentMesh: 1 ---- !u!114 &114000013463924600 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010113651986} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 0} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: b9c5fedc997f125448c4d8be2fc43bcd, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &1000010188797014 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000012296159396} - - component: {fileID: 222000013689350110} - - component: {fileID: 114000010998986284} - m_Layer: 5 - m_Name: Background - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000012296159396 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010188797014} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000011643570440} - m_Father: {fileID: 224000012317678330} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0.5} - m_AnchorMax: {x: 0, y: 0.5} - m_AnchoredPosition: {x: 10, y: 0} - m_SizeDelta: {x: 20, y: 20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000013689350110 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010188797014} - m_CullTransparentMesh: 1 ---- !u!114 &114000010998986284 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010188797014} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: f668f62689b67d242ad33ff665594344, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &1000010239749110 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000011643570440} - - component: {fileID: 222000010628702794} - - component: {fileID: 114000010132642896} - m_Layer: 5 - m_Name: Checkmark - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000011643570440 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010239749110} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000012296159396} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 20, y: 20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000010628702794 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010239749110} - m_CullTransparentMesh: 1 ---- !u!114 &114000010132642896 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010239749110} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 4924b77159e651e4aaa9a22286725d94, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &1000010375479560 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000013343736860} - - component: {fileID: 222000011372262478} - - component: {fileID: 693673115019416458} - m_Layer: 5 - m_Name: Item Label - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000013343736860 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010375479560} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000013486352002} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 5, y: -0.5} - m_SizeDelta: {x: -30, y: -1} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000011372262478 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010375479560} - m_CullTransparentMesh: 1 ---- !u!114 &693673115019416458 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010375479560} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Option A - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: 0 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 0 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 0 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1000010476647798 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000014130156650} - - component: {fileID: 222000011610908622} - - component: {fileID: 375856422251397489} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000014130156650 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010476647798} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000013618918798} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000011610908622 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010476647798} - m_CullTransparentMesh: 1 ---- !u!114 &375856422251397489 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010476647798} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Cancel - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 2 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 3 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1000010571070120 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000011462177674} - m_Layer: 5 - m_Name: Sliding Area - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000011462177674 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010571070120} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000013440901968} - m_Father: {fileID: 224000013917225860} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: -20, y: -20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1000010629955072 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000014068651142} - - component: {fileID: 114000011744356224} - - component: {fileID: 222000012900979236} - - component: {fileID: 114000013452696640} - - component: {fileID: 114985255881820402} - m_Layer: 5 - m_Name: Files - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000014068651142 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010629955072} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000010015050490} - - {fileID: 224000013917225860} - m_Father: {fileID: 224000011581190364} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 145, y: 0} - m_SizeDelta: {x: -145, y: 0} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &114000011744356224 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010629955072} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Content: {fileID: 224000012931849942} - m_Horizontal: 0 - m_Vertical: 1 - m_MovementType: 2 - m_Elasticity: 0.1 - m_Inertia: 1 - m_DecelerationRate: 0.00001 - m_ScrollSensitivity: 35 - m_Viewport: {fileID: 224000010015050490} - m_HorizontalScrollbar: {fileID: 0} - m_VerticalScrollbar: {fileID: 114000010855942864} - m_HorizontalScrollbarVisibility: 2 - m_VerticalScrollbarVisibility: 2 - m_HorizontalScrollbarSpacing: 0 - m_VerticalScrollbarSpacing: 0 - m_OnValueChanged: - m_PersistentCalls: - m_Calls: [] ---- !u!222 &222000012900979236 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010629955072} - m_CullTransparentMesh: 1 ---- !u!114 &114000013452696640 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010629955072} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 0} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: b9c5fedc997f125448c4d8be2fc43bcd, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114985255881820402 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010629955072} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 87ad67b4806678e40a492e337338760b, type: 3} - m_Name: - m_EditorClassIdentifier: - fileBrowser: {fileID: 114000013689746302} - viewportTransform: {fileID: 224000010015050490} - contentTransform: {fileID: 224000012931849942} ---- !u!1 &1000010633767952 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000011374570446} - - component: {fileID: 222000013652262360} - - component: {fileID: 6620449197150660064} - m_Layer: 5 - m_Name: TitlebarText - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000011374570446 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010633767952} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000014125199124} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 5, y: 0} - m_SizeDelta: {x: -10, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000013652262360 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010633767952} - m_CullTransparentMesh: 1 ---- !u!114 &6620449197150660064 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010633767952} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 1, g: 1, b: 1, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 3 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1000010658878508 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000012589068232} - - component: {fileID: 222000011353148296} - - component: {fileID: 114000010162871592} - - component: {fileID: 114000011184475620} - - component: {fileID: 114112745684402668} - m_Layer: 5 - m_Name: SimpleFileBrowserWindow - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000012589068232 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010658878508} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000014125199124} - - {fileID: 224367545595026078} - - {fileID: 224000012236837694} - - {fileID: 224000012041644098} - - {fileID: 224000012168552762} - - {fileID: 224000012381179108} - - {fileID: 224000010142423696} - m_Father: {fileID: 224000013577827562} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 750, y: 500} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000011353148296 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010658878508} - m_CullTransparentMesh: 1 ---- !u!114 &114000010162871592 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010658878508} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.9338235, g: 0.9338235, b: 0.9338235, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 90bee1ddeeef38a4f860f96b5510c136, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114000011184475620 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010658878508} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 46d41d79fe7c3d44ca846b4f3d81a476, type: 3} - m_Name: - m_EditorClassIdentifier: - window: {fileID: 224000012589068232} - listView: {fileID: 114985255881820402} ---- !u!114 &114112745684402668 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010658878508} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: - m_Left: 1 - m_Right: 1 - m_Top: 0 - m_Bottom: 16 - m_ChildAlignment: 0 - m_Spacing: 8 - m_ChildForceExpandWidth: 1 - m_ChildForceExpandHeight: 0 - m_ChildControlWidth: 1 - m_ChildControlHeight: 1 - m_ChildScaleWidth: 0 - m_ChildScaleHeight: 0 - m_ReverseArrangement: 0 ---- !u!1 &1000010673215448 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000010672092756} - - component: {fileID: 222000011098022640} - - component: {fileID: 5043363804898826341} - - component: {fileID: 5711693858763371841} - m_Layer: 5 - m_Name: Placeholder - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000010672092756 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010673215448} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000013875672764} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -0.5} - m_SizeDelta: {x: -14, y: -1} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000011098022640 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010673215448} - m_CullTransparentMesh: 1 ---- !u!114 &5043363804898826341 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010673215448} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Filename - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 2150773298 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 0.5} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 2 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 3 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 1 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!114 &5711693858763371841 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010673215448} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 1 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: -1 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1000010810923626 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000012317678330} - - component: {fileID: 114000011511084512} - m_Layer: 5 - m_Name: ShowHiddenFilesToggle - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000012317678330 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010810923626} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000012296159396} - - {fileID: 224000013306948866} - m_Father: {fileID: 224000012381179108} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 10, y: 0} - m_SizeDelta: {x: -240, y: 0} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &114000011511084512 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010810923626} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114000010998986284} - toggleTransition: 1 - graphic: {fileID: 114000010132642896} - m_Group: {fileID: 0} - onValueChanged: - m_PersistentCalls: - m_Calls: [] - m_IsOn: 0 ---- !u!1 &1000010852360162 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000010556846038} - - component: {fileID: 222000013713099062} - - component: {fileID: 114000011549431246} - - component: {fileID: 114000013668631192} - m_Layer: 5 - m_Name: Scrollbar Vertical - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000010556846038 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010852360162} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000013973408554} - m_Father: {fileID: 224000011406587750} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 20, y: 0} - m_Pivot: {x: 1, y: 1} ---- !u!222 &222000013713099062 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010852360162} - m_CullTransparentMesh: 1 ---- !u!114 &114000011549431246 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010852360162} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.9191176, g: 0.9191176, b: 0.9191176, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff773ea42aedd04c8bb96a1fe9a73b8, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114000013668631192 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000010852360162} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2a4db7a114972834c8e4117be1d82ba3, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114000011769758306} - m_HandleRect: {fileID: 224000011063755118} - m_Direction: 2 - m_Value: 0 - m_Size: 1 - m_NumberOfSteps: 0 - m_OnValueChanged: - m_PersistentCalls: - m_Calls: [] ---- !u!1 &1000011054273442 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000012142118144} - - component: {fileID: 222000013929998272} - - component: {fileID: 114000013387536912} - m_Layer: 5 - m_Name: Arrow - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000012142118144 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011054273442} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000011367034048} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 0.5} - m_AnchorMax: {x: 1, y: 0.5} - m_AnchoredPosition: {x: -15, y: 0} - m_SizeDelta: {x: 20, y: 20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000013929998272 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011054273442} - m_CullTransparentMesh: 1 ---- !u!114 &114000013387536912 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011054273442} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: f73f38102c749484bbd884d4d8d87440, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &1000011058280352 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000014075494044} - m_Layer: 5 - m_Name: Content - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000014075494044 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011058280352} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000013486352002} - m_Father: {fileID: 224000010499347580} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: -2, y: 32} - m_Pivot: {x: 0.5, y: 1} ---- !u!1 &1000011137665842 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000014041540182} - - component: {fileID: 222000010703752694} - - component: {fileID: 114000013476289924} - - component: {fileID: 114000013838333444} - m_Layer: 5 - m_Name: UpButton - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000014041540182 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011137665842} - m_LocalRotation: {x: 0, y: 0, z: 0.7071068, w: 0.7071068} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224367545595026078} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 90} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 109.499985, y: 0} - m_SizeDelta: {x: 35, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000010703752694 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011137665842} - m_CullTransparentMesh: 1 ---- !u!114 &114000013476289924 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011137665842} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 130f660889a70c947bff4c8ba8a2c73e, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114000013838333444 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011137665842} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114000013476289924} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!1 &1000011194676206 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000014138464828} - - component: {fileID: 222000014149132480} - - component: {fileID: 114000012182958498} - m_Layer: 5 - m_Name: Item Checkmark - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000014138464828 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011194676206} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000013486352002} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0.5} - m_AnchorMax: {x: 0, y: 0.5} - m_AnchoredPosition: {x: 10, y: 0} - m_SizeDelta: {x: 20, y: 20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000014149132480 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011194676206} - m_CullTransparentMesh: 1 ---- !u!114 &114000012182958498 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011194676206} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 4924b77159e651e4aaa9a22286725d94, type: 3} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &1000011227951356 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000013618918798} - - component: {fileID: 222000014067881966} - - component: {fileID: 114000011782691694} - - component: {fileID: 114000013207029700} - m_Layer: 5 - m_Name: CancelButton - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000013618918798 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011227951356} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000014130156650} - m_Father: {fileID: 224000012381179108} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -10, y: 0} - m_SizeDelta: {x: 100, y: 0} - m_Pivot: {x: 1, y: 0.5} ---- !u!222 &222000014067881966 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011227951356} - m_CullTransparentMesh: 1 ---- !u!114 &114000011782691694 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011227951356} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 2c46fa192de46b04e8281f225bee0230, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114000013207029700 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011227951356} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114000011782691694} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!1 &1000011341460266 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000010015050490} - - component: {fileID: 114000013266928238} - m_Layer: 5 - m_Name: Viewport - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000010015050490 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011341460266} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000012931849942} - m_Father: {fileID: 224000014068651142} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0, y: 1} ---- !u!114 &114000013266928238 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011341460266} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 3312d7739989d2b4e91e6319e9a96d76, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: {x: 0, y: 0, z: 0, w: 0} - m_Softness: {x: 0, y: 0} ---- !u!1 &1000011348573804 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000012745327036} - - component: {fileID: 222000010902474546} - - component: {fileID: 2534610861018594485} - - component: {fileID: 1570207311333308397} - m_Layer: 5 - m_Name: Placeholder - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000012745327036 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011348573804} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 4955060142277728908} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0.000030517578} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000010902474546 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011348573804} - m_CullTransparentMesh: 1 ---- !u!114 &2534610861018594485 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011348573804} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Search... - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 2150773298 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 0.5} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 2 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 3 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 1 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!114 &1570207311333308397 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011348573804} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 1 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: -1 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1000011474259412 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000011665288554} - - component: {fileID: 222000012128669634} - - component: {fileID: 114000012289665222} - m_Layer: 5 - m_Name: Separator - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000011665288554 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011474259412} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000011581190364} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 145, y: 0} - m_SizeDelta: {x: 1, y: 0} - m_Pivot: {x: 0, y: 0.5} ---- !u!222 &222000012128669634 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011474259412} - m_CullTransparentMesh: 1 ---- !u!114 &114000012289665222 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011474259412} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.6397059, g: 0.6397059, b: 0.6397059, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff773ea42aedd04c8bb96a1fe9a73b8, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &1000011474835320 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000012381179108} - - component: {fileID: 114879230047266854} - m_Layer: 5 - m_Name: BottomViewBottomRow - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000012381179108 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011474835320} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000012317678330} - - {fileID: 224000011218060110} - - {fileID: 224000013618918798} - m_Father: {fileID: 224000012589068232} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &114879230047266854 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011474835320} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 0 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: 30 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1000011549626880 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000012236837694} - - component: {fileID: 114170595708376390} - m_Layer: 5 - m_Name: TopViewNarrowScreen - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &224000012236837694 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011549626880} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224127867913948392} - m_Father: {fileID: 224000012589068232} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 375, y: -76} - m_SizeDelta: {x: 748, y: 30} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &114170595708376390 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011549626880} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 0 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: 30 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1000011661046550 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000011163845922} - - component: {fileID: 222000010475481380} - - component: {fileID: 6165114128581498310} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000011163845922 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011661046550} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224358462403105482} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000010475481380 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011661046550} - m_CullTransparentMesh: 1 ---- !u!114 &6165114128581498310 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011661046550} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: "\u200B" - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 3289650 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 0} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 1 - checkPaddingRequired: 0 - m_isRichText: 0 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1000011792530648 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000012168552762} - - component: {fileID: 114757800866918446} - m_Layer: 5 - m_Name: BottomViewTopRow - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000012168552762 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011792530648} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000013875672764} - - {fileID: 224000011367034048} - m_Father: {fileID: 224000012589068232} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &114757800866918446 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011792530648} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 0 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: 30 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1000011796028112 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000011063755118} - - component: {fileID: 222000010831424782} - - component: {fileID: 114000011769758306} - m_Layer: 5 - m_Name: Handle - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000011063755118 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011796028112} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000013973408554} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 20, y: 20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000010831424782 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011796028112} - m_CullTransparentMesh: 1 ---- !u!114 &114000011769758306 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011796028112} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.7647059, g: 0.7647059, b: 0.7647059, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff773ea42aedd04c8bb96a1fe9a73b8, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &1000011816699128 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000014003395874} - - component: {fileID: 222000013590941762} - - component: {fileID: 114000010854019824} - - component: {fileID: 4004366936034290167} - m_Layer: 5 - m_Name: SearchInputField - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000014003395874 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011816699128} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 4955060142277728908} - m_Father: {fileID: 224367545595026078} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -35, y: 0} - m_SizeDelta: {x: 110, y: 0} - m_Pivot: {x: 1, y: 0.5} ---- !u!222 &222000013590941762 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011816699128} - m_CullTransparentMesh: 1 ---- !u!114 &114000010854019824 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011816699128} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: f668f62689b67d242ad33ff665594344, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &4004366936034290167 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011816699128} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114000010854019824} - m_TextViewport: {fileID: 4955060142277728908} - m_TextComponent: {fileID: 3543615696575121591} - m_Placeholder: {fileID: 2534610861018594485} - m_VerticalScrollbar: {fileID: 0} - m_VerticalScrollbarEventHandler: {fileID: 0} - m_LayoutGroup: {fileID: 0} - m_ScrollSensitivity: 1 - m_ContentType: 0 - m_InputType: 0 - m_AsteriskChar: 42 - m_KeyboardType: 0 - m_LineType: 0 - m_HideMobileInput: 1 - m_HideSoftKeyboard: 0 - m_CharacterValidation: 0 - m_RegexValue: - m_GlobalPointSize: 14 - m_CharacterLimit: 0 - m_OnEndEdit: - m_PersistentCalls: - m_Calls: [] - m_OnSubmit: - m_PersistentCalls: - m_Calls: [] - m_OnSelect: - m_PersistentCalls: - m_Calls: [] - m_OnDeselect: - m_PersistentCalls: - m_Calls: [] - m_OnTextSelection: - m_PersistentCalls: - m_Calls: [] - m_OnEndTextSelection: - m_PersistentCalls: - m_Calls: [] - m_OnValueChanged: - m_PersistentCalls: - m_Calls: [] - m_OnTouchScreenKeyboardStatusChanged: - m_PersistentCalls: - m_Calls: [] - m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_CustomCaretColor: 1 - m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} - m_Text: - m_CaretBlinkRate: 0.85 - m_CaretWidth: 1 - m_ReadOnly: 0 - m_RichText: 0 - m_GlobalFontAsset: {fileID: 0} - m_OnFocusSelectAll: 1 - m_ResetOnDeActivation: 1 - m_RestoreOriginalTextOnEscape: 1 - m_isRichTextEditingAllowed: 0 - m_LineLimit: 0 - m_InputValidator: {fileID: 0} ---- !u!1 &1000011817404238 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000013577827562} - - component: {fileID: 223000012645506472} - - component: {fileID: 114000011218353566} - - component: {fileID: 114000010865040046} - - component: {fileID: 114000013689746302} - - component: {fileID: 114889154042981792} - m_Layer: 5 - m_Name: SimpleFileBrowserCanvas - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000013577827562 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011817404238} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000012589068232} - - {fileID: 224335344313781930} - - {fileID: 224266136694922796} - - {fileID: 224387572643228028} - - {fileID: 4904278185319220} - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0, y: 0} ---- !u!223 &223000012645506472 -Canvas: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011817404238} - m_Enabled: 1 - serializedVersion: 3 - m_RenderMode: 0 - m_Camera: {fileID: 0} - m_PlaneDistance: 100 - m_PixelPerfect: 0 - m_ReceivesEvents: 1 - m_OverrideSorting: 0 - m_OverridePixelPerfect: 0 - m_SortingBucketNormalizedSize: 0 - m_VertexColorAlwaysGammaSpace: 0 - m_AdditionalShaderChannelsFlag: 25 - m_SortingLayerID: 0 - m_SortingOrder: 2016 - m_TargetDisplay: 0 ---- !u!114 &114000011218353566 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011817404238} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} - m_Name: - m_EditorClassIdentifier: - m_UiScaleMode: 1 - m_ReferencePixelsPerUnit: 100 - m_ScaleFactor: 1 - m_ReferenceResolution: {x: 800, y: 600} - m_ScreenMatchMode: 0 - m_MatchWidthOrHeight: 1 - m_PhysicalUnit: 3 - m_FallbackScreenDPI: 96 - m_DefaultSpriteDPI: 96 - m_DynamicPixelsPerUnit: 1 - m_PresetInfoIsWorld: 0 ---- !u!114 &114000010865040046 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011817404238} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreReversedGraphics: 1 - m_BlockingObjects: 0 - m_BlockingMask: - serializedVersion: 2 - m_Bits: 4294967295 ---- !u!114 &114000013689746302 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011817404238} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f51dc09bf9e35804ba0f5e76c527025e, type: 3} - m_Name: - m_EditorClassIdentifier: - m_skin: {fileID: 11400000, guid: 758becaa4751c514ab3abd821b4078bb, type: 2} - minWidth: 380 - minHeight: 300 - narrowScreenWidth: 380 - quickLinksMaxWidthPercentage: 0.4 - sortFilesByName: 1 - excludedExtensions: - - .lnk - - .tmp - - .url - quickLinks: - - target: 5 - name: Documents - icon: {fileID: 0} - - target: 0 - name: Desktop - icon: {fileID: 0} - generateQuickLinksForDrives: 1 - showResizeCursor: 1 - window: {fileID: 114000011184475620} - windowResponsiveRows: - - {fileID: 114296044521861824} - - {fileID: 114728186227423848} - - {fileID: 114170595708376390} - - {fileID: 114757800866918446} - - {fileID: 114879230047266854} - topViewNarrowScreen: {fileID: 224000012236837694} - middleView: {fileID: 114096179475727156} - middleViewQuickLinks: {fileID: 224000011406587750} - middleViewFiles: {fileID: 224000014068651142} - middleViewSeparator: {fileID: 114000012289665222} - itemPrefab: {fileID: 114000012265032802, guid: c2db22c1e3cd2584fa0e9168745a4536, - type: 3} - quickLinkPrefab: {fileID: 1505320505842670623, guid: c4e8ee7cea600bf4fb4498b4a47ae8f5, - type: 3} - titleText: {fileID: 6620449197150660064} - titleBackground: {fileID: 114161038201393556} - backButton: {fileID: 114000010360865314} - forwardButton: {fileID: 114000012076811388} - upButton: {fileID: 114000013838333444} - moreOptionsButton: {fileID: 114144994822079520} - pathInputField: {fileID: 6009963269941489084} - pathInputFieldSlotTop: {fileID: 224811477075121130} - pathInputFieldSlotBottom: {fileID: 224127867913948392} - searchInputField: {fileID: 4004366936034290167} - quickLinksContainer: {fileID: 224000010383356806} - quickLinksScrollRect: {fileID: 114000013198154200} - filesContainer: {fileID: 224000012931849942} - filesScrollRect: {fileID: 114000011744356224} - listView: {fileID: 114985255881820402} - filenameInputField: {fileID: 3653469104176979875} - filenameImage: {fileID: 114000011987843938} - filtersDropdown: {fileID: 477884561228105166} - showHiddenFilesToggle: {fileID: 114000011511084512} - submitButton: {fileID: 114000014005904746} - submitButtonText: {fileID: 6000981947113629800} - cancelButton: {fileID: 114000013207029700} - allButtons: - - {fileID: 114000014005904746} - - {fileID: 114000013207029700} - moreOptionsContextMenuPosition: {fileID: 224838098161518584} - renameItem: {fileID: 114205106981145908} - contextMenu: {fileID: 114581495326313396} - fileOperationConfirmationPanel: {fileID: 114966523907925700} - accessRestrictedPanel: {fileID: 114173655991101396} - resizeCursorHandler: {fileID: 114458032168439820} ---- !u!114 &114889154042981792 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011817404238} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 0868341868a4a4641b4d272d2fc5f538, type: 3} - m_Name: - m_EditorClassIdentifier: - embeddedEventSystem: {fileID: 1639969918461738} ---- !u!1 &1000011827953324 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000010499347580} - - component: {fileID: 114000011152927276} - m_Layer: 5 - m_Name: Viewport - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000010499347580 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011827953324} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000014075494044} - m_Father: {fileID: 224000011220798992} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: -17, y: 0} - m_Pivot: {x: 0, y: 1} ---- !u!114 &114000011152927276 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011827953324} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 3312d7739989d2b4e91e6319e9a96d76, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: {x: 0, y: 0, z: 0, w: 0} - m_Softness: {x: 0, y: 0} ---- !u!1 &1000011911796228 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000012294561952} - - component: {fileID: 114000011243553722} - m_Layer: 5 - m_Name: Viewport - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000012294561952 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011911796228} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000010383356806} - m_Father: {fileID: 224000011406587750} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0, y: 1} ---- !u!114 &114000011243553722 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011911796228} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 3312d7739989d2b4e91e6319e9a96d76, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: {x: 0, y: 0, z: 0, w: 0} - m_Softness: {x: 0, y: 0} ---- !u!1 &1000011939367974 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000011367034048} - - component: {fileID: 222000012971412988} - - component: {fileID: 114000012532027292} - - component: {fileID: 477884561228105166} - m_Layer: 5 - m_Name: FilterDropdown - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000011367034048 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011939367974} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000011386471866} - - {fileID: 224000012142118144} - - {fileID: 224000011220798992} - m_Father: {fileID: 224000012168552762} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -10, y: 0} - m_SizeDelta: {x: 110, y: 0} - m_Pivot: {x: 1, y: 0.5} ---- !u!222 &222000012971412988 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011939367974} - m_CullTransparentMesh: 1 ---- !u!114 &114000012532027292 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011939367974} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 2c46fa192de46b04e8281f225bee0230, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &477884561228105166 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011939367974} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 7b743370ac3e4ec2a1668f5455a8ef8a, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114000012532027292} - m_Template: {fileID: 224000011220798992} - m_CaptionText: {fileID: 6926204210920986437} - m_CaptionImage: {fileID: 0} - m_Placeholder: {fileID: 0} - m_ItemText: {fileID: 693673115019416458} - m_ItemImage: {fileID: 0} - m_Value: 0 - m_Options: - m_Options: - - m_Text: All Files (.*) - m_Image: {fileID: 0} - m_OnValueChanged: - m_PersistentCalls: - m_Calls: [] - m_AlphaFadeSpeed: 0.15 ---- !u!1 &1000011958843056 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000014125199124} - - component: {fileID: 114000012524170498} - - component: {fileID: 114296044521861824} - m_Layer: 5 - m_Name: Titlebar - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000014125199124 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011958843056} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224650102803764702} - - {fileID: 224000011374570446} - m_Father: {fileID: 224000012589068232} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &114000012524170498 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011958843056} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: d0b148fe25e99eb48b9724523833bab1, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Delegates: - - eventID: 13 - callback: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 114000011184475620} - m_TargetAssemblyTypeName: - m_MethodName: OnDragStarted - m_Mode: 0 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 - - eventID: 5 - callback: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 114000011184475620} - m_TargetAssemblyTypeName: - m_MethodName: OnDrag - m_Mode: 0 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 - - eventID: 14 - callback: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 114000011184475620} - m_TargetAssemblyTypeName: - m_MethodName: OnEndDrag - m_Mode: 0 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 ---- !u!114 &114296044521861824 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011958843056} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 0 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: 30 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1000011961382914 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000011331339624} - - component: {fileID: 222000010698304110} - - component: {fileID: 4663058472685064337} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000011331339624 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011961382914} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 7602105929162123153} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000010698304110 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011961382914} - m_CullTransparentMesh: 1 ---- !u!114 &4663058472685064337 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011961382914} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: "\u200B" - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 1 - checkPaddingRequired: 0 - m_isRichText: 0 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1000011968004860 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000011386471866} - - component: {fileID: 222000011100394514} - - component: {fileID: 6926204210920986437} - m_Layer: 5 - m_Name: Label - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000011386471866 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011968004860} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000011367034048} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -9, y: -0.5} - m_SizeDelta: {x: -32, y: -1} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000011100394514 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011968004860} - m_CullTransparentMesh: 1 ---- !u!114 &6926204210920986437 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000011968004860} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: All Files (.*) - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 3 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1000012001667450 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000010179883522} - - component: {fileID: 222000010581818120} - - component: {fileID: 114000013270539482} - - component: {fileID: 114000012076811388} - m_Layer: 5 - m_Name: ForwardButton - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000010179883522 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012001667450} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224367545595026078} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 67.5, y: 0} - m_SizeDelta: {x: 35, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000010581818120 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012001667450} - m_CullTransparentMesh: 1 ---- !u!114 &114000013270539482 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012001667450} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 130f660889a70c947bff4c8ba8a2c73e, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114000012076811388 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012001667450} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114000013270539482} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!1 &1000012025912812 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000010566807834} - - component: {fileID: 222000010078375718} - - component: {fileID: 114000013375539332} - m_Layer: 5 - m_Name: Item Background - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000010566807834 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012025912812} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000013486352002} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000010078375718 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012025912812} - m_CullTransparentMesh: 1 ---- !u!114 &114000013375539332 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012025912812} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff773ea42aedd04c8bb96a1fe9a73b8, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &1000012300833210 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000010142423696} - - component: {fileID: 222000014084106484} - - component: {fileID: 114000014287647564} - - component: {fileID: 114000011715092176} - - component: {fileID: 114458032168439820} - - component: {fileID: 114007008339808590} - m_Layer: 5 - m_Name: WindowDragGizmo - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000010142423696 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012300833210} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000012589068232} - m_RootOrder: 6 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 0} - m_AnchorMax: {x: 1, y: 0} - m_AnchoredPosition: {x: -1, y: 1} - m_SizeDelta: {x: 15, y: 15} - m_Pivot: {x: 1, y: 0} ---- !u!222 &222000014084106484 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012300833210} - m_CullTransparentMesh: 1 ---- !u!114 &114000014287647564 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012300833210} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.5294118, g: 0.5294118, b: 0.5294118, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 285f1e681b119ce48ae469448241360b, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114000011715092176 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012300833210} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: d0b148fe25e99eb48b9724523833bab1, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Delegates: - - eventID: 5 - callback: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 114000011184475620} - m_TargetAssemblyTypeName: - m_MethodName: OnResize - m_Mode: 0 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 - - eventID: 13 - callback: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 114000011184475620} - m_TargetAssemblyTypeName: - m_MethodName: OnResizeStarted - m_Mode: 0 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 - - eventID: 14 - callback: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 114000011184475620} - m_TargetAssemblyTypeName: - m_MethodName: OnEndResize - m_Mode: 0 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 ---- !u!114 &114458032168439820 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012300833210} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 759524cf7ef37f244bb00cd9724f0349, type: 3} - m_Name: - m_EditorClassIdentifier: - resizeCursor: {fileID: 2800000, guid: 5edcf29b853ebee47bf2c39ef6b99934, type: 3} ---- !u!114 &114007008339808590 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012300833210} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 1 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: -1 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1000012315450066 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000014061230590} - - component: {fileID: 222000010797736174} - - component: {fileID: 6000981947113629800} - m_Layer: 5 - m_Name: SubmitButtonText - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000014061230590 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012315450066} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000011218060110} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000010797736174 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012315450066} - m_CullTransparentMesh: 1 ---- !u!114 &6000981947113629800 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012315450066} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: OK - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 2 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 3 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1000012351584372 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000013440901968} - - component: {fileID: 222000013957468740} - - component: {fileID: 114000010382772448} - m_Layer: 5 - m_Name: Handle - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000013440901968 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012351584372} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000011462177674} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 20, y: 20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000013957468740 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012351584372} - m_CullTransparentMesh: 1 ---- !u!114 &114000010382772448 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012351584372} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.7647059, g: 0.7647059, b: 0.7647059, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff773ea42aedd04c8bb96a1fe9a73b8, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &1000012361136444 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000010522970158} - - component: {fileID: 222000013540651912} - - component: {fileID: 114000013073782528} - - component: {fileID: 114000012329259882} - m_Layer: 5 - m_Name: Scrollbar - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000010522970158 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012361136444} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000011699808258} - m_Father: {fileID: 224000011220798992} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 20, y: 0} - m_Pivot: {x: 1, y: 1} ---- !u!222 &222000013540651912 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012361136444} - m_CullTransparentMesh: 1 ---- !u!114 &114000013073782528 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012361136444} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.9191176, g: 0.9191176, b: 0.9191176, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff773ea42aedd04c8bb96a1fe9a73b8, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114000012329259882 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012361136444} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2a4db7a114972834c8e4117be1d82ba3, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114000011727769908} - m_HandleRect: {fileID: 224000013035464314} - m_Direction: 2 - m_Value: 0 - m_Size: 1 - m_NumberOfSteps: 0 - m_OnValueChanged: - m_PersistentCalls: - m_Calls: [] ---- !u!1 &1000012383891400 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000011581190364} - m_Layer: 5 - m_Name: Padding - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000011581190364 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012383891400} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000011406587750} - - {fileID: 224000014068651142} - - {fileID: 224000011665288554} - m_Father: {fileID: 224000012041644098} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0.5, y: 0} - m_SizeDelta: {x: -3, y: -2} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1000012446612768 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000011220798992} - - component: {fileID: 222000011398895488} - - component: {fileID: 114000010205140010} - - component: {fileID: 114000011683700572} - m_Layer: 5 - m_Name: Template - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &224000011220798992 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012446612768} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000010499347580} - - {fileID: 224000010522970158} - m_Father: {fileID: 224000011367034048} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 2} - m_SizeDelta: {x: 128, y: 150} - m_Pivot: {x: 0, y: 1} ---- !u!222 &222000011398895488 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012446612768} - m_CullTransparentMesh: 1 ---- !u!114 &114000010205140010 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012446612768} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: b9c5fedc997f125448c4d8be2fc43bcd, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114000011683700572 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012446612768} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Content: {fileID: 224000014075494044} - m_Horizontal: 0 - m_Vertical: 1 - m_MovementType: 2 - m_Elasticity: 0.1 - m_Inertia: 0 - m_DecelerationRate: 0.135 - m_ScrollSensitivity: 35 - m_Viewport: {fileID: 224000010499347580} - m_HorizontalScrollbar: {fileID: 0} - m_VerticalScrollbar: {fileID: 114000012329259882} - m_HorizontalScrollbarVisibility: 0 - m_VerticalScrollbarVisibility: 2 - m_HorizontalScrollbarSpacing: 0 - m_VerticalScrollbarSpacing: -3 - m_OnValueChanged: - m_PersistentCalls: - m_Calls: [] ---- !u!1 &1000012576622962 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000014261500554} - - component: {fileID: 222000010178425172} - - component: {fileID: 3543615696575121591} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000014261500554 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012576622962} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 4955060142277728908} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0.000030517578} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000010178425172 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012576622962} - m_CullTransparentMesh: 1 ---- !u!114 &3543615696575121591 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012576622962} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: "\u200B" - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 1 - checkPaddingRequired: 0 - m_isRichText: 0 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1000012784981006 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000013486352002} - - component: {fileID: 114000013864222756} - m_Layer: 5 - m_Name: Item - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000013486352002 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012784981006} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000010566807834} - - {fileID: 224000014138464828} - - {fileID: 224000013343736860} - m_Father: {fileID: 224000014075494044} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0.5} - m_AnchorMax: {x: 1, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 30} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &114000013864222756 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012784981006} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114000013375539332} - toggleTransition: 1 - graphic: {fileID: 114000012182958498} - m_Group: {fileID: 0} - onValueChanged: - m_PersistentCalls: - m_Calls: [] - m_IsOn: 1 ---- !u!1 &1000012812517942 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000013973408554} - m_Layer: 5 - m_Name: Sliding Area - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000013973408554 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012812517942} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000011063755118} - m_Father: {fileID: 224000010556846038} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: -20, y: -20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1000012814992156 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000010349777518} - - component: {fileID: 222000010477223708} - - component: {fileID: 114000013573802796} - - component: {fileID: 6009963269941489084} - m_Layer: 5 - m_Name: PathInputField - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000010349777518 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012814992156} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 7602105929162123153} - m_Father: {fileID: 224811477075121130} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000010477223708 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012814992156} - m_CullTransparentMesh: 1 ---- !u!114 &114000013573802796 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012814992156} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: f668f62689b67d242ad33ff665594344, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &6009963269941489084 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012814992156} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114000013573802796} - m_TextViewport: {fileID: 7602105929162123153} - m_TextComponent: {fileID: 4663058472685064337} - m_Placeholder: {fileID: 0} - m_VerticalScrollbar: {fileID: 0} - m_VerticalScrollbarEventHandler: {fileID: 0} - m_LayoutGroup: {fileID: 0} - m_ScrollSensitivity: 1 - m_ContentType: 0 - m_InputType: 0 - m_AsteriskChar: 42 - m_KeyboardType: 0 - m_LineType: 0 - m_HideMobileInput: 1 - m_HideSoftKeyboard: 0 - m_CharacterValidation: 0 - m_RegexValue: - m_GlobalPointSize: 14 - m_CharacterLimit: 0 - m_OnEndEdit: - m_PersistentCalls: - m_Calls: [] - m_OnSubmit: - m_PersistentCalls: - m_Calls: [] - m_OnSelect: - m_PersistentCalls: - m_Calls: [] - m_OnDeselect: - m_PersistentCalls: - m_Calls: [] - m_OnTextSelection: - m_PersistentCalls: - m_Calls: [] - m_OnEndTextSelection: - m_PersistentCalls: - m_Calls: [] - m_OnValueChanged: - m_PersistentCalls: - m_Calls: [] - m_OnTouchScreenKeyboardStatusChanged: - m_PersistentCalls: - m_Calls: [] - m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_CustomCaretColor: 1 - m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} - m_Text: - m_CaretBlinkRate: 0.85 - m_CaretWidth: 1 - m_ReadOnly: 0 - m_RichText: 0 - m_GlobalFontAsset: {fileID: 0} - m_OnFocusSelectAll: 1 - m_ResetOnDeActivation: 1 - m_RestoreOriginalTextOnEscape: 1 - m_isRichTextEditingAllowed: 0 - m_LineLimit: 0 - m_InputValidator: {fileID: 0} ---- !u!1 &1000012821827198 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000011699808258} - m_Layer: 5 - m_Name: Sliding Area - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000011699808258 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012821827198} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000013035464314} - m_Father: {fileID: 224000010522970158} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: -20, y: -20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1000012959090740 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000013917225860} - - component: {fileID: 222000011980200048} - - component: {fileID: 114000013170144416} - - component: {fileID: 114000010855942864} - m_Layer: 5 - m_Name: Scrollbar Vertical - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000013917225860 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012959090740} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000011462177674} - m_Father: {fileID: 224000014068651142} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 20, y: 0} - m_Pivot: {x: 1, y: 1} ---- !u!222 &222000011980200048 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012959090740} - m_CullTransparentMesh: 1 ---- !u!114 &114000013170144416 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012959090740} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.9191176, g: 0.9191176, b: 0.9191176, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff773ea42aedd04c8bb96a1fe9a73b8, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114000010855942864 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012959090740} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2a4db7a114972834c8e4117be1d82ba3, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114000010382772448} - m_HandleRect: {fileID: 224000013440901968} - m_Direction: 2 - m_Value: 0 - m_Size: 1 - m_NumberOfSteps: 0 - m_OnValueChanged: - m_PersistentCalls: - m_Calls: [] ---- !u!1 &1000012994600004 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000013875672764} - - component: {fileID: 222000012457330136} - - component: {fileID: 114000011987843938} - - component: {fileID: 3653469104176979875} - m_Layer: 5 - m_Name: FilenameInputField - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000013875672764 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012994600004} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000010672092756} - - {fileID: 224358462403105482} - m_Father: {fileID: 224000012168552762} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -60, y: 0} - m_SizeDelta: {x: -140, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000012457330136 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012994600004} - m_CullTransparentMesh: 1 ---- !u!114 &114000011987843938 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012994600004} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: f668f62689b67d242ad33ff665594344, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &3653469104176979875 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000012994600004} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114000011987843938} - m_TextViewport: {fileID: 224358462403105482} - m_TextComponent: {fileID: 6165114128581498310} - m_Placeholder: {fileID: 5043363804898826341} - m_VerticalScrollbar: {fileID: 0} - m_VerticalScrollbarEventHandler: {fileID: 0} - m_LayoutGroup: {fileID: 0} - m_ScrollSensitivity: 1 - m_ContentType: 0 - m_InputType: 0 - m_AsteriskChar: 42 - m_KeyboardType: 0 - m_LineType: 0 - m_HideMobileInput: 1 - m_HideSoftKeyboard: 0 - m_CharacterValidation: 0 - m_RegexValue: - m_GlobalPointSize: 14 - m_CharacterLimit: 0 - m_OnEndEdit: - m_PersistentCalls: - m_Calls: [] - m_OnSubmit: - m_PersistentCalls: - m_Calls: [] - m_OnSelect: - m_PersistentCalls: - m_Calls: [] - m_OnDeselect: - m_PersistentCalls: - m_Calls: [] - m_OnTextSelection: - m_PersistentCalls: - m_Calls: [] - m_OnEndTextSelection: - m_PersistentCalls: - m_Calls: [] - m_OnValueChanged: - m_PersistentCalls: - m_Calls: [] - m_OnTouchScreenKeyboardStatusChanged: - m_PersistentCalls: - m_Calls: [] - m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_CustomCaretColor: 1 - m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} - m_Text: - m_CaretBlinkRate: 0.85 - m_CaretWidth: 1 - m_ReadOnly: 0 - m_RichText: 0 - m_GlobalFontAsset: {fileID: 0} - m_OnFocusSelectAll: 1 - m_ResetOnDeActivation: 1 - m_RestoreOriginalTextOnEscape: 1 - m_isRichTextEditingAllowed: 0 - m_LineLimit: 0 - m_InputValidator: {fileID: 0} ---- !u!1 &1000013226046060 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000011218060110} - - component: {fileID: 222000010868730420} - - component: {fileID: 114000012871191802} - - component: {fileID: 114000014005904746} - m_Layer: 5 - m_Name: SubmitButton - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000011218060110 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000013226046060} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000014061230590} - m_Father: {fileID: 224000012381179108} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -120, y: 0} - m_SizeDelta: {x: 100, y: 0} - m_Pivot: {x: 1, y: 0.5} ---- !u!222 &222000010868730420 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000013226046060} - m_CullTransparentMesh: 1 ---- !u!114 &114000012871191802 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000013226046060} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 2c46fa192de46b04e8281f225bee0230, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114000014005904746 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000013226046060} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114000012871191802} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!1 &1000013285083442 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000010383356806} - m_Layer: 5 - m_Name: QuickLinksContainer - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000010383356806 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000013285083442} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000012294561952} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0, y: 1} ---- !u!1 &1000013654652970 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000012931849942} - m_Layer: 5 - m_Name: FilesContainer - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000012931849942 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000013654652970} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224857456558362622} - m_Father: {fileID: 224000010015050490} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0, y: 1} ---- !u!1 &1000013666513282 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000012440297122} - - component: {fileID: 222000011752544576} - - component: {fileID: 114000010862285312} - - component: {fileID: 114000010360865314} - m_Layer: 5 - m_Name: BackButton - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000012440297122 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000013666513282} - m_LocalRotation: {x: 0, y: 0, z: 1, w: 0} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224367545595026078} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 180} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 25.5, y: 0} - m_SizeDelta: {x: 35, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000011752544576 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000013666513282} - m_CullTransparentMesh: 1 ---- !u!114 &114000010862285312 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000013666513282} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 130f660889a70c947bff4c8ba8a2c73e, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114000010360865314 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000013666513282} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114000010862285312} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!1 &1000013860710196 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000013035464314} - - component: {fileID: 222000013722913620} - - component: {fileID: 114000011727769908} - m_Layer: 5 - m_Name: Handle - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000013035464314 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000013860710196} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000011699808258} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 20, y: 20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000013722913620 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000013860710196} - m_CullTransparentMesh: 1 ---- !u!114 &114000011727769908 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000013860710196} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.7647059, g: 0.7647059, b: 0.7647059, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff773ea42aedd04c8bb96a1fe9a73b8, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &1000013999945244 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224000013306948866} - - component: {fileID: 222000013296734396} - - component: {fileID: 5503561813172505145} - m_Layer: 5 - m_Name: Label - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224000013306948866 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000013999945244} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000012317678330} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 9, y: -0.5} - m_SizeDelta: {x: -28, y: -1} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222000013296734396 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000013999945244} - m_CullTransparentMesh: 1 ---- !u!114 &5503561813172505145 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1000013999945244} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Show hidden files - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 3 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 1 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1017798384541682 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224857456558362622} - - component: {fileID: 222868148075697168} - - component: {fileID: 114713651679604354} - - component: {fileID: 114205106981145908} - m_Layer: 5 - m_Name: RenamedItem - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &224857456558362622 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1017798384541682} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224160221478621668} - - {fileID: 224600721066704016} - m_Father: {fileID: 224000012931849942} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 1, y: 0} - m_SizeDelta: {x: 0, y: 30} - m_Pivot: {x: 0, y: 1} ---- !u!222 &222868148075697168 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1017798384541682} - m_CullTransparentMesh: 1 ---- !u!114 &114713651679604354 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1017798384541682} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff773ea42aedd04c8bb96a1fe9a73b8, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114205106981145908 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1017798384541682} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: c7397ff7ae1ba4c47b6dfd3c84936584, type: 3} - m_Name: - m_EditorClassIdentifier: - background: {fileID: 114713651679604354} - icon: {fileID: 114618009950600020} - nameInputField: {fileID: 4084303038127866462} ---- !u!1 &1032822122238656 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224976749748923606} - - component: {fileID: 222696871981828198} - - component: {fileID: 6293593471743848354} - m_Layer: 5 - m_Name: Message - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224976749748923606 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1032822122238656} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224528182894209024} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 25, y: -20} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222696871981828198 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1032822122238656} - m_CullTransparentMesh: 1 ---- !u!114 &6293593471743848354 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1032822122238656} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Access to this directory is restricted, please select another destination. - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 3 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 0 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1033526871818446 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224952565232057738} - - component: {fileID: 114044192140836546} - m_Layer: 5 - m_Name: Buttons - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224952565232057738 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1033526871818446} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224859091447805236} - - {fileID: 224366934613293246} - m_Father: {fileID: 224883121368338124} - m_RootOrder: 8 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 0} - m_AnchoredPosition: {x: 0, y: 20} - m_SizeDelta: {x: -50, y: 30} - m_Pivot: {x: 0.5, y: 0} ---- !u!114 &114044192140836546 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1033526871818446} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 1 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: -1 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1039567369712514 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224501555033979764} - - component: {fileID: 222405281052678562} - - component: {fileID: 114012833862146622} - - component: {fileID: 114908669291619784} - - component: {fileID: 114529857037090406} - m_Layer: 5 - m_Name: RaycastBlocker - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224501555033979764 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1039567369712514} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224387572643228028} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 10000, y: 10000} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222405281052678562 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1039567369712514} - m_CullTransparentMesh: 1 ---- !u!114 &114012833862146622 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1039567369712514} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: b4fd8cdb8c068dd4bb48c415877496ba, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} ---- !u!114 &114908669291619784 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1039567369712514} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: d0b148fe25e99eb48b9724523833bab1, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Delegates: - - eventID: 2 - callback: - m_PersistentCalls: - m_Calls: - - m_Target: {fileID: 114581495326313396} - m_TargetAssemblyTypeName: - m_MethodName: Hide - m_Mode: 1 - m_Arguments: - m_ObjectArgument: {fileID: 0} - m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine - m_IntArgument: 0 - m_FloatArgument: 0 - m_StringArgument: - m_BoolArgument: 0 - m_CallState: 2 ---- !u!114 &114529857037090406 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1039567369712514} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 1 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: -1 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1045906935792316 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224220852933180436} - - component: {fileID: 222540281714838890} - - component: {fileID: 114975456595458294} - - component: {fileID: 119889873836048348} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224220852933180436 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1045906935792316} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224945766401846030} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 20, y: -15.5} - m_SizeDelta: {x: 58.28, y: 21} - m_Pivot: {x: 0, y: 0.5} ---- !u!222 &222540281714838890 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1045906935792316} - m_CullTransparentMesh: 1 ---- !u!114 &114975456595458294 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1045906935792316} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} - m_Name: - m_EditorClassIdentifier: - m_HorizontalFit: 2 - m_VerticalFit: 0 ---- !u!114 &119889873836048348 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1045906935792316} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Select All - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 0 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1047042883948646 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224878520749080566} - - component: {fileID: 222566150310660492} - - component: {fileID: 114644076772715040} - m_Layer: 5 - m_Name: Icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224878520749080566 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1047042883948646} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224339630385967890} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 19, y: 0} - m_SizeDelta: {x: 30, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222566150310660492 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1047042883948646} - m_CullTransparentMesh: 1 ---- !u!114 &114644076772715040 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1047042883948646} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &1084585696436250 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224742478263042688} - - component: {fileID: 222976976949987356} - - component: {fileID: 114202282007228346} - - component: {fileID: 114411366083395940} - - component: {fileID: 114602554078926738} - - component: {fileID: 114866502439342396} - m_Layer: 5 - m_Name: RenameButton - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224742478263042688 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1084585696436250} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224826572783568050} - m_Father: {fileID: 224387572643228028} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 1, y: -140.5} - m_SizeDelta: {x: 113.91, y: 31} - m_Pivot: {x: 0, y: 0.5} ---- !u!222 &222976976949987356 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1084585696436250} - m_CullTransparentMesh: 1 ---- !u!114 &114202282007228346 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1084585696436250} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.955, g: 0.955, b: 0.955, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff773ea42aedd04c8bb96a1fe9a73b8, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114411366083395940 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1084585696436250} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114202282007228346} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &114602554078926738 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1084585696436250} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 0 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: 31 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!114 &114866502439342396 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1084585696436250} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: - m_Left: 20 - m_Right: 20 - m_Top: 5 - m_Bottom: 5 - m_ChildAlignment: 0 - m_Spacing: 0 - m_ChildForceExpandWidth: 1 - m_ChildForceExpandHeight: 1 - m_ChildControlWidth: 1 - m_ChildControlHeight: 1 - m_ChildScaleWidth: 0 - m_ChildScaleHeight: 0 - m_ReverseArrangement: 0 ---- !u!1 &1115395523925442 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224968234521661378} - - component: {fileID: 222746693721564418} - - component: {fileID: 114906565208794506} - - component: {fileID: 8483369582825855082} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224968234521661378 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1115395523925442} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224180484781794126} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 20, y: -15.5} - m_SizeDelta: {x: 40.54, y: 21} - m_Pivot: {x: 0, y: 0.5} ---- !u!222 &222746693721564418 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1115395523925442} - m_CullTransparentMesh: 1 ---- !u!114 &114906565208794506 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1115395523925442} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} - m_Name: - m_EditorClassIdentifier: - m_HorizontalFit: 2 - m_VerticalFit: 0 ---- !u!114 &8483369582825855082 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1115395523925442} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Delete - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 0 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1118279780387764 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224266136694922796} - - component: {fileID: 114173655991101396} - - component: {fileID: 114206147818356958} - m_Layer: 5 - m_Name: AccessRestrictedPanel - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &224266136694922796 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1118279780387764} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224591811834369706} - - {fileID: 224528182894209024} - m_Father: {fileID: 224000013577827562} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: -20, y: -100} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &114173655991101396 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1118279780387764} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 85ea21be7cacb484cb6db0d183d3b2a8, type: 3} - m_Name: - m_EditorClassIdentifier: - contentLayoutGroup: {fileID: 114123652638802926} - messageLabel: {fileID: 6293593471743848354} - okButton: {fileID: 114698690279555360} ---- !u!114 &114206147818356958 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1118279780387764} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 - m_ChildAlignment: 4 - m_Spacing: 0 - m_ChildForceExpandWidth: 0 - m_ChildForceExpandHeight: 0 - m_ChildControlWidth: 1 - m_ChildControlHeight: 1 - m_ChildScaleWidth: 0 - m_ChildScaleHeight: 0 - m_ReverseArrangement: 0 ---- !u!1 &1118377256305244 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224591811834369706} - - component: {fileID: 222863206528099286} - - component: {fileID: 114302888222685676} - - component: {fileID: 114513488977380248} - m_Layer: 5 - m_Name: RaycastBlocker - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224591811834369706 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1118377256305244} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224266136694922796} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 10000, y: 10000} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222863206528099286 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1118377256305244} - m_CullTransparentMesh: 1 ---- !u!114 &114302888222685676 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1118377256305244} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: b4fd8cdb8c068dd4bb48c415877496ba, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} ---- !u!114 &114513488977380248 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1118377256305244} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 1 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: -1 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1123161949036024 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224838098161518584} - m_Layer: 5 - m_Name: MoreOptionsContextMenuPosition - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224838098161518584 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1123161949036024} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224367545595026078} - m_RootOrder: 6 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 0} - m_AnchorMax: {x: 1, y: 0} - m_AnchoredPosition: {x: 0, y: -8} - m_SizeDelta: {x: 10, y: 10} - m_Pivot: {x: 1, y: 1} ---- !u!1 &1151794855490460 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224895875343623328} - - component: {fileID: 222336820766335928} - - component: {fileID: 4788406906883834880} - m_Layer: 5 - m_Name: OverwriteOperationTitleText - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224895875343623328 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1151794855490460} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224883121368338124} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 20, y: -28} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222336820766335928 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1151794855490460} - m_CullTransparentMesh: 1 ---- !u!114 &4788406906883834880 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1151794855490460} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: 'These file(s) already exist. Do you want to replace them? - -' - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 3 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 0 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1167292262143336 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224778155638663352} - - component: {fileID: 114935999190282984} - m_Layer: 5 - m_Name: Buttons - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224778155638663352 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1167292262143336} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224653188807837000} - m_Father: {fileID: 224528182894209024} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 0} - m_AnchoredPosition: {x: 0, y: 20} - m_SizeDelta: {x: -50, y: 30} - m_Pivot: {x: 0.5, y: 0} ---- !u!114 &114935999190282984 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1167292262143336} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 1 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: -1 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1171342637537398 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224238202155165620} - - component: {fileID: 222054528745619754} - - component: {fileID: 2086230404601750719} - m_Layer: 5 - m_Name: Name - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224238202155165620 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1171342637537398} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224428437787852036} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 19, y: 0} - m_SizeDelta: {x: -38, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222054528745619754 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1171342637537398} - m_CullTransparentMesh: 1 ---- !u!114 &2086230404601750719 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1171342637537398} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: ...and 1 other - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 3 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 0 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1181530787890102 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224729756021937082} - - component: {fileID: 222777756029992576} - - component: {fileID: 5668582958711725490} - m_Layer: 5 - m_Name: Name - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224729756021937082 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1181530787890102} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224805519747973880} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 19, y: 0} - m_SizeDelta: {x: -38, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222777756029992576 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1181530787890102} - m_CullTransparentMesh: 1 ---- !u!114 &5668582958711725490 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1181530787890102} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Filename - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 3 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 0 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1183286242104644 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224667401959175920} - - component: {fileID: 222458615791619182} - - component: {fileID: 114041711672230222} - - component: {fileID: 114520439492911304} - m_Layer: 5 - m_Name: Separator - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224667401959175920 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1183286242104644} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224210293626551430} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: -14, y: 1} - m_Pivot: {x: 0.5, y: 0} ---- !u!222 &222458615791619182 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1183286242104644} - m_CullTransparentMesh: 1 ---- !u!114 &114041711672230222 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1183286242104644} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.6397059, g: 0.6397059, b: 0.6397059, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff773ea42aedd04c8bb96a1fe9a73b8, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114520439492911304 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1183286242104644} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 1 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: -1 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1194639342920472 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224491748653748466} - - component: {fileID: 222389444148571120} - - component: {fileID: 114938008637452676} - - component: {fileID: 114144994822079520} - m_Layer: 5 - m_Name: MoreOptionsButton - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224491748653748466 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1194639342920472} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224367545595026078} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 35, y: 0} - m_Pivot: {x: 1, y: 0.5} ---- !u!222 &222389444148571120 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1194639342920472} - m_CullTransparentMesh: 1 ---- !u!114 &114938008637452676 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1194639342920472} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 3eb0ab0fddc930a498bef8ce7e149ea0, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114144994822079520 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1194639342920472} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114938008637452676} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!1 &1199555316942912 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224600721066704016} - - component: {fileID: 222867589216164922} - - component: {fileID: 114980400322576558} - - component: {fileID: 4084303038127866462} - m_Layer: 5 - m_Name: NameInputField - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224600721066704016 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1199555316942912} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 1064615849438678541} - m_Father: {fileID: 224857456558362622} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 16, y: 0} - m_SizeDelta: {x: -36, y: -2} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222867589216164922 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1199555316942912} - m_CullTransparentMesh: 1 ---- !u!114 &114980400322576558 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1199555316942912} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: f668f62689b67d242ad33ff665594344, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &4084303038127866462 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1199555316942912} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114980400322576558} - m_TextViewport: {fileID: 1064615849438678541} - m_TextComponent: {fileID: 1385359947207988868} - m_Placeholder: {fileID: 0} - m_VerticalScrollbar: {fileID: 0} - m_VerticalScrollbarEventHandler: {fileID: 0} - m_LayoutGroup: {fileID: 0} - m_ScrollSensitivity: 1 - m_ContentType: 0 - m_InputType: 0 - m_AsteriskChar: 42 - m_KeyboardType: 0 - m_LineType: 0 - m_HideMobileInput: 1 - m_HideSoftKeyboard: 0 - m_CharacterValidation: 0 - m_RegexValue: - m_GlobalPointSize: 14 - m_CharacterLimit: 0 - m_OnEndEdit: - m_PersistentCalls: - m_Calls: [] - m_OnSubmit: - m_PersistentCalls: - m_Calls: [] - m_OnSelect: - m_PersistentCalls: - m_Calls: [] - m_OnDeselect: - m_PersistentCalls: - m_Calls: [] - m_OnTextSelection: - m_PersistentCalls: - m_Calls: [] - m_OnEndTextSelection: - m_PersistentCalls: - m_Calls: [] - m_OnValueChanged: - m_PersistentCalls: - m_Calls: [] - m_OnTouchScreenKeyboardStatusChanged: - m_PersistentCalls: - m_Calls: [] - m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_CustomCaretColor: 1 - m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} - m_Text: - m_CaretBlinkRate: 0.85 - m_CaretWidth: 1 - m_ReadOnly: 0 - m_RichText: 0 - m_GlobalFontAsset: {fileID: 0} - m_OnFocusSelectAll: 1 - m_ResetOnDeActivation: 1 - m_RestoreOriginalTextOnEscape: 1 - m_isRichTextEditingAllowed: 0 - m_LineLimit: 0 - m_InputValidator: {fileID: 0} ---- !u!1 &1206614593168194 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224127867913948392} - m_Layer: 5 - m_Name: PathInputFieldSlotBottom - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224127867913948392 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1206614593168194} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000012236837694} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: -20, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1231678994093292 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224386294048010138} - - component: {fileID: 222198536846561238} - - component: {fileID: 2929985678030906145} - m_Layer: 5 - m_Name: Name - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224386294048010138 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1231678994093292} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224612077775479484} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 19, y: 0} - m_SizeDelta: {x: -38, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222198536846561238 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1231678994093292} - m_CullTransparentMesh: 1 ---- !u!114 &2929985678030906145 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1231678994093292} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Filename - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 3 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 0 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1254239407579514 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224254816764787534} - - component: {fileID: 222045562886155196} - - component: {fileID: 7409372078330908240} - m_Layer: 5 - m_Name: Name - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224254816764787534 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1254239407579514} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224287151320632504} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 19, y: 0} - m_SizeDelta: {x: -38, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222045562886155196 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1254239407579514} - m_CullTransparentMesh: 1 ---- !u!114 &7409372078330908240 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1254239407579514} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Filename - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 3 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 0 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1286188004436562 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224811477075121130} - m_Layer: 5 - m_Name: PathInputFieldSlotTop - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224811477075121130 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1286188004436562} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000010349777518} - m_Father: {fileID: 224367545595026078} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -10.5, y: 0} - m_SizeDelta: {x: -289, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1338083938196786 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224694555542072776} - - component: {fileID: 222904708390506912} - - component: {fileID: 114512531252220286} - - component: {fileID: 114914453812680770} - m_Layer: 5 - m_Name: RaycastBlocker - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224694555542072776 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1338083938196786} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224335344313781930} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 10000, y: 10000} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222904708390506912 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1338083938196786} - m_CullTransparentMesh: 1 ---- !u!114 &114512531252220286 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1338083938196786} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: b4fd8cdb8c068dd4bb48c415877496ba, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} ---- !u!114 &114914453812680770 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1338083938196786} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 1 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: -1 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1344831917772668 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224710151233061090} - - component: {fileID: 222754384321455642} - - component: {fileID: 114490386416446264} - - component: {fileID: 114656258729894772} - m_Layer: 5 - m_Name: ErrorIcon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224710151233061090 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1344831917772668} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224528182894209024} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 20, y: -20} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222754384321455642 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1344831917772668} - m_CullTransparentMesh: 1 ---- !u!114 &114490386416446264 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1344831917772668} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 01b10cc2da49f7442ba6525072e1f86a, type: 3} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114656258729894772 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1344831917772668} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 0 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: 48 - m_PreferredHeight: 48 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1352454224458750 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224999068213333118} - - component: {fileID: 222372755958818208} - - component: {fileID: 114559354246090904} - m_Layer: 5 - m_Name: Icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224999068213333118 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1352454224458750} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224917160840910854} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 19, y: 0} - m_SizeDelta: {x: 30, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222372755958818208 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1352454224458750} - m_CullTransparentMesh: 1 ---- !u!114 &114559354246090904 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1352454224458750} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &1363148212006182 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224671979781234494} - - component: {fileID: 222905629628785182} - - component: {fileID: 114999919211664452} - m_Layer: 5 - m_Name: Icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224671979781234494 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1363148212006182} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224805519747973880} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 19, y: 0} - m_SizeDelta: {x: 30, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222905629628785182 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1363148212006182} - m_CullTransparentMesh: 1 ---- !u!114 &114999919211664452 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1363148212006182} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &1371217670851380 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224210293626551430} - - component: {fileID: 222840457201773196} - - component: {fileID: 114582105816722586} - - component: {fileID: 114364461900096894} - - component: {fileID: 114250224012945672} - - component: {fileID: 114529936178937370} - m_Layer: 5 - m_Name: DeselectAllButton - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224210293626551430 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1371217670851380} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224667401959175920} - - {fileID: 224731226730921728} - m_Father: {fileID: 224387572643228028} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 1, y: -47.5} - m_SizeDelta: {x: 113.91, y: 31} - m_Pivot: {x: 0, y: 0.5} ---- !u!222 &222840457201773196 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1371217670851380} - m_CullTransparentMesh: 1 ---- !u!114 &114582105816722586 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1371217670851380} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.955, g: 0.955, b: 0.955, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff773ea42aedd04c8bb96a1fe9a73b8, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114364461900096894 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1371217670851380} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114582105816722586} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &114250224012945672 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1371217670851380} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 0 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: 31 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!114 &114529936178937370 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1371217670851380} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: - m_Left: 20 - m_Right: 20 - m_Top: 5 - m_Bottom: 5 - m_ChildAlignment: 0 - m_Spacing: 0 - m_ChildForceExpandWidth: 1 - m_ChildForceExpandHeight: 1 - m_ChildControlWidth: 1 - m_ChildControlHeight: 1 - m_ChildScaleWidth: 0 - m_ChildScaleHeight: 0 - m_ReverseArrangement: 0 ---- !u!1 &1378826918233692 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224985762152303168} - - component: {fileID: 222239399289243740} - - component: {fileID: 6618311706336606805} - m_Layer: 5 - m_Name: DeleteOperationTitleText - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224985762152303168 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1378826918233692} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224883121368338124} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 20, y: -20} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222239399289243740 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1378826918233692} - m_CullTransparentMesh: 1 ---- !u!114 &6618311706336606805 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1378826918233692} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: 'Are you sure you want to delete these file(s)? This operation cannot be - undone. - -' - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 256 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 3 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 0 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1392761110000372 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224387572643228028} - - component: {fileID: 114581495326313396} - - component: {fileID: 222292635105406868} - - component: {fileID: 114016452581339190} - - component: {fileID: 114277150645603946} - - component: {fileID: 114071748841153460} - m_Layer: 5 - m_Name: ContextMenu - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &224387572643228028 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1392761110000372} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224501555033979764} - - {fileID: 224945766401846030} - - {fileID: 224210293626551430} - - {fileID: 224009688569940338} - - {fileID: 224180484781794126} - - {fileID: 224742478263042688} - m_Father: {fileID: 224000013577827562} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 115.91, y: 157} - m_Pivot: {x: 0, y: 1} ---- !u!114 &114581495326313396 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1392761110000372} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 0d5261bc2717e6143961d30ccb76fb66, type: 3} - m_Name: - m_EditorClassIdentifier: - fileBrowser: {fileID: 114000013689746302} - rectTransform: {fileID: 224387572643228028} - selectAllButton: {fileID: 114370003170116688} - deselectAllButton: {fileID: 114364461900096894} - createFolderButton: {fileID: 114346774628667646} - deleteButton: {fileID: 114128867067796106} - renameButton: {fileID: 114411366083395940} - selectAllButtonSeparator: {fileID: 1743655712281856} - allButtonLayoutElements: - - {fileID: 114481890628619012} - - {fileID: 114250224012945672} - - {fileID: 114906368162061808} - - {fileID: 114512122434902734} - - {fileID: 114602554078926738} - allButtonTexts: - - {fileID: 119889873836048348} - - {fileID: 8980404476085725421} - - {fileID: 4500355636685612694} - - {fileID: 8483369582825855082} - - {fileID: 5698543394086318692} - allButtonSeparators: - - {fileID: 114076502751505788} - - {fileID: 114041711672230222} - - {fileID: 114633891711833786} - minDistanceToEdges: 10 ---- !u!222 &222292635105406868 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1392761110000372} - m_CullTransparentMesh: 1 ---- !u!114 &114016452581339190 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1392761110000372} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.955, g: 0.955, b: 0.955, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: b9c5fedc997f125448c4d8be2fc43bcd, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114277150645603946 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1392761110000372} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: - m_Left: 1 - m_Right: 1 - m_Top: 1 - m_Bottom: 1 - m_ChildAlignment: 0 - m_Spacing: 0 - m_ChildForceExpandWidth: 0 - m_ChildForceExpandHeight: 0 - m_ChildControlWidth: 1 - m_ChildControlHeight: 1 - m_ChildScaleWidth: 0 - m_ChildScaleHeight: 0 - m_ReverseArrangement: 0 ---- !u!114 &114071748841153460 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1392761110000372} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} - m_Name: - m_EditorClassIdentifier: - m_HorizontalFit: 2 - m_VerticalFit: 2 ---- !u!1 &1401151329615976 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224629007158093994} - - component: {fileID: 222482284729687946} - - component: {fileID: 1385359947207988868} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224629007158093994 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1401151329615976} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 1064615849438678541} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222482284729687946 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1401151329615976} - m_CullTransparentMesh: 1 ---- !u!114 &1385359947207988868 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1401151329615976} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4294967295 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: 0 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 0 - m_enableExtraPadding: 1 - checkPaddingRequired: 0 - m_isRichText: 0 - m_parseCtrlCharacters: 0 - m_isOrthographic: 0 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1403116251523746 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224339630385967890} - - component: {fileID: 114531045137026284} - m_Layer: 5 - m_Name: DeletedItem3 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224339630385967890 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1403116251523746} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224878520749080566} - - {fileID: 224579978660468938} - m_Father: {fileID: 224883121368338124} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 20, y: -52} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0, y: 1} ---- !u!114 &114531045137026284 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1403116251523746} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 0 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: 465 - m_PreferredHeight: 30 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1414856304093004 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224653188807837000} - - component: {fileID: 222860798903739830} - - component: {fileID: 114625667920685068} - - component: {fileID: 114698690279555360} - m_Layer: 5 - m_Name: OKButton - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224653188807837000 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1414856304093004} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224378325536902244} - m_Father: {fileID: 224778155638663352} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222860798903739830 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1414856304093004} - m_CullTransparentMesh: 1 ---- !u!114 &114625667920685068 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1414856304093004} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 2c46fa192de46b04e8281f225bee0230, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114698690279555360 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1414856304093004} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114625667920685068} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!1 &1415466660983166 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224180484781794126} - - component: {fileID: 222085511415262082} - - component: {fileID: 114979685639805002} - - component: {fileID: 114128867067796106} - - component: {fileID: 114512122434902734} - - component: {fileID: 114545190460066226} - m_Layer: 5 - m_Name: DeleteButton - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224180484781794126 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1415466660983166} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224615493904165516} - - {fileID: 224968234521661378} - m_Father: {fileID: 224387572643228028} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 1, y: -109.5} - m_SizeDelta: {x: 113.91, y: 31} - m_Pivot: {x: 0, y: 0.5} ---- !u!222 &222085511415262082 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1415466660983166} - m_CullTransparentMesh: 1 ---- !u!114 &114979685639805002 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1415466660983166} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.955, g: 0.955, b: 0.955, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff773ea42aedd04c8bb96a1fe9a73b8, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114128867067796106 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1415466660983166} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114979685639805002} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &114512122434902734 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1415466660983166} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 0 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: 31 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!114 &114545190460066226 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1415466660983166} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: - m_Left: 20 - m_Right: 20 - m_Top: 5 - m_Bottom: 5 - m_ChildAlignment: 0 - m_Spacing: 0 - m_ChildForceExpandWidth: 1 - m_ChildForceExpandHeight: 1 - m_ChildControlWidth: 1 - m_ChildControlHeight: 1 - m_ChildScaleWidth: 0 - m_ChildScaleHeight: 0 - m_ReverseArrangement: 0 ---- !u!1 &1494664619077382 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224883121368338124} - - component: {fileID: 222062640238791174} - - component: {fileID: 114486823500348690} - - component: {fileID: 114455833942722318} - m_Layer: 5 - m_Name: Contents - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224883121368338124 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1494664619077382} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224985762152303168} - - {fileID: 224895875343623328} - - {fileID: 224612077775479484} - - {fileID: 224917160840910854} - - {fileID: 224339630385967890} - - {fileID: 224287151320632504} - - {fileID: 224805519747973880} - - {fileID: 224428437787852036} - - {fileID: 224952565232057738} - m_Father: {fileID: 224335344313781930} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: -10, y: -68} - m_SizeDelta: {x: 40, y: 136} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222062640238791174 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1494664619077382} - m_CullTransparentMesh: 1 ---- !u!114 &114486823500348690 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1494664619077382} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.955, g: 0.955, b: 0.955, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: b9c5fedc997f125448c4d8be2fc43bcd, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114455833942722318 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1494664619077382} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: - m_Left: 20 - m_Right: 20 - m_Top: 20 - m_Bottom: 60 - m_ChildAlignment: 0 - m_Spacing: 8 - m_ChildForceExpandWidth: 0 - m_ChildForceExpandHeight: 0 - m_ChildControlWidth: 1 - m_ChildControlHeight: 1 - m_ChildScaleWidth: 0 - m_ChildScaleHeight: 0 - m_ReverseArrangement: 0 ---- !u!1 &1501240792967194 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224528182894209024} - - component: {fileID: 222610136704142508} - - component: {fileID: 114011919482879176} - - component: {fileID: 114123652638802926} - m_Layer: 5 - m_Name: Contents - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224528182894209024 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1501240792967194} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224710151233061090} - - {fileID: 224976749748923606} - - {fileID: 224778155638663352} - m_Father: {fileID: 224266136694922796} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: -10, y: -40} - m_SizeDelta: {x: 45, y: 80} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222610136704142508 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1501240792967194} - m_CullTransparentMesh: 1 ---- !u!114 &114011919482879176 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1501240792967194} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.955, g: 0.955, b: 0.955, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: b9c5fedc997f125448c4d8be2fc43bcd, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114123652638802926 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1501240792967194} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: - m_Left: 20 - m_Right: 20 - m_Top: 20 - m_Bottom: 60 - m_ChildAlignment: 4 - m_Spacing: 5 - m_ChildForceExpandWidth: 0 - m_ChildForceExpandHeight: 0 - m_ChildControlWidth: 1 - m_ChildControlHeight: 1 - m_ChildScaleWidth: 0 - m_ChildScaleHeight: 0 - m_ReverseArrangement: 0 ---- !u!1 &1595574248274308 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224579978660468938} - - component: {fileID: 222683994645252540} - - component: {fileID: 8040631734536090510} - m_Layer: 5 - m_Name: Name - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224579978660468938 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1595574248274308} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224339630385967890} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 19, y: 0} - m_SizeDelta: {x: -38, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222683994645252540 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1595574248274308} - m_CullTransparentMesh: 1 ---- !u!114 &8040631734536090510 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1595574248274308} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Filename - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 3 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 0 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1628495760451836 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224404137521161490} - - component: {fileID: 222772221329009366} - - component: {fileID: 5789310798252918806} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224404137521161490 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1628495760451836} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224366934613293246} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222772221329009366 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1628495760451836} - m_CullTransparentMesh: 1 ---- !u!114 &5789310798252918806 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1628495760451836} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: No - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 2 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 3 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 0 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1628886504746956 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224287151320632504} - - component: {fileID: 114351978993012462} - m_Layer: 5 - m_Name: DeletedItem4 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224287151320632504 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1628886504746956} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224352439219928090} - - {fileID: 224254816764787534} - m_Father: {fileID: 224883121368338124} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 20, y: -60} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0, y: 1} ---- !u!114 &114351978993012462 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1628886504746956} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 0 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: 465 - m_PreferredHeight: 30 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1639969918461738 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4904278185319220} - - component: {fileID: 114264229365648150} - - component: {fileID: 114987523097433500} - - component: {fileID: 114249932998432414} - m_Layer: 5 - m_Name: EventSystem - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!4 &4904278185319220 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1639969918461738} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000013577827562} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &114264229365648150 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1639969918461738} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} - m_Name: - m_EditorClassIdentifier: - m_FirstSelected: {fileID: 0} - m_sendNavigationEvents: 1 - m_DragThreshold: 5 ---- !u!114 &114987523097433500 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1639969918461738} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3} - m_Name: - m_EditorClassIdentifier: - m_SendPointerHoverToParent: 1 - m_HorizontalAxis: Horizontal - m_VerticalAxis: Vertical - m_SubmitButton: Submit - m_CancelButton: Cancel - m_InputActionsPerSecond: 10 - m_RepeatDelay: 0.5 - m_ForceModuleActive: 0 ---- !u!114 &114249932998432414 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1639969918461738} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 1511ccae7919cfc46b603b9b337fdc94, type: 3} - m_Name: - m_EditorClassIdentifier: ---- !u!1 &1641356320230866 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224700969652192598} - - component: {fileID: 222341821613882866} - - component: {fileID: 871738933773298422} - m_Layer: 5 - m_Name: Name - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224700969652192598 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1641356320230866} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224917160840910854} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 19, y: 0} - m_SizeDelta: {x: -38, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222341821613882866 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1641356320230866} - m_CullTransparentMesh: 1 ---- !u!114 &871738933773298422 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1641356320230866} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Filename - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 3 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 0 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1662553362089260 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224917160840910854} - - component: {fileID: 114991255790000676} - m_Layer: 5 - m_Name: DeletedItem2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224917160840910854 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1662553362089260} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224999068213333118} - - {fileID: 224700969652192598} - m_Father: {fileID: 224883121368338124} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 20, y: -44} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0, y: 1} ---- !u!114 &114991255790000676 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1662553362089260} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 0 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: 465 - m_PreferredHeight: 30 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1696201915293482 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224352439219928090} - - component: {fileID: 222596191243205734} - - component: {fileID: 114688142498443454} - m_Layer: 5 - m_Name: Icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224352439219928090 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1696201915293482} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224287151320632504} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 19, y: 0} - m_SizeDelta: {x: 30, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222596191243205734 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1696201915293482} - m_CullTransparentMesh: 1 ---- !u!114 &114688142498443454 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1696201915293482} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &1727841728426566 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224448863046366790} - - component: {fileID: 222773604375578486} - - component: {fileID: 114339422463366890} - m_Layer: 5 - m_Name: Icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &224448863046366790 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1727841728426566} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224428437787852036} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 19, y: 0} - m_SizeDelta: {x: 30, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222773604375578486 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1727841728426566} - m_CullTransparentMesh: 1 ---- !u!114 &114339422463366890 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1727841728426566} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &1742488419803120 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224367545595026078} - - component: {fileID: 114728186227423848} - m_Layer: 5 - m_Name: TopView - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224367545595026078 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1742488419803120} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000012440297122} - - {fileID: 224000010179883522} - - {fileID: 224000014041540182} - - {fileID: 224811477075121130} - - {fileID: 224000014003395874} - - {fileID: 224491748653748466} - - {fileID: 224838098161518584} - m_Father: {fileID: 224000012589068232} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &114728186227423848 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1742488419803120} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 0 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: 30 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1743655712281856 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224879149458412328} - - component: {fileID: 222009336802652680} - - component: {fileID: 114076502751505788} - - component: {fileID: 114566098502354050} - m_Layer: 5 - m_Name: Separator - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &224879149458412328 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1743655712281856} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224945766401846030} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: -14, y: 1} - m_Pivot: {x: 0.5, y: 0} ---- !u!222 &222009336802652680 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1743655712281856} - m_CullTransparentMesh: 1 ---- !u!114 &114076502751505788 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1743655712281856} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.6397059, g: 0.6397059, b: 0.6397059, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff773ea42aedd04c8bb96a1fe9a73b8, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114566098502354050 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1743655712281856} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 1 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: -1 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1766934271893524 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224358462403105482} - - component: {fileID: 114036704718389764} - m_Layer: 5 - m_Name: Text Area - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224358462403105482 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1766934271893524} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000011163845922} - m_Father: {fileID: 224000013875672764} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -0.5} - m_SizeDelta: {x: -14, y: -1} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &114036704718389764 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1766934271893524} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 3312d7739989d2b4e91e6319e9a96d76, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: {x: -5, y: 1, z: -5, w: 1} - m_Softness: {x: 0, y: 0} ---- !u!1 &1780740940857574 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224650102803764702} - - component: {fileID: 222158588866941948} - - component: {fileID: 114161038201393556} - m_Layer: 5 - m_Name: Background - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224650102803764702 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1780740940857574} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224000014125199124} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222158588866941948 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1780740940857574} - m_CullTransparentMesh: 1 ---- !u!114 &114161038201393556 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1780740940857574} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.30882353, g: 0.30882353, b: 0.30882353, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff773ea42aedd04c8bb96a1fe9a73b8, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &1781664147393650 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224378325536902244} - - component: {fileID: 222443444073920332} - - component: {fileID: 153128324799668044} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224378325536902244 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1781664147393650} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224653188807837000} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222443444073920332 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1781664147393650} - m_CullTransparentMesh: 1 ---- !u!114 &153128324799668044 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1781664147393650} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: OK - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 2 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 3 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 0 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1783948981068786 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224160221478621668} - - component: {fileID: 222673228713899592} - - component: {fileID: 114618009950600020} - m_Layer: 5 - m_Name: Icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224160221478621668 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1783948981068786} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224857456558362622} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 19, y: 0} - m_SizeDelta: {x: 30, y: -6} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222673228713899592 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1783948981068786} - m_CullTransparentMesh: 1 ---- !u!114 &114618009950600020 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1783948981068786} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &1808582822678028 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224366934613293246} - - component: {fileID: 222833333968716816} - - component: {fileID: 114598182042052440} - - component: {fileID: 114438238768779492} - m_Layer: 5 - m_Name: NoButton - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224366934613293246 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1808582822678028} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224404137521161490} - m_Father: {fileID: 224952565232057738} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 2.5, y: 0} - m_SizeDelta: {x: -5, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222833333968716816 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1808582822678028} - m_CullTransparentMesh: 1 ---- !u!114 &114598182042052440 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1808582822678028} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 2c46fa192de46b04e8281f225bee0230, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114438238768779492 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1808582822678028} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114598182042052440} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!1 &1809022162416466 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224859091447805236} - - component: {fileID: 222727923495614766} - - component: {fileID: 114398207703756688} - - component: {fileID: 114083312109309574} - m_Layer: 5 - m_Name: YesButton - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224859091447805236 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1809022162416466} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224328148281409894} - m_Father: {fileID: 224952565232057738} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0.5, y: 1} - m_AnchoredPosition: {x: -2.5, y: 0} - m_SizeDelta: {x: -5, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222727923495614766 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1809022162416466} - m_CullTransparentMesh: 1 ---- !u!114 &114398207703756688 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1809022162416466} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 2c46fa192de46b04e8281f225bee0230, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114083312109309574 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1809022162416466} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114398207703756688} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!1 &1810475167515568 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224009688569940338} - - component: {fileID: 222770684167431508} - - component: {fileID: 114280106910162478} - - component: {fileID: 114346774628667646} - - component: {fileID: 114906368162061808} - - component: {fileID: 114837575635243700} - m_Layer: 5 - m_Name: CreateFolderButton - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224009688569940338 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1810475167515568} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224858762309318048} - m_Father: {fileID: 224387572643228028} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 1, y: -78.5} - m_SizeDelta: {x: 113.91, y: 31} - m_Pivot: {x: 0, y: 0.5} ---- !u!222 &222770684167431508 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1810475167515568} - m_CullTransparentMesh: 1 ---- !u!114 &114280106910162478 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1810475167515568} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.955, g: 0.955, b: 0.955, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff773ea42aedd04c8bb96a1fe9a73b8, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114346774628667646 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1810475167515568} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114280106910162478} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &114906368162061808 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1810475167515568} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 0 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: 31 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!114 &114837575635243700 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1810475167515568} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: - m_Left: 20 - m_Right: 20 - m_Top: 5 - m_Bottom: 5 - m_ChildAlignment: 0 - m_Spacing: 0 - m_ChildForceExpandWidth: 1 - m_ChildForceExpandHeight: 1 - m_ChildControlWidth: 1 - m_ChildControlHeight: 1 - m_ChildScaleWidth: 0 - m_ChildScaleHeight: 0 - m_ReverseArrangement: 0 ---- !u!1 &1828702684466812 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224805519747973880} - - component: {fileID: 114315604284939632} - m_Layer: 5 - m_Name: DeletedItem5 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224805519747973880 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1828702684466812} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224671979781234494} - - {fileID: 224729756021937082} - m_Father: {fileID: 224883121368338124} - m_RootOrder: 6 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 20, y: -68} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0, y: 1} ---- !u!114 &114315604284939632 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1828702684466812} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 0 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: 465 - m_PreferredHeight: 30 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1852063596372882 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224826572783568050} - - component: {fileID: 222687076515874848} - - component: {fileID: 114713076422221768} - - component: {fileID: 5698543394086318692} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224826572783568050 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1852063596372882} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224742478263042688} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 20, y: -15.5} - m_SizeDelta: {x: 53.4, y: 21} - m_Pivot: {x: 0, y: 0.5} ---- !u!222 &222687076515874848 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1852063596372882} - m_CullTransparentMesh: 1 ---- !u!114 &114713076422221768 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1852063596372882} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} - m_Name: - m_EditorClassIdentifier: - m_HorizontalFit: 2 - m_VerticalFit: 0 ---- !u!114 &5698543394086318692 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1852063596372882} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Rename - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 0 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1871003747564276 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224428437787852036} - - component: {fileID: 114651400270007254} - m_Layer: 5 - m_Name: DeletedItemsRest - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224428437787852036 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1871003747564276} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224448863046366790} - - {fileID: 224238202155165620} - m_Father: {fileID: 224883121368338124} - m_RootOrder: 7 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 20, y: -76} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0, y: 1} ---- !u!114 &114651400270007254 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1871003747564276} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 0 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: 465 - m_PreferredHeight: 25 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1897211725240638 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224858762309318048} - - component: {fileID: 222803269594998364} - - component: {fileID: 114108319543634614} - - component: {fileID: 4500355636685612694} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224858762309318048 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1897211725240638} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224009688569940338} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 20, y: -15.5} - m_SizeDelta: {x: 71.63, y: 21} - m_Pivot: {x: 0, y: 0.5} ---- !u!222 &222803269594998364 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1897211725240638} - m_CullTransparentMesh: 1 ---- !u!114 &114108319543634614 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1897211725240638} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} - m_Name: - m_EditorClassIdentifier: - m_HorizontalFit: 2 - m_VerticalFit: 0 ---- !u!114 &4500355636685612694 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1897211725240638} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: New Folder - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 0 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1903863982848606 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224335344313781930} - - component: {fileID: 114966523907925700} - - component: {fileID: 114626590300014596} - m_Layer: 5 - m_Name: FileOperationConfirmationPanel - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &224335344313781930 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1903863982848606} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224694555542072776} - - {fileID: 224883121368338124} - m_Father: {fileID: 224000013577827562} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: -20, y: -100} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &114966523907925700 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1903863982848606} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 524a683efed82084b9a9c4a3eff23b73, type: 3} - m_Name: - m_EditorClassIdentifier: - contentLayoutGroup: {fileID: 114455833942722318} - titleLabels: - - {fileID: 6618311706336606805} - - {fileID: 4788406906883834880} - targetItems: - - {fileID: 1993517787700380} - - {fileID: 1662553362089260} - - {fileID: 1403116251523746} - - {fileID: 1628886504746956} - - {fileID: 1828702684466812} - targetItemIcons: - - {fileID: 114295528466655848} - - {fileID: 114559354246090904} - - {fileID: 114644076772715040} - - {fileID: 114688142498443454} - - {fileID: 114999919211664452} - targetItemNames: - - {fileID: 2929985678030906145} - - {fileID: 871738933773298422} - - {fileID: 8040631734536090510} - - {fileID: 7409372078330908240} - - {fileID: 5668582958711725490} - targetItemsRest: {fileID: 1871003747564276} - targetItemsRestLabel: {fileID: 2086230404601750719} - yesButton: {fileID: 114083312109309574} - noButton: {fileID: 114438238768779492} - narrowScreenWidth: 500 ---- !u!114 &114626590300014596 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1903863982848606} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 - m_ChildAlignment: 4 - m_Spacing: 0 - m_ChildForceExpandWidth: 0 - m_ChildForceExpandHeight: 0 - m_ChildControlWidth: 1 - m_ChildControlHeight: 1 - m_ChildScaleWidth: 0 - m_ChildScaleHeight: 0 - m_ReverseArrangement: 0 ---- !u!1 &1905169721860466 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224945766401846030} - - component: {fileID: 222620863043679912} - - component: {fileID: 114451388216889804} - - component: {fileID: 114370003170116688} - - component: {fileID: 114481890628619012} - - component: {fileID: 114386564521543982} - m_Layer: 5 - m_Name: SelectAllButton - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224945766401846030 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1905169721860466} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224879149458412328} - - {fileID: 224220852933180436} - m_Father: {fileID: 224387572643228028} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 1, y: -16.5} - m_SizeDelta: {x: 113.91, y: 31} - m_Pivot: {x: 0, y: 0.5} ---- !u!222 &222620863043679912 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1905169721860466} - m_CullTransparentMesh: 1 ---- !u!114 &114451388216889804 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1905169721860466} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.955, g: 0.955, b: 0.955, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff773ea42aedd04c8bb96a1fe9a73b8, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114370003170116688 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1905169721860466} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Highlighted - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 114451388216889804} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &114481890628619012 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1905169721860466} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 0 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: 31 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!114 &114386564521543982 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1905169721860466} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: - m_Left: 20 - m_Right: 20 - m_Top: 5 - m_Bottom: 5 - m_ChildAlignment: 0 - m_Spacing: 0 - m_ChildForceExpandWidth: 1 - m_ChildForceExpandHeight: 1 - m_ChildControlWidth: 1 - m_ChildControlHeight: 1 - m_ChildScaleWidth: 0 - m_ChildScaleHeight: 0 - m_ReverseArrangement: 0 ---- !u!1 &1943012010209294 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224731226730921728} - - component: {fileID: 222644920040829442} - - component: {fileID: 114790330541710592} - - component: {fileID: 8980404476085725421} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224731226730921728 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1943012010209294} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224210293626551430} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 20, y: -15.5} - m_SizeDelta: {x: 73.91, y: 21} - m_Pivot: {x: 0, y: 0.5} ---- !u!222 &222644920040829442 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1943012010209294} - m_CullTransparentMesh: 1 ---- !u!114 &114790330541710592 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1943012010209294} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} - m_Name: - m_EditorClassIdentifier: - m_HorizontalFit: 2 - m_VerticalFit: 0 ---- !u!114 &8980404476085725421 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1943012010209294} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Deselect All - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 1 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 0 - m_wordWrappingRatios: 0.4 - m_overflowMode: 0 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 0 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1948947663165792 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224615493904165516} - - component: {fileID: 222082483285537386} - - component: {fileID: 114633891711833786} - - component: {fileID: 114233783704331086} - m_Layer: 5 - m_Name: Separator - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224615493904165516 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1948947663165792} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224180484781794126} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 1} - m_SizeDelta: {x: -14, y: 1} - m_Pivot: {x: 0.5, y: 1} ---- !u!222 &222082483285537386 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1948947663165792} - m_CullTransparentMesh: 1 ---- !u!114 &114633891711833786 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1948947663165792} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.6397059, g: 0.6397059, b: 0.6397059, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 6ff773ea42aedd04c8bb96a1fe9a73b8, type: 3} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!114 &114233783704331086 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1948947663165792} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 1 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: -1 - m_PreferredHeight: -1 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &1956048087500034 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224173451708207988} - - component: {fileID: 222794187976156974} - - component: {fileID: 114295528466655848} - m_Layer: 5 - m_Name: Icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224173451708207988 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1956048087500034} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224612077775479484} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 19, y: 0} - m_SizeDelta: {x: 30, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222794187976156974 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1956048087500034} - m_CullTransparentMesh: 1 ---- !u!114 &114295528466655848 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1956048087500034} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 0 - m_PreserveAspect: 1 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!1 &1987061104836434 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224328148281409894} - - component: {fileID: 222039340858200776} - - component: {fileID: 8145824400761765500} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224328148281409894 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1987061104836434} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 224859091447805236} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &222039340858200776 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1987061104836434} - m_CullTransparentMesh: 1 ---- !u!114 &8145824400761765500 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1987061104836434} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_text: Yes - m_isRightToLeft: 0 - m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSharedMaterials: [] - m_fontMaterial: {fileID: 0} - m_fontMaterials: [] - m_fontColor32: - serializedVersion: 2 - rgba: 4281479730 - m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_enableVertexGradient: 0 - m_colorMode: 3 - m_fontColorGradient: - topLeft: {r: 1, g: 1, b: 1, a: 1} - topRight: {r: 1, g: 1, b: 1, a: 1} - bottomLeft: {r: 1, g: 1, b: 1, a: 1} - bottomRight: {r: 1, g: 1, b: 1, a: 1} - m_fontColorGradientPreset: {fileID: 0} - m_spriteAsset: {fileID: 0} - m_tintAllSprites: 0 - m_StyleSheet: {fileID: 0} - m_TextStyleHashCode: -1183493901 - m_overrideHtmlColors: 0 - m_faceColor: - serializedVersion: 2 - rgba: 4294967295 - m_fontSize: 14 - m_fontSizeBase: 14 - m_fontWeight: 400 - m_enableAutoSizing: 0 - m_fontSizeMin: 10 - m_fontSizeMax: 40 - m_fontStyle: 0 - m_HorizontalAlignment: 2 - m_VerticalAlignment: 512 - m_textAlignment: 65535 - m_characterSpacing: 0 - m_wordSpacing: 0 - m_lineSpacing: 0 - m_lineSpacingMax: 0 - m_paragraphSpacing: 0 - m_charWidthMaxAdj: 0 - m_enableWordWrapping: 1 - m_wordWrappingRatios: 0.4 - m_overflowMode: 3 - m_linkedTextComponent: {fileID: 0} - parentLinkedComponent: {fileID: 0} - m_enableKerning: 0 - m_enableExtraPadding: 0 - checkPaddingRequired: 0 - m_isRichText: 1 - m_parseCtrlCharacters: 0 - m_isOrthographic: 1 - m_isCullingEnabled: 0 - m_horizontalMapping: 0 - m_verticalMapping: 0 - m_uvLineOffset: 0 - m_geometrySortingOrder: 0 - m_IsTextObjectScaleStatic: 0 - m_VertexBufferAutoSizeReduction: 0 - m_useMaxVisibleDescender: 1 - m_pageToDisplay: 1 - m_margin: {x: 0, y: 0, z: 0, w: 0} - m_isUsingLegacyAnimationComponent: 0 - m_isVolumetricText: 0 - m_hasFontAssetChanged: 0 - m_baseMaterial: {fileID: 0} - m_maskOffset: {x: 0, y: 0, z: 0, w: 0} ---- !u!1 &1993517787700380 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 224612077775479484} - - component: {fileID: 114368152801369894} - m_Layer: 5 - m_Name: DeletedItem1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &224612077775479484 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1993517787700380} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224173451708207988} - - {fileID: 224386294048010138} - m_Father: {fileID: 224883121368338124} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 20, y: -36} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0, y: 1} ---- !u!114 &114368152801369894 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1993517787700380} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreLayout: 0 - m_MinWidth: -1 - m_MinHeight: -1 - m_PreferredWidth: 465 - m_PreferredHeight: 30 - m_FlexibleWidth: -1 - m_FlexibleHeight: -1 - m_LayoutPriority: 1 ---- !u!1 &2721668121456258945 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 7602105929162123153} - - component: {fileID: 1379906953475998802} - m_Layer: 0 - m_Name: Text Area - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &7602105929162123153 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2721668121456258945} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000011331339624} - m_Father: {fileID: 224000010349777518} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -0.5} - m_SizeDelta: {x: -14, y: -1} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1379906953475998802 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2721668121456258945} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 3312d7739989d2b4e91e6319e9a96d76, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: {x: -5, y: 1, z: -5, w: 1} - m_Softness: {x: 0, y: 0} ---- !u!1 &5796492058344608791 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4955060142277728908} - - component: {fileID: 2284612811805117618} - m_Layer: 0 - m_Name: Text Area - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &4955060142277728908 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5796492058344608791} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224000012745327036} - - {fileID: 224000014261500554} - m_Father: {fileID: 224000014003395874} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -0.5} - m_SizeDelta: {x: -14, y: -1} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &2284612811805117618 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5796492058344608791} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 3312d7739989d2b4e91e6319e9a96d76, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: {x: -5, y: 1, z: -5, w: 1} - m_Softness: {x: 0, y: 0} ---- !u!1 &7260751285739957388 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1064615849438678541} - - component: {fileID: 486654949748422529} - m_Layer: 0 - m_Name: Text Area - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1064615849438678541 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7260751285739957388} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 224629007158093994} - m_Father: {fileID: 224600721066704016} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: -8, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &486654949748422529 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7260751285739957388} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 3312d7739989d2b4e91e6319e9a96d76, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: {x: -2, y: 1, z: -2, w: 2} - m_Softness: {x: 0, y: 0} diff --git a/Assets/Plugins/SimpleFileBrowser/Resources/SimpleFileBrowserCanvas.prefab.meta b/Assets/Plugins/SimpleFileBrowser/Resources/SimpleFileBrowserCanvas.prefab.meta deleted file mode 100644 index dca5453..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Resources/SimpleFileBrowserCanvas.prefab.meta +++ /dev/null @@ -1,15 +0,0 @@ -fileFormatVersion: 2 -guid: 9ea2606f8fddead46aabb7adb3d8d434 -timeCreated: 1479415546 -licenseType: Store -NativeFormatImporter: - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Resources/SimpleFileBrowserCanvas.prefab - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts.meta b/Assets/Plugins/SimpleFileBrowser/Scripts.meta deleted file mode 100644 index 38b6a00..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: be37f3e38d135f94e9d78c79ef89d303 -folderAsset: yes -timeCreated: 1479413886 -licenseType: Store -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/EventSystemHandler.cs b/Assets/Plugins/SimpleFileBrowser/Scripts/EventSystemHandler.cs deleted file mode 100644 index 297c9ae..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/EventSystemHandler.cs +++ /dev/null @@ -1,71 +0,0 @@ -using UnityEngine; -using UnityEngine.EventSystems; -using UnityEngine.SceneManagement; -#if ENABLE_INPUT_SYSTEM && !ENABLE_LEGACY_INPUT_MANAGER -using UnityEngine.InputSystem.UI; -#endif - -namespace SimpleFileBrowser -{ - // Avoid multiple EventSystems in the scene by activating the embedded EventSystem only if one doesn't already exist in the scene - [DefaultExecutionOrder( 1000 )] - public class EventSystemHandler : MonoBehaviour - { - [SerializeField] - private GameObject embeddedEventSystem; - -#if ENABLE_INPUT_SYSTEM && !ENABLE_LEGACY_INPUT_MANAGER - private void Awake() - { - StandaloneInputModule legacyInputModule = embeddedEventSystem.GetComponent(); - if( legacyInputModule ) - { - DestroyImmediate( legacyInputModule ); - embeddedEventSystem.AddComponent(); - } - } -#endif - - private void OnEnable() - { - SceneManager.sceneLoaded -= OnSceneLoaded; - SceneManager.sceneLoaded += OnSceneLoaded; - SceneManager.sceneUnloaded -= OnSceneUnloaded; - SceneManager.sceneUnloaded += OnSceneUnloaded; - - ActivateEventSystemIfNeeded(); - } - - private void OnDisable() - { - SceneManager.sceneLoaded -= OnSceneLoaded; - SceneManager.sceneUnloaded -= OnSceneUnloaded; - - DeactivateEventSystem(); - } - - private void OnSceneLoaded( Scene scene, LoadSceneMode mode ) - { - DeactivateEventSystem(); - ActivateEventSystemIfNeeded(); - } - - private void OnSceneUnloaded( Scene current ) - { - // Deactivate the embedded EventSystem before changing scenes because the new scene might have its own EventSystem - DeactivateEventSystem(); - } - - private void ActivateEventSystemIfNeeded() - { - if( embeddedEventSystem && !EventSystem.current ) - embeddedEventSystem.SetActive( true ); - } - - private void DeactivateEventSystem() - { - if( embeddedEventSystem ) - embeddedEventSystem.SetActive( false ); - } - } -} \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/EventSystemHandler.cs.meta b/Assets/Plugins/SimpleFileBrowser/Scripts/EventSystemHandler.cs.meta deleted file mode 100644 index f9c236f..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/EventSystemHandler.cs.meta +++ /dev/null @@ -1,19 +0,0 @@ -fileFormatVersion: 2 -guid: 0868341868a4a4641b4d272d2fc5f538 -timeCreated: 1658741613 -licenseType: Store -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Scripts/EventSystemHandler.cs - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowser.cs b/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowser.cs deleted file mode 100644 index 30777a9..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowser.cs +++ /dev/null @@ -1,3118 +0,0 @@ -//#define WIN_DIR_CHECK_WITHOUT_TIMEOUT // When uncommented, Directory.Exists won't be wrapped inside a Task/Thread on Windows but we won't be able to set a timeout for unreachable directories/drives - -using UnityEngine; -using UnityEngine.EventSystems; -using UnityEngine.UI; -using System; -using System.IO; -using System.Collections; -using System.Collections.Generic; -using System.Globalization; -using System.Text; -using TMPro; -#if ENABLE_INPUT_SYSTEM && !ENABLE_LEGACY_INPUT_MANAGER -using UnityEngine.InputSystem; -#endif - -namespace SimpleFileBrowser -{ - public class FileBrowser : MonoBehaviour, IListViewAdapter - { - public enum Permission { Denied = 0, Granted = 1, ShouldAsk = 2 }; - public enum PickMode { Files = 0, Folders = 1, FilesAndFolders = 2 }; - - #region Structs -#pragma warning disable 0649 - [Serializable] - private struct FiletypeIcon - { - public string extension; - public Sprite icon; - } - - [Serializable] - private struct QuickLink - { -#if UNITY_EDITOR || ( !UNITY_WSA && !UNITY_WSA_10_0 ) - public Environment.SpecialFolder target; -#endif - public string name; - public Sprite icon; - } -#pragma warning restore 0649 - #endregion - - #region Inner Classes - public class Filter - { - public readonly string name; - public readonly string[] extensions; - public readonly HashSet extensionsSet; - public readonly string defaultExtension; - public readonly bool allExtensionsHaveSingleSuffix; // 'false' when some extensions have multiple suffixes like ".tar.gz" - - internal Filter( string name ) - { - this.name = name; - extensions = null; - extensionsSet = null; - defaultExtension = null; - allExtensionsHaveSingleSuffix = true; - } - - public Filter( string name, string extension ) - { - this.name = name; - - extension = extension.ToLowerInvariant(); - if( extension[0] != '.' ) - extension = "." + extension; - - extensions = new string[1] { extension }; - extensionsSet = new HashSet() { extension }; - defaultExtension = extension; - allExtensionsHaveSingleSuffix = ( extension.LastIndexOf( '.' ) == 0 ); - } - - public Filter( string name, params string[] extensions ) - { - this.name = name; - allExtensionsHaveSingleSuffix = true; - - for( int i = 0; i < extensions.Length; i++ ) - { - extensions[i] = extensions[i].ToLowerInvariant(); - if( extensions[i][0] != '.' ) - extensions[i] = "." + extensions[i]; - - allExtensionsHaveSingleSuffix &= ( extensions[i].LastIndexOf( '.' ) == 0 ); - } - - this.extensions = extensions; - extensionsSet = new HashSet( extensions ); - defaultExtension = extensions[0]; - } - - public bool MatchesExtension( string extension, bool extensionMayHaveMultipleSuffixes ) - { - if( extensionsSet == null || extensionsSet.Contains( extension ) ) - return true; - - // When the provided extension may have multiple suffixes (e.g. ".tar.gz"), check if it ends with any of the - // extensions in this filter (e.g. return true when this Filter has ".gz" and the provided extension is ".tar.gz") - if( extensionMayHaveMultipleSuffixes ) - { - for( int i = 0; i < extensions.Length; i++ ) - { - if( extension.EndsWith( extensions[i], StringComparison.Ordinal ) ) - { - extensionsSet.Add( extension ); - return true; - } - } - } - - return false; - } - - public override string ToString() - { - string result = string.Empty; - - if( name != null ) - result = name; - - if( extensions != null ) - { - if( name != null ) - result += " ("; - - for( int i = 0; i < extensions.Length; i++ ) - { - if( i > 0 ) - result += ", " + extensions[i]; - else - result += extensions[i]; - } - - if( name != null ) - result += ")"; - } - - return result; - } - } - #endregion - - #region Constants - private const int FILENAME_INPUT_FIELD_MAX_FILE_COUNT = 7; - private const string SAF_PICK_FOLDER_QUICK_LINK_PATH = "SAF_PICK_FOLDER"; - #endregion - - #region Static Variables - public static bool IsOpen { get; private set; } - - public static bool Success { get; private set; } - public static string[] Result { get; private set; } - - [SerializeField] - private UISkin m_skin; -#if UNITY_EDITOR - private UISkin prevSkin; -#endif - private int m_skinVersion = 0; - private int m_skinPrevFontSize; - private Sprite m_skinPrevDriveIcon, m_skinPrevFolderIcon; - public static UISkin Skin - { - get { return Instance.m_skin; } - set - { - if( value && Instance.m_skin != value ) - { - Instance.m_skin = value; - Instance.m_skinVersion = Instance.m_skin.Version; - Instance.RefreshSkin(); - } - } - } - - private static bool m_askPermissions = true; - public static bool AskPermissions - { - get { return m_askPermissions; } - set { m_askPermissions = value; } - } - - private static bool m_singleClickMode = false; - public static bool SingleClickMode - { - get { return m_singleClickMode; } - set { m_singleClickMode = value; } - } - - private FileSystemEntryFilter m_displayedEntriesFilter; - public static event FileSystemEntryFilter DisplayedEntriesFilter - { - add - { - Instance.m_displayedEntriesFilter += value; - m_instance.RefreshFiles( false ); - } - remove - { - Instance.m_displayedEntriesFilter -= value; - m_instance.RefreshFiles( false ); - } - } - - private static bool m_showFileOverwriteDialog = true; - public static bool ShowFileOverwriteDialog - { - get { return m_showFileOverwriteDialog; } - set { m_showFileOverwriteDialog = value; } - } - - private static bool m_checkWriteAccessToDestinationDirectory = false; - public static bool CheckWriteAccessToDestinationDirectory - { - get { return m_checkWriteAccessToDestinationDirectory; } - set { m_checkWriteAccessToDestinationDirectory = value; } - } - - public static bool CanDeleteFiles = true; - public static bool CanRenameFiles = true; - -#if UNITY_EDITOR || ( !UNITY_ANDROID && !UNITY_IOS && !UNITY_WSA && !UNITY_WSA_10_0 ) - private static float m_drivesRefreshInterval = 5f; -#else - private static float m_drivesRefreshInterval = -1f; -#endif - public static float DrivesRefreshInterval - { - get { return m_drivesRefreshInterval; } - set { m_drivesRefreshInterval = value; } - } - - public static bool ShowHiddenFiles - { - get { return Instance.showHiddenFilesToggle.isOn; } - set { Instance.showHiddenFilesToggle.isOn = value; } - } - - private bool m_displayHiddenFilesToggle = true; - public static bool DisplayHiddenFilesToggle - { - get { return Instance.m_displayHiddenFilesToggle; } - set - { - if( Instance.m_displayHiddenFilesToggle != value ) - { - m_instance.m_displayHiddenFilesToggle = value; - - if( !value ) - m_instance.showHiddenFilesToggle.gameObject.SetActive( false ); - else if( m_instance.windowTR.sizeDelta.x >= m_instance.narrowScreenWidth ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( !FileBrowserHelpers.ShouldUseSAF ) -#endif - m_instance.showHiddenFilesToggle.gameObject.SetActive( true ); - } - } - } - } - - private string m_allFilesFilterText = "All Files (.*)"; - public static string AllFilesFilterText - { - get { return Instance.m_allFilesFilterText; } - set - { - if( Instance.m_allFilesFilterText != value ) - { - string oldValue = m_instance.m_allFilesFilterText; - m_instance.m_allFilesFilterText = value; - - Filter oldAllFilesFilter = m_instance.allFilesFilter; - m_instance.allFilesFilter = new Filter( value ); - - if( m_instance.filters.Count > 0 && m_instance.filters[0] == oldAllFilesFilter ) - m_instance.filters[0] = m_instance.allFilesFilter; - - if( m_instance.filtersDropdown.options[0].text == oldValue ) - { - m_instance.filtersDropdown.options[0].text = value; - m_instance.filtersDropdown.RefreshShownValue(); - } - } - } - } - - private string m_foldersFilterText = "Folders"; - public static string FoldersFilterText - { - get { return Instance.m_foldersFilterText; } - set - { - if( Instance.m_foldersFilterText != value ) - { - string oldValue = m_instance.m_foldersFilterText; - m_instance.m_foldersFilterText = value; - - if( m_instance.filtersDropdown.options[0].text == oldValue ) - { - m_instance.filtersDropdown.options[0].text = value; - m_instance.filtersDropdown.RefreshShownValue(); - } - } - } - } - - private string m_pickFolderQuickLinkText = "Browse..."; - public static string PickFolderQuickLinkText - { - get { return Instance.m_pickFolderQuickLinkText; } - set - { - if( Instance.m_pickFolderQuickLinkText != value ) - { - m_instance.m_pickFolderQuickLinkText = value; - - for( int i = 0; i < m_instance.allQuickLinks.Count; i++ ) - { - FileBrowserQuickLink quickLink = m_instance.allQuickLinks[i]; - if( quickLink && quickLink.TargetPath == SAF_PICK_FOLDER_QUICK_LINK_PATH ) - { - quickLink.SetQuickLink( Skin.DriveIcon, value, SAF_PICK_FOLDER_QUICK_LINK_PATH ); - break; - } - } - } - } - } - - private static FileBrowser m_instance = null; - public static FileBrowser Instance - { - get - { - if( !m_instance ) - { - m_instance = Instantiate( Resources.Load( "SimpleFileBrowserCanvas" ) ).GetComponent(); - DontDestroyOnLoad( m_instance.gameObject ); - m_instance.gameObject.SetActive( false ); - } - - return m_instance; - } - } - #endregion - - #region Variables - [Header( "Settings" )] - [SerializeField] - internal int minWidth = 380; - [SerializeField] - internal int minHeight = 300; - - [SerializeField] - private float narrowScreenWidth = 380f; - - [SerializeField] - private float quickLinksMaxWidthPercentage = 0.4f; - - [SerializeField] - private bool sortFilesByName = true; - - [SerializeField, UnityEngine.Serialization.FormerlySerializedAs( "excludeExtensions" )] - private string[] excludedExtensions; - -#pragma warning disable 0414 - [SerializeField] - private QuickLink[] quickLinks; - private bool quickLinksInitialized; -#pragma warning restore 0414 - - private readonly HashSet excludedExtensionsSet = new HashSet(); - - [SerializeField] - private bool generateQuickLinksForDrives = true; - - [SerializeField] - private bool showResizeCursor = true; - - [Header( "Internal References" )] - - [SerializeField] - private FileBrowserMovement window; - private RectTransform windowTR; - private VerticalLayoutGroup windowLayoutGroup; - - [SerializeField] - private LayoutElement[] windowResponsiveRows; - - [SerializeField] - private RectTransform topViewNarrowScreen; - - [SerializeField] - private Image middleView; - - [SerializeField] - private RectTransform middleViewQuickLinks; - private Vector2 middleViewQuickLinksOriginalSize; - - [SerializeField] - private RectTransform middleViewFiles; - - [SerializeField] - private Image middleViewSeparator; - - [SerializeField] - private FileBrowserItem itemPrefab; - private readonly List allItems = new List( 16 ); - - [SerializeField] - private FileBrowserQuickLink quickLinkPrefab; - private readonly List allQuickLinks = new List( 8 ); - - [SerializeField] - private TextMeshProUGUI titleText; - - [SerializeField] - private Image titleBackground; - - [SerializeField] - private Button backButton; - - [SerializeField] - private Button forwardButton; - - [SerializeField] - private Button upButton; - - [SerializeField] - private Button moreOptionsButton; - - [SerializeField] - private TMP_InputField pathInputField; - - [SerializeField] - private RectTransform pathInputFieldSlotTop; - - [SerializeField] - private RectTransform pathInputFieldSlotBottom; - - [SerializeField] - private TMP_InputField searchInputField; - - [SerializeField] - private RectTransform quickLinksContainer; - - [SerializeField] - private ScrollRect quickLinksScrollRect; - - [SerializeField] - private RectTransform filesContainer; - - [SerializeField] - private ScrollRect filesScrollRect; - - [SerializeField] - private RecycledListView listView; - - [SerializeField] - private TMP_InputField filenameInputField; - - [SerializeField] - private Image filenameImage; - - [SerializeField] - private TMP_Dropdown filtersDropdown; - private RectTransform filtersDropdownContainer; - private TMP_Text filterItemTemplate; - - [SerializeField] - private Toggle showHiddenFilesToggle; - - [SerializeField] - private Button submitButton; - - [SerializeField] - private TextMeshProUGUI submitButtonText; - - [SerializeField] - private Button cancelButton; - - [SerializeField] - private Button[] allButtons; - - [SerializeField] - private RectTransform moreOptionsContextMenuPosition; - - [SerializeField] - private FileBrowserRenamedItem renameItem; - - [SerializeField] - private FileBrowserContextMenu contextMenu; - - [SerializeField] - private FileBrowserFileOperationConfirmationPanel fileOperationConfirmationPanel; - - [SerializeField] - private FileBrowserAccessRestrictedPanel accessRestrictedPanel; - - [SerializeField] - private FileBrowserCursorHandler resizeCursorHandler; - - internal RectTransform rectTransform; - private Canvas canvas; - - private FileAttributes ignoredFileAttributes = FileAttributes.System; - - private FileSystemEntry[] allFileEntries; - private readonly List validFileEntries = new List(); - private readonly List selectedFileEntries = new List( 4 ); - private readonly List pendingFileEntrySelection = new List(); - - private readonly List submittedFileEntryPaths = new List( 4 ); - private readonly List submittedFolderPaths = new List( 4 ); // Used to check if all destination folders have write access - private readonly List submittedFileEntriesToOverwrite = new List( 4 ); // Existing files selected by the user in save mode - -#pragma warning disable 0414 // Value is assigned but never used on Android & iOS - private int multiSelectionPivotFileEntry; -#pragma warning restore 0414 - private StringBuilder multiSelectionFilenameBuilder; - - private readonly List filters = new List(); - private Filter allFilesFilter; - private readonly List filterLabels = new List( 4 ); - - private bool showAllFilesFilter = true; - - // Single suffix: ".mp4", ".txt", etc. - // Multiple suffixes: ".tar.gz", etc. - private bool allFiltersHaveSingleSuffix = true; - private bool allExcludedExtensionsHaveSingleSuffix = true; - // When its value is 'true', file extensions will be handled in a more optimized way - private bool AllExtensionsHaveSingleSuffix { get { return allFiltersHaveSingleSuffix && allExcludedExtensionsHaveSingleSuffix && m_skin.AllIconExtensionsHaveSingleSuffix; } } - - private string defaultInitialPath; - - private int currentPathIndex = -1; - private readonly List pathsFollowed = new List(); - - private HashSet invalidFilenameChars; - - private float drivesNextRefreshTime; -#if !UNITY_EDITOR && UNITY_ANDROID - private string driveQuickLinks; -#else - private string[] driveQuickLinks; -#endif - private int numberOfDriveQuickLinks; - -#if !WIN_DIR_CHECK_WITHOUT_TIMEOUT && ( UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN ) - private readonly List timedOutDirectoryExistsRequests = new List( 2 ); -#endif - - private bool canvasDimensionsChanged; - - private readonly CompareInfo textComparer = new CultureInfo( "en-US" ).CompareInfo; - private readonly CompareOptions textCompareOptions = CompareOptions.IgnoreCase | CompareOptions.IgnoreNonSpace; - - // Required in RefreshFiles() function - private PointerEventData nullPointerEventData; - #endregion - - #region Properties - private string m_currentPath = string.Empty; - private string CurrentPath - { - get { return m_currentPath; } - set - { - if( value != null ) - { - value = value.Trim(); -#if !UNITY_EDITOR && UNITY_ANDROID - if( !FileBrowserHelpers.ShouldUseSAFForPath( value ) ) -#endif - value = GetPathWithoutTrailingDirectorySeparator( value ); - } - - if( string.IsNullOrEmpty( value ) ) - { - pathInputField.text = m_currentPath; - return; - } - - if( m_currentPath != value ) - { - if( !FileBrowserHelpers.DirectoryExists( value ) ) - { - pathInputField.text = m_currentPath; - return; - } - - m_currentPath = value; - pathInputField.text = m_currentPath; - - if( currentPathIndex == -1 || pathsFollowed[currentPathIndex] != m_currentPath ) - { - currentPathIndex++; - if( currentPathIndex < pathsFollowed.Count ) - { - pathsFollowed[currentPathIndex] = value; - for( int i = pathsFollowed.Count - 1; i >= currentPathIndex + 1; i-- ) - pathsFollowed.RemoveAt( i ); - } - else - pathsFollowed.Add( m_currentPath ); - } - - backButton.interactable = currentPathIndex > 0; - forwardButton.interactable = currentPathIndex < pathsFollowed.Count - 1; -#if !UNITY_EDITOR && UNITY_ANDROID - if( FileBrowserHelpers.ShouldUseSAF ) - { - string parentPath = FileBrowserHelpers.GetDirectoryName( m_currentPath ); - upButton.interactable = !string.IsNullOrEmpty( parentPath ) && ( FileBrowserHelpers.ShouldUseSAFForPath( parentPath ) || FileBrowserHelpers.DirectoryExists( parentPath ) ); // DirectoryExists: Directory may not be accessible on Android 10+, this function checks that - } - else -#endif - { - try // When "C:/" or "C:" is typed instead of "C:\", an exception is thrown - { - upButton.interactable = Directory.GetParent( m_currentPath ) != null; - } - catch - { - upButton.interactable = false; - } - } - - m_searchString = string.Empty; - searchInputField.text = m_searchString; - - multiSelectionPivotFileEntry = 0; - filesScrollRect.verticalNormalizedPosition = 1; - - filenameImage.color = m_skin.InputFieldNormalBackgroundColor; - if( m_pickerMode != PickMode.Files ) - { - filenameInputField.text = string.Empty; - filenameInputField.interactable = true; - } - - // If a quick link points to this directory, highlight it -#if !UNITY_EDITOR && UNITY_ANDROID - // Path strings aren't deterministic on Storage Access Framework but the paths' absolute parts usually are - if( FileBrowserHelpers.ShouldUseSAFForPath( m_currentPath ) ) - { - int SAFAbsolutePathSeparatorIndex = m_currentPath.LastIndexOf( '/' ); - if( SAFAbsolutePathSeparatorIndex >= 0 ) - { - string absoluteSAFPath = m_currentPath.Substring( SAFAbsolutePathSeparatorIndex ); - for( int i = 0; i < allQuickLinks.Count; i++ ) - allQuickLinks[i].SetSelected( allQuickLinks[i].TargetPath == m_currentPath || allQuickLinks[i].TargetPath.EndsWith( absoluteSAFPath ) ); - } - else - { - for( int i = 0; i < allQuickLinks.Count; i++ ) - allQuickLinks[i].SetSelected( allQuickLinks[i].TargetPath == m_currentPath ); - } - } - else -#endif - { - for( int i = 0; i < allQuickLinks.Count; i++ ) - allQuickLinks[i].SetSelected( allQuickLinks[i].TargetPath == m_currentPath ); - } - } - - m_multiSelectionToggleSelectionMode = false; - RefreshFiles(true, false); - } - } - - private string m_searchString = string.Empty; - private string SearchString - { - get { return m_searchString; } - set - { - if( m_searchString != value ) - { - m_searchString = value; - searchInputField.text = m_searchString; - - RefreshFiles( false ); - } - } - } - - private SearchPredicate m_customSearchHandler; - public static event SearchPredicate CustomSearchHandler - { - add - { - Instance.m_customSearchHandler += value; - m_instance.RefreshFiles(false); - } - remove - { - Instance.m_customSearchHandler -= value; - m_instance.RefreshFiles(false); - } - } - - private bool m_acceptNonExistingFilename = false; // Is set to true when showing save dialog for Files or FilesAndFolders, false otherwise - private bool AcceptNonExistingFilename - { - get { return m_acceptNonExistingFilename; } - set { m_acceptNonExistingFilename = value; } - } - - private PickMode m_pickerMode = PickMode.Files; - internal PickMode PickerMode - { - get { return m_pickerMode; } - private set - { - m_pickerMode = value; - - if( m_pickerMode == PickMode.Folders ) - { - filtersDropdown.options[0].text = FoldersFilterText; - filtersDropdown.value = 0; - filtersDropdown.interactable = false; - } - else - { - filtersDropdown.options[0].text = filters[0].ToString(); - filtersDropdown.interactable = true; - } - - filtersDropdown.RefreshShownValue(); - - TextMeshProUGUI placeholder = filenameInputField.placeholder as TextMeshProUGUI; - if( placeholder ) - placeholder.gameObject.SetActive( m_pickerMode != PickMode.Folders ); - } - } - - private bool m_allowMultiSelection; - internal bool AllowMultiSelection - { - get { return m_allowMultiSelection; } - private set { m_allowMultiSelection = value; } - } - - private bool m_multiSelectionToggleSelectionMode; - internal bool MultiSelectionToggleSelectionMode - { - get { return m_multiSelectionToggleSelectionMode; } - private set - { - if( m_multiSelectionToggleSelectionMode != value ) - { - m_multiSelectionToggleSelectionMode = value; - - for( int i = 0; i < allItems.Count; i++ ) - { - if( allItems[i].gameObject.activeSelf ) - allItems[i].SetSelected( selectedFileEntries.Contains( allItems[i].Position ) ); - } - } - } - } - - private string Title - { - get { return titleText.text; } - set { titleText.text = value; } - } - - private string SubmitButtonText - { - get { return submitButtonText.text; } - set { submitButtonText.text = value; } - } - - private string LastBrowsedFolder - { - get { return PlayerPrefs.GetString( "FBLastPath", null ); } - set { PlayerPrefs.SetString( "FBLastPath", value ); } - } - #endregion - - #region Delegates - public delegate void OnSuccess( string[] paths ); - public delegate void OnCancel(); - public delegate bool FileSystemEntryFilter( FileSystemEntry entry ); - public delegate bool SearchPredicate(FileSystemEntry entry, string searchTerm); - public delegate void PermissionCallback( Permission permission ); -#if UNITY_EDITOR || UNITY_ANDROID - public delegate void AndroidSAFDirectoryPickCallback( string rawUri, string name ); -#endif - - private OnSuccess onSuccess; - private OnCancel onCancel; - #endregion - - #region Messages - private void Awake() - { - m_instance = this; - - canvas = GetComponent(); - rectTransform = (RectTransform) transform; - windowTR = (RectTransform) window.transform; - windowLayoutGroup = window.GetComponent(); - filtersDropdownContainer = filtersDropdown.template; - filterItemTemplate = filtersDropdown.itemText; - - middleViewQuickLinksOriginalSize = middleViewQuickLinks.sizeDelta; - - nullPointerEventData = new PointerEventData( null ); - -#if !UNITY_EDITOR && ( UNITY_ANDROID || UNITY_IOS || UNITY_WSA || UNITY_WSA_10_0 ) - defaultInitialPath = Application.persistentDataPath; -#else - defaultInitialPath = Environment.GetFolderPath( Environment.SpecialFolder.MyDocuments ); -#endif - -#if !UNITY_EDITOR && UNITY_ANDROID - if( FileBrowserHelpers.ShouldUseSAF ) - { - // These UI elements have no use in Storage Access Framework mode (Android 10+) - pathInputField.gameObject.SetActive( false ); - showHiddenFilesToggle.gameObject.SetActive( false ); - } -#endif - - SetExcludedExtensions( excludedExtensions ); - - backButton.interactable = false; - forwardButton.interactable = false; - upButton.interactable = false; - - backButton.onClick.AddListener( OnBackButtonClicked ); - forwardButton.onClick.AddListener( OnForwardButtonClicked ); - upButton.onClick.AddListener( OnUpButtonClicked ); - moreOptionsButton.onClick.AddListener( OnMoreOptionsButtonClicked ); - submitButton.onClick.AddListener( OnSubmitButtonClicked ); - cancelButton.onClick.AddListener( OnCancelButtonClicked ); - pathInputField.onEndEdit.AddListener( OnPathChanged ); - searchInputField.onValueChanged.AddListener( OnSearchStringChanged ); - filenameInputField.onSubmit.AddListener( ( value ) => OnSubmitButtonClicked() ); - filenameInputField.onEndEdit.AddListener( ( value ) => ResetInputFieldTextPosition( filenameInputField ) ); - filenameInputField.onValueChanged.AddListener( OnFilenameInputChanged ); - filtersDropdown.onValueChanged.AddListener( OnFilterChanged ); - showHiddenFilesToggle.onValueChanged.AddListener( OnShowHiddenFilesToggleChanged ); - - allFilesFilter = new Filter( AllFilesFilterText ); - filters.Add( allFilesFilter ); - filterLabels.Add( allFilesFilter.ToString() ); - - invalidFilenameChars = new HashSet( Path.GetInvalidFileNameChars() ) - { - Path.DirectorySeparatorChar, - Path.AltDirectorySeparatorChar - }; - - window.Initialize( this ); - listView.SetAdapter( this ); - - // Refresh the skin immediately - m_skinVersion = m_skin.Version; - RefreshSkin(); - - if( !showResizeCursor ) - Destroy( resizeCursorHandler ); - -#if ENABLE_INPUT_SYSTEM && !ENABLE_LEGACY_INPUT_MANAGER - // On new Input System, scroll sensitivity is much higher than legacy Input system - filesScrollRect.scrollSensitivity *= 0.25f; - quickLinksContainer.GetComponentInParent().scrollSensitivity *= 0.25f; - filtersDropdownContainer.GetComponent().scrollSensitivity *= 0.25f; -#endif - } - - private void OnRectTransformDimensionsChange() - { - canvasDimensionsChanged = true; - } - -#if UNITY_EDITOR - protected virtual void OnValidate() - { - // Refresh the skin in the next Update if it is changed via Unity Inspector at runtime - if( UnityEditor.EditorApplication.isPlaying && m_skin != prevSkin ) - { - if( !m_skin ) // Don't allow null UISkin - m_skin = prevSkin; - else - m_skinVersion = m_skin.Version - 1; - } - } -#endif - - private void Update() - { - if( m_skin && m_skinVersion != m_skin.Version ) - { - m_skinVersion = m_skin.Version; - RefreshSkin(); - -#if UNITY_EDITOR - prevSkin = m_skin; -#endif - } - } - - private void LateUpdate() - { - if( canvasDimensionsChanged ) - { - canvasDimensionsChanged = false; - - Vector2 windowSize = windowTR.sizeDelta; - EnsureWindowIsWithinBounds(); - if( windowTR.sizeDelta != windowSize ) - OnWindowDimensionsChanged( windowTR.sizeDelta ); - - fileOperationConfirmationPanel.OnCanvasDimensionsChanged( rectTransform.sizeDelta ); - - if( contextMenu.gameObject.activeSelf ) - contextMenu.Hide(); - } - -#if UNITY_EDITOR || UNITY_STANDALONE || UNITY_WEBGL || UNITY_WSA || UNITY_WSA_10_0 - // Handle keyboard shortcuts - if( !EventSystem.current.currentSelectedGameObject ) - { -#if ENABLE_INPUT_SYSTEM && !ENABLE_LEGACY_INPUT_MANAGER - if( Keyboard.current != null ) -#endif - { -#if ENABLE_INPUT_SYSTEM && !ENABLE_LEGACY_INPUT_MANAGER - if( Keyboard.current[Key.Delete].wasPressedThisFrame ) -#else - if( Input.GetKeyDown( KeyCode.Delete ) ) -#endif - DeleteSelectedFiles(); - -#if ENABLE_INPUT_SYSTEM && !ENABLE_LEGACY_INPUT_MANAGER - if( Keyboard.current[Key.F2].wasPressedThisFrame ) -#else - if( Input.GetKeyDown( KeyCode.F2 ) ) -#endif - RenameSelectedFile(); - -#if ENABLE_INPUT_SYSTEM && !ENABLE_LEGACY_INPUT_MANAGER - if( Keyboard.current[Key.A].wasPressedThisFrame && IsCtrlKeyHeld() ) -#else - if( Input.GetKeyDown( KeyCode.A ) && IsCtrlKeyHeld() ) -#endif - SelectAllFiles(); - } - } -#endif - - // Refresh drive quick links -#if UNITY_EDITOR || ( !UNITY_IOS && !UNITY_WSA && !UNITY_WSA_10_0 ) -#if !UNITY_EDITOR && UNITY_ANDROID - if( !FileBrowserHelpers.ShouldUseSAF ) -#endif - if( quickLinksInitialized && generateQuickLinksForDrives && m_drivesRefreshInterval >= 0f && Time.realtimeSinceStartup >= drivesNextRefreshTime ) - { - drivesNextRefreshTime = Time.realtimeSinceStartup + m_drivesRefreshInterval; - RefreshDriveQuickLinks(); - } -#endif - } - - private void OnApplicationFocus(bool focus) - { - if (focus) - RefreshFiles(true); - } - #endregion - - #region Interface Methods - OnItemClickedHandler IListViewAdapter.OnItemClicked { get { return null; } set { } } - - int IListViewAdapter.Count { get { return validFileEntries.Count; } } - float IListViewAdapter.ItemHeight { get { return m_skin.FileHeight; } } - - ListItem IListViewAdapter.CreateItem() - { - FileBrowserItem item = (FileBrowserItem) Instantiate( itemPrefab, filesContainer, false ); - item.SetFileBrowser( this, m_skin ); - allItems.Add( item ); - - return item; - } - - void IListViewAdapter.SetItemContent( ListItem item ) - { - FileBrowserItem file = (FileBrowserItem) item; - FileSystemEntry fileInfo = validFileEntries[item.Position]; - - file.SetFile( GetIconForFileEntry( fileInfo ), fileInfo.Name, fileInfo.IsDirectory ); - file.SetSelected( selectedFileEntries.Contains( file.Position ) ); - file.SetHidden( ( fileInfo.Attributes & FileAttributes.Hidden ) == FileAttributes.Hidden ); - } - #endregion - - #region Initialization Functions - private void InitializeQuickLinks() - { - quickLinksInitialized = true; - drivesNextRefreshTime = Time.realtimeSinceStartup + m_drivesRefreshInterval; - FileBrowserQuickLink[] customQuickLinks = ( allQuickLinks.Count > 0 ) ? allQuickLinks.ToArray() : null; - -#if !UNITY_EDITOR && UNITY_ANDROID - if( FileBrowserHelpers.ShouldUseSAF ) - { - AddQuickLink( m_skin.DriveIcon, PickFolderQuickLinkText, SAF_PICK_FOLDER_QUICK_LINK_PATH ); - - try - { - FetchPersistedSAFQuickLinks(); - } - catch( Exception e ) - { - Debug.LogException( e ); - } - - return; - } -#endif - - if( generateQuickLinksForDrives ) - { -#if UNITY_EDITOR || ( !UNITY_IOS && !UNITY_WSA && !UNITY_WSA_10_0 ) - RefreshDriveQuickLinks(); -#else - AddQuickLink( m_skin.DriveIcon, "Files", Application.persistentDataPath ); -#endif - -#if UNITY_EDITOR_OSX || ( !UNITY_EDITOR && UNITY_STANDALONE_OSX ) - // Add a quick link for user directory on Mac OS - string userDirectory = Environment.GetFolderPath( Environment.SpecialFolder.MyDocuments ); - if( !string.IsNullOrEmpty( userDirectory ) ) - AddQuickLink( m_skin.DriveIcon, userDirectory.Substring( userDirectory.LastIndexOf( '/' ) + 1 ), userDirectory ); -#endif - } - -#if UNITY_EDITOR || ( !UNITY_ANDROID && !UNITY_WSA && !UNITY_WSA_10_0 ) - for( int i = 0; i < quickLinks.Length; i++ ) - { - QuickLink quickLink = quickLinks[i]; - string quickLinkPath = Environment.GetFolderPath( quickLink.target ); -#if UNITY_EDITOR_OSX || ( !UNITY_EDITOR && UNITY_STANDALONE_OSX ) - // Documents folder must be appended manually on Mac OS - if( quickLink.target == Environment.SpecialFolder.MyDocuments && !string.IsNullOrEmpty( quickLinkPath ) ) - quickLinkPath = Path.Combine( quickLinkPath, "Documents" ); -#endif - - AddQuickLink( quickLink.icon, quickLink.name, quickLinkPath ); - } - - quickLinks = null; -#endif - - // Custom quick links should be placed at the bottom - if( customQuickLinks != null && allQuickLinks.Count > customQuickLinks.Length ) - { - for( int i = 0; i < customQuickLinks.Length; i++ ) - { - allQuickLinks.Remove( customQuickLinks[i] ); - allQuickLinks.Add( customQuickLinks[i] ); - } - - for( int i = 0; i < allQuickLinks.Count; i++ ) - allQuickLinks[i].TransformComponent.anchoredPosition = new Vector2( 0f, -i * m_skin.FileHeight ); - } - } - - private void RefreshDriveQuickLinks() - { - // Check if drives has changed since the last refresh -#if !UNITY_EDITOR && UNITY_ANDROID - string drivesList = FileBrowserHelpers.AJC.CallStatic( "GetExternalDrives", FileBrowserHelpers.Context ); - if( drivesList == driveQuickLinks || ( string.IsNullOrEmpty( drivesList ) && string.IsNullOrEmpty( driveQuickLinks ) ) ) - return; - - driveQuickLinks = drivesList; -#else - string[] drives = Directory.GetLogicalDrives(); - - if( driveQuickLinks != null && drives.Length == driveQuickLinks.Length ) - { - bool drivesListHasntChanged = true; - for( int i = 0; i < drives.Length; i++ ) - { -#if !WIN_DIR_CHECK_WITHOUT_TIMEOUT && ( UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN ) - if( timedOutDirectoryExistsRequests.Contains( drives[i] ) ) - continue; -#endif - - if( drives[i] != driveQuickLinks[i] ) - { - drivesListHasntChanged = false; - break; - } - } - - if( drivesListHasntChanged ) - return; - } - - driveQuickLinks = drives; -#endif - - // Drives has changed, remove previous drive quick links - for( ; numberOfDriveQuickLinks > 0; numberOfDriveQuickLinks-- ) - { - Destroy( allQuickLinks[numberOfDriveQuickLinks - 1].gameObject ); - allQuickLinks.RemoveAt( numberOfDriveQuickLinks - 1 ); - } - - FileBrowserQuickLink[] customQuickLinks = allQuickLinks.Count > 0 ? allQuickLinks.ToArray() : null; - allQuickLinks.Clear(); - - quickLinksContainer.sizeDelta = Vector2.zero; - - // Create drive quick links -#if !UNITY_EDITOR && UNITY_ANDROID - if( drivesList != null && drivesList.Length > 0 ) - { - bool defaultPathInitialized = false; - int driveIndex = 1; - string[] drives = drivesList.Split( ':' ); - for( int i = 0; i < drives.Length; i++ ) - { - try - { - //string driveName = new DirectoryInfo( drives[i] ).Name; - //if( driveName.Length <= 1 ) - //{ - // try - // { - // driveName = Directory.GetParent( drives[i] ).Name + "/" + driveName; - // } - // catch - // { - // driveName = "Drive " + driveIndex++; - // } - //} - - string driveName; - if( !defaultPathInitialized ) - { - defaultInitialPath = drives[i]; - defaultPathInitialized = true; - - driveName = "Primary Drive"; - } - else - { - if( driveIndex == 1 ) - driveName = "External Drive"; - else - driveName = "External Drive " + driveIndex; - - driveIndex++; - } - - if( AddQuickLink( m_skin.DriveIcon, driveName, drives[i] ) ) - numberOfDriveQuickLinks++; - } - catch { } - } - } -#else - for( int i = 0; i < drives.Length; i++ ) - { - if( string.IsNullOrEmpty( drives[i] ) ) - continue; - -#if UNITY_EDITOR_OSX || ( !UNITY_EDITOR && UNITY_STANDALONE_OSX ) - // There are a number of useless drives listed on Mac OS, filter them - if( drives[i] == "/" ) - { - if( AddQuickLink( m_skin.DriveIcon, "Root", drives[i] ) ) - numberOfDriveQuickLinks++; - } - else if( drives[i].StartsWith( "/Volumes/" ) && drives[i] != "/Volumes/Recovery" ) - { - if( AddQuickLink( m_skin.DriveIcon, drives[i].Substring( drives[i].LastIndexOf( '/' ) + 1 ), drives[i] ) ) - numberOfDriveQuickLinks++; - } -#else - if( AddQuickLink( m_skin.DriveIcon, drives[i], drives[i] ) ) - numberOfDriveQuickLinks++; -#endif - } -#endif - - // Reposition custom quick links - if( customQuickLinks != null ) - { - Vector2 anchoredPos = new Vector2( 0f, -quickLinksContainer.sizeDelta.y ); - for( int i = 0; i < customQuickLinks.Length; i++ ) - { - customQuickLinks[i].TransformComponent.anchoredPosition = anchoredPos; - anchoredPos.y -= m_skin.FileHeight; - - allQuickLinks.Add( customQuickLinks[i] ); - } - - quickLinksContainer.sizeDelta = new Vector2( 0f, -anchoredPos.y ); - } - - // Verify that current directory still exists - try - { - if( !string.IsNullOrEmpty( m_currentPath ) && !FileBrowserHelpers.DirectoryExists( m_currentPath ) ) - { - string currentPathRoot = Path.GetPathRoot( m_currentPath ); - if( !string.IsNullOrEmpty( currentPathRoot ) && FileBrowserHelpers.DirectoryExists( currentPathRoot ) ) - CurrentPath = currentPathRoot; - else if( allQuickLinks.Count > 0 ) - CurrentPath = allQuickLinks[0].TargetPath; - } - } - catch { } - } - - private void RefreshSkin() - { - windowLayoutGroup.spacing = m_skin.RowSpacing; - - for( int i = 0; i < windowResponsiveRows.Length; i++ ) - windowResponsiveRows[i].preferredHeight = m_skin.RowHeight; - - moreOptionsContextMenuPosition.anchoredPosition = new Vector2( moreOptionsContextMenuPosition.anchoredPosition.x, -m_skin.RowSpacing ); - - window.GetComponent().color = m_skin.WindowColor; - middleView.color = m_skin.FilesListColor; - middleViewSeparator.color = m_skin.FilesVerticalSeparatorColor; - - titleBackground.color = m_skin.TitleBackgroundColor; - m_skin.ApplyTo( titleText, m_skin.TitleTextColor ); - - backButton.image.color = m_skin.HeaderButtonsColor; - forwardButton.image.color = m_skin.HeaderButtonsColor; - upButton.image.color = m_skin.HeaderButtonsColor; - moreOptionsButton.image.color = m_skin.HeaderButtonsColor; - - backButton.image.sprite = m_skin.HeaderBackButton; - forwardButton.image.sprite = m_skin.HeaderForwardButton; - upButton.image.sprite = m_skin.HeaderUpButton; - moreOptionsButton.image.sprite = m_skin.HeaderContextMenuButton; - - if( resizeCursorHandler ) - { - Image windowResizeGizmo = resizeCursorHandler.GetComponent(); - windowResizeGizmo.color = m_skin.WindowResizeGizmoColor; - windowResizeGizmo.sprite = m_skin.WindowResizeGizmo; - } - - m_skin.ApplyTo( filenameInputField ); - m_skin.ApplyTo( pathInputField ); - m_skin.ApplyTo( searchInputField ); - m_skin.ApplyTo( renameItem.InputField ); - - for( int i = 0; i < allButtons.Length; i++ ) - m_skin.ApplyTo( allButtons[i] ); - - m_skin.ApplyTo( filtersDropdown ); - m_skin.ApplyTo( showHiddenFilesToggle ); - - m_skin.ApplyTo( quickLinksScrollRect.verticalScrollbar ); - m_skin.ApplyTo( filesScrollRect.verticalScrollbar ); - m_skin.ApplyTo( filtersDropdown.template.GetComponent().verticalScrollbar ); - - for( int i = 0; i < allQuickLinks.Count; i++ ) - { - allQuickLinks[i].OnSkinRefreshed( m_skin ); - allQuickLinks[i].TransformComponent.anchoredPosition = new Vector2( 0f, allQuickLinks[i].TransformComponent.GetSiblingIndex() * -m_skin.FileHeight ); - - if( allQuickLinks[i].Icon.sprite == m_skinPrevDriveIcon ) - allQuickLinks[i].Icon.sprite = m_skin.DriveIcon; - else if( allQuickLinks[i].Icon.sprite == m_skinPrevFolderIcon ) - allQuickLinks[i].Icon.sprite = m_skin.FolderIcon; - } - - quickLinksContainer.sizeDelta = new Vector2( 0f, allQuickLinks.Count * m_skin.FileHeight ); - - for( int i = 0; i < allItems.Count; i++ ) - allItems[i].OnSkinRefreshed( m_skin ); - - renameItem.TransformComponent.sizeDelta = new Vector2( renameItem.TransformComponent.sizeDelta.x, m_skin.FileHeight ); - - contextMenu.RefreshSkin( m_skin ); - fileOperationConfirmationPanel.RefreshSkin( m_skin ); - accessRestrictedPanel.RefreshSkin( m_skin ); - - if( m_skin.FontSize != m_skinPrevFontSize ) - RefreshFiltersDropdownWidth(); - - listView.OnSkinRefreshed(); - - m_skinPrevFontSize = m_skin.FontSize; - m_skinPrevDriveIcon = m_skin.DriveIcon; - m_skinPrevFolderIcon = m_skin.FolderIcon; - } - #endregion - - #region Button Events - private void OnBackButtonClicked() - { - if( currentPathIndex > 0 ) - CurrentPath = pathsFollowed[--currentPathIndex]; - } - - private void OnForwardButtonClicked() - { - if( currentPathIndex < pathsFollowed.Count - 1 ) - CurrentPath = pathsFollowed[++currentPathIndex]; - } - - private void OnUpButtonClicked() - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( FileBrowserHelpers.ShouldUseSAF ) - { - string parentPath = FileBrowserHelpers.GetDirectoryName( m_currentPath ); - if( !string.IsNullOrEmpty( parentPath ) && ( FileBrowserHelpers.ShouldUseSAFForPath( parentPath ) || FileBrowserHelpers.DirectoryExists( parentPath ) ) ) // DirectoryExists: Directory may not be accessible on Android 10+, this function checks that - CurrentPath = parentPath; - } - else -#endif - { - try // When "C:/" or "C:" is typed instead of "C:\", an exception is thrown - { - DirectoryInfo parentPath = Directory.GetParent( m_currentPath ); - if( parentPath != null ) - CurrentPath = parentPath.FullName; - } - catch - { - } - } - } - - private void OnMoreOptionsButtonClicked() - { - ShowContextMenuAt( rectTransform.InverseTransformPoint( moreOptionsContextMenuPosition.position ), true ); - } - - internal void OnContextMenuTriggered( Vector2 pointerPos ) - { - filesScrollRect.velocity = Vector2.zero; - - Vector2 position; - RectTransformUtility.ScreenPointToLocalPointInRectangle( rectTransform, pointerPos, canvas.worldCamera, out position ); - - ShowContextMenuAt( position, false ); - } - - private void ShowContextMenuAt( Vector2 position, bool isMoreOptionsMenu ) - { - if( string.IsNullOrEmpty( m_currentPath ) ) - return; - - bool selectAllButtonVisible = isMoreOptionsMenu && m_allowMultiSelection && validFileEntries.Count > 0; - bool deselectAllButtonVisible = isMoreOptionsMenu && selectedFileEntries.Count > 1; - bool deleteButtonVisible = CanDeleteFiles && selectedFileEntries.Count > 0; - bool renameButtonVisible = CanRenameFiles && selectedFileEntries.Count == 1; - - if( selectAllButtonVisible && m_pickerMode == PickMode.Files ) - { - // In file selection mode, if only folders exist in the current path, "Select All" option shouldn't be visible - selectAllButtonVisible = false; - for( int i = 0; i < validFileEntries.Count; i++ ) - { - if( !validFileEntries[i].IsDirectory ) - { - selectAllButtonVisible = true; - break; - } - } - } - - contextMenu.Show( selectAllButtonVisible, deselectAllButtonVisible, deleteButtonVisible, renameButtonVisible, position, isMoreOptionsMenu ); - } - - private void OnSubmitButtonClicked() - { - string[] result = null; - string filenameInput = filenameInputField.text.Trim(); - - submittedFileEntryPaths.Clear(); - submittedFolderPaths.Clear(); - submittedFileEntriesToOverwrite.Clear(); - - if( filenameInput.Length == 0 ) - { - if( m_pickerMode == PickMode.Files ) - { - filenameImage.color = m_skin.InputFieldInvalidBackgroundColor; - return; - } - else - { - result = new string[1] { m_currentPath }; - submittedFolderPaths.Add( m_currentPath ); - } - } - - if( result == null ) - { - if( m_allowMultiSelection && selectedFileEntries.Count > 1 ) - { - // When multiple files are selected via file browser UI, filenameInputField is not interactable and will show - // only the first FILENAME_INPUT_FIELD_MAX_FILE_COUNT entries for performance reasons. We should iterate over - // selectedFileEntries instead of filenameInputField - - // Beforehand, check if a folder is selected in file selection mode. If so, open that directory - if( m_pickerMode == PickMode.Files ) - { - for( int i = 0; i < selectedFileEntries.Count; i++ ) - { - if( validFileEntries[selectedFileEntries[i]].IsDirectory ) - { - CurrentPath = validFileEntries[selectedFileEntries[i]].Path; - return; - } - } - } - - result = new string[selectedFileEntries.Count]; - for( int i = 0; i < selectedFileEntries.Count; i++ ) - { - result[i] = validFileEntries[selectedFileEntries[i]].Path; - - if( validFileEntries[selectedFileEntries[i]].IsDirectory ) - submittedFolderPaths.Add( result[i] ); - else if( m_acceptNonExistingFilename ) - { - submittedFileEntriesToOverwrite.Add( validFileEntries[selectedFileEntries[i]] ); - - if( !submittedFolderPaths.Contains( m_currentPath ) ) - submittedFolderPaths.Add( m_currentPath ); - } - } - } - else - { - // When multiple files aren't selected via file browser UI, we must consider the rare case where user manually enters - // multiple filenames to filenameInputField in format "file1" "file2" and so on. So, we must parse filenameInputField - - for( int startIndex = 0, nextStartIndex = 0; startIndex < filenameInput.Length; startIndex = nextStartIndex ) - { - int filenameLength = ExtractFilenameFromInput( filenameInput, ref startIndex, out nextStartIndex ); - if( filenameLength == 0 ) - continue; - - string filename = filenameInput.Substring( startIndex, filenameLength ).Trim(); - if( !VerifyFilename( filename ) ) - { - // Check if user has entered a full path to input field instead of just a filename. Even if it's the case, don't immediately accept the full path, - // first verify that it doesn't point to a file/folder that is ignored by the file browser - try - { - if( FileBrowserHelpers.DirectoryExists( filename ) ) - { - FileSystemEntry fileEntry = new FileSystemEntry( filename, FileBrowserHelpers.GetFilename( filename ), "", true ); - if( FileSystemEntryMatchesFilters( fileEntry, AllExtensionsHaveSingleSuffix ) ) - { - if( m_pickerMode == PickMode.Files ) - { - CurrentPath = filename; - return; - } - else - { - submittedFileEntryPaths.Add( filename ); - submittedFolderPaths.Add( filename ); - - continue; - } - } - } - else if( m_pickerMode != PickMode.Folders && FileBrowserHelpers.FileExists( filename ) ) - { - string fullPathFilename = FileBrowserHelpers.GetFilename( filename ); - FileSystemEntry fileEntry = new FileSystemEntry( filename, fullPathFilename, GetExtensionFromFilename( fullPathFilename, AllExtensionsHaveSingleSuffix ), false ); - if( FileSystemEntryMatchesFilters( fileEntry, AllExtensionsHaveSingleSuffix ) ) - { - submittedFileEntryPaths.Add( filename ); - submittedFileEntriesToOverwrite.Add( fileEntry ); - - if( m_acceptNonExistingFilename ) - submittedFolderPaths.Add( FileBrowserHelpers.GetDirectoryName( filename ) ); - - continue; - } - } - } - catch { } - - // Filename contains invalid characters or is completely whitespace - filenameImage.color = m_skin.InputFieldInvalidBackgroundColor; - return; - } - - try - { - int fileEntryIndex = FilenameToFileEntryIndex( filename ); - if( fileEntryIndex < 0 ) - { - if( m_pickerMode != PickMode.Folders ) - { - bool isAllFilesFilterActive = filters[filtersDropdown.value].extensions == null; - if( !m_acceptNonExistingFilename || !isAllFilesFilterActive ) - { - // File couldn't be found but perhaps filename is missing the extension, check if any of the files match the filename without extension - for( int i = 0; i < validFileEntries.Count; i++ ) - { - if( !validFileEntries[i].IsDirectory && validFileEntries[i].Name.Length >= filename.Length + 2 && validFileEntries[i].Name[filename.Length] == '.' ) - { - if( validFileEntries[i].Name.StartsWith( filename ) ) // Case-sensitive filename query - { - fileEntryIndex = i; - break; - } - else if( textComparer.IsPrefix( validFileEntries[i].Name, filename, textCompareOptions ) ) // Case-insensitive filename query - { - // Don't exit the loop immediately because case-sensitive query takes precedence, we need to check all files to see if there's a case-sensitive match - fileEntryIndex = i; - } - } - } - } - - if( m_acceptNonExistingFilename && fileEntryIndex < 0 && !isAllFilesFilterActive ) - { - // In file saving mode, make sure that nonexisting files' extensions match one of the required extensions - string fileExtension = GetExtensionFromFilename( filename, AllExtensionsHaveSingleSuffix ); - if( string.IsNullOrEmpty( fileExtension ) || !filters[filtersDropdown.value].MatchesExtension( fileExtension, !AllExtensionsHaveSingleSuffix ) ) - { - filename = Path.ChangeExtension( filename, filters[filtersDropdown.value].defaultExtension ); - fileEntryIndex = FilenameToFileEntryIndex( filename ); - } - } - } - } - - if( fileEntryIndex >= 0 ) // This is an existing file/folder - { - if( validFileEntries[fileEntryIndex].IsDirectory && m_pickerMode == PickMode.Files ) - { - // Selected a directory in file selection mode, open that directory - CurrentPath = validFileEntries[fileEntryIndex].Path; - return; - } - else - { - submittedFileEntryPaths.Add( validFileEntries[fileEntryIndex].Path ); - - if( validFileEntries[fileEntryIndex].IsDirectory ) - submittedFolderPaths.Add( validFileEntries[fileEntryIndex].Path ); - else if( m_acceptNonExistingFilename ) - { - submittedFileEntriesToOverwrite.Add( validFileEntries[fileEntryIndex] ); - - if( !submittedFolderPaths.Contains( m_currentPath ) ) - submittedFolderPaths.Add( m_currentPath ); - } - } - } - else // File/folder doesn't exist - { - if( !m_acceptNonExistingFilename ) - { - filenameImage.color = m_skin.InputFieldInvalidBackgroundColor; - return; - } - else - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( FileBrowserHelpers.ShouldUseSAFForPath( m_currentPath ) ) - { - if( m_pickerMode == PickMode.Folders ) - submittedFileEntryPaths.Add( FileBrowserHelpers.CreateFolderInDirectory( m_currentPath, filename ) ); - else - submittedFileEntryPaths.Add( FileBrowserHelpers.CreateFileInDirectory( m_currentPath, filename ) ); - } - else -#endif - { - submittedFileEntryPaths.Add( Path.Combine( m_currentPath, filename ) ); - - if( !submittedFolderPaths.Contains( m_currentPath ) ) - submittedFolderPaths.Add( m_currentPath ); - } - } - } - } - catch( ArgumentException e ) - { - filenameImage.color = m_skin.InputFieldInvalidBackgroundColor; - Debug.LogException( e ); - return; - } - } - - if( submittedFileEntryPaths.Count == 0 ) - { - filenameImage.color = m_skin.InputFieldInvalidBackgroundColor; - return; - } - - result = submittedFileEntryPaths.ToArray(); - } - } - - if( result != null ) - { - if( m_checkWriteAccessToDestinationDirectory ) - { - for( int i = 0; i < submittedFolderPaths.Count; i++ ) - { - if( !string.IsNullOrEmpty( submittedFolderPaths[i] ) && !CheckDirectoryWriteAccess( submittedFolderPaths[i] ) ) - { - accessRestrictedPanel.Show(); - return; - } - } - } - - if( m_showFileOverwriteDialog && submittedFileEntriesToOverwrite.Count > 0 ) - { - fileOperationConfirmationPanel.Show( this, submittedFileEntriesToOverwrite, FileBrowserFileOperationConfirmationPanel.OperationType.Overwrite, () => OnOperationSuccessful( result ) ); - return; - } - - OnOperationSuccessful( result ); - } - } - - private void OnCancelButtonClicked() - { - OnOperationCanceled( true ); - } - #endregion - - #region Other Events - private void OnOperationSuccessful( string[] paths ) - { - Success = true; - Result = paths; - - Hide(); - - if( !string.IsNullOrEmpty( m_currentPath ) ) - LastBrowsedFolder = m_currentPath; - - OnSuccess _onSuccess = onSuccess; - onSuccess = null; - onCancel = null; - - if( _onSuccess != null ) - _onSuccess( paths ); - } - - private void OnOperationCanceled( bool invokeCancelCallback ) - { - Success = false; - Result = null; - - Hide(); - - if( !string.IsNullOrEmpty( m_currentPath ) ) - LastBrowsedFolder = m_currentPath; - - OnCancel _onCancel = onCancel; - onSuccess = null; - onCancel = null; - - if( invokeCancelCallback && _onCancel != null ) - _onCancel(); - } - - private void OnPathChanged( string newPath ) - { - // Fixes harmless NullReferenceException that occurs when Play button is clicked while SimpleFileBrowserCanvas prefab is open in prefab mode - // https://github.com/yasirkula/UnitySimpleFileBrowser/issues/30 - if( !canvas ) - return; - - CurrentPath = newPath; - ResetInputFieldTextPosition( pathInputField ); - } - - private void OnSearchStringChanged( string newSearchString ) - { - if( !canvas ) // Same as OnPathChanged - return; - - SearchString = newSearchString; - } - - private void OnFilterChanged( int value ) - { - if( !canvas ) // Same as OnPathChanged - return; - - bool extensionsSingleSuffixModeChanged = false; - - if( filters != null && value < filters.Count ) - { - bool allExtensionsHadSingleSuffix = AllExtensionsHaveSingleSuffix; - allFiltersHaveSingleSuffix = filters[value].allExtensionsHaveSingleSuffix; - extensionsSingleSuffixModeChanged = ( AllExtensionsHaveSingleSuffix != allExtensionsHadSingleSuffix ); - } - - RefreshFiles( extensionsSingleSuffixModeChanged ); - } - - private void OnShowHiddenFilesToggleChanged( bool value ) - { - if( !canvas ) // Same as OnPathChanged - return; - - RefreshFiles( false ); - } - - public void OnItemSelected( FileBrowserItem item, bool isDoubleClick ) - { - if( item == null ) - return; - - if( item is FileBrowserQuickLink ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ( (FileBrowserQuickLink) item ).TargetPath == SAF_PICK_FOLDER_QUICK_LINK_PATH ) - FileBrowserHelpers.AJC.CallStatic( "PickSAFFolder", FileBrowserHelpers.Context, new FBDirectoryReceiveCallbackAndroid( OnSAFDirectoryPicked ) ); - else -#endif - CurrentPath = ( (FileBrowserQuickLink) item ).TargetPath; - - return; - } - - if( m_multiSelectionToggleSelectionMode ) - { - // In file selection mode, we shouldn't include folders in the multi-selection - if( item.IsDirectory && m_pickerMode == PickMode.Files && !selectedFileEntries.Contains( item.Position ) ) - return; - - // If a file/folder is double clicked in multi-selection mode, instead of opening that file/folder, we want to toggle its selected state - isDoubleClick = false; - } - - if( !isDoubleClick ) - { - if( !m_allowMultiSelection ) - { - selectedFileEntries.Clear(); - selectedFileEntries.Add( item.Position ); - } - else - { -#if UNITY_EDITOR || UNITY_STANDALONE || UNITY_WEBGL || UNITY_WSA || UNITY_WSA_10_0 - // When Shift key is held, all items from the pivot item to the clicked item will be selected -#if ENABLE_INPUT_SYSTEM && !ENABLE_LEGACY_INPUT_MANAGER - if( Keyboard.current != null && Keyboard.current.shiftKey.isPressed ) -#else - if( Input.GetKey( KeyCode.LeftShift ) || Input.GetKey( KeyCode.RightShift ) ) -#endif - { - multiSelectionPivotFileEntry = Mathf.Clamp( multiSelectionPivotFileEntry, 0, validFileEntries.Count - 1 ); - - selectedFileEntries.Clear(); - - for( int i = multiSelectionPivotFileEntry; i < item.Position; i++ ) - selectedFileEntries.Add( i ); - - for( int i = multiSelectionPivotFileEntry; i > item.Position; i-- ) - selectedFileEntries.Add( i ); - - selectedFileEntries.Add( item.Position ); - } - else -#endif - { - multiSelectionPivotFileEntry = item.Position; - - // When in toggle selection mode or Control/Command key is held, individual items can be multi-selected -#if UNITY_EDITOR || UNITY_STANDALONE || UNITY_WEBGL || UNITY_WSA || UNITY_WSA_10_0 - if( m_multiSelectionToggleSelectionMode || IsCtrlKeyHeld() ) -#else - if( m_multiSelectionToggleSelectionMode ) -#endif - { - if( !selectedFileEntries.Contains( item.Position ) ) - selectedFileEntries.Add( item.Position ); - else - { - selectedFileEntries.Remove( item.Position ); - - if( selectedFileEntries.Count == 0 ) - MultiSelectionToggleSelectionMode = false; - } - } - else - { - selectedFileEntries.Clear(); - selectedFileEntries.Add( item.Position ); - } - } - } - - UpdateFilenameInputFieldWithSelection(); - } - - for( int i = 0; i < allItems.Count; i++ ) - { - if( allItems[i].gameObject.activeSelf ) - allItems[i].SetSelected( selectedFileEntries.Contains( allItems[i].Position ) ); - } - - if( selectedFileEntries.Count > 0 && ( isDoubleClick || ( SingleClickMode && !m_multiSelectionToggleSelectionMode ) ) ) - { - if( !item.IsDirectory ) - { - // Submit selection - OnSubmitButtonClicked(); - } - else - { - // Enter the directory -#if !UNITY_EDITOR && UNITY_ANDROID - if( FileBrowserHelpers.ShouldUseSAFForPath( m_currentPath ) ) - { - for( int i = 0; i < validFileEntries.Count; i++ ) - { - FileSystemEntry fileInfo = validFileEntries[i]; - if( fileInfo.IsDirectory && fileInfo.Name == item.Name ) - { - CurrentPath = fileInfo.Path; - return; - } - } - } - else -#endif - CurrentPath = Path.Combine( m_currentPath, item.Name ); - } - } - } - - public void OnItemHeld( FileBrowserItem item ) - { - if( item is FileBrowserQuickLink ) - OnItemSelected( item, false ); - else if( m_allowMultiSelection && ( !item.IsDirectory || m_pickerMode != PickMode.Files ) ) // Holding a folder in file selection mode should do nothing - { - if( !MultiSelectionToggleSelectionMode ) - { - if( m_pickerMode == PickMode.Files ) - { - // If some folders are selected in file selection mode, deselect these folders before enabling the selection toggles because otherwise, - // user won't be able to deselect the selected folders without exiting MultiSelectionToggleSelectionMode - for( int i = selectedFileEntries.Count - 1; i >= 0; i-- ) - { - if( validFileEntries[selectedFileEntries[i]].IsDirectory ) - selectedFileEntries.RemoveAt( i ); - } - } - - MultiSelectionToggleSelectionMode = true; - } - - if( !selectedFileEntries.Contains( item.Position ) ) - OnItemSelected( item, false ); - } - } - -#if !UNITY_EDITOR && UNITY_ANDROID - private void OnSAFDirectoryPicked( string rawUri, string name ) - { - if( !string.IsNullOrEmpty( rawUri ) ) - { - if( AddQuickLink( m_skin.FolderIcon, name, rawUri ) ) - CurrentPath = rawUri; - } - } - - private void FetchPersistedSAFQuickLinks() - { - string resultRaw = FileBrowserHelpers.AJC.CallStatic( "FetchSAFQuickLinks", FileBrowserHelpers.Context ); - if( resultRaw == "0" ) - return; - - int separatorIndex = resultRaw.LastIndexOf( "<>" ); - if( separatorIndex <= 0 ) - { - Debug.LogError( "Entry count does not exist" ); - return; - } - - int entryCount = 0; - for( int i = separatorIndex + 2; i < resultRaw.Length; i++ ) - { - char ch = resultRaw[i]; - if( ch < '0' && ch > '9' ) - { - Debug.LogError( "Couldn't parse entry count" ); - return; - } - - entryCount = entryCount * 10 + ( ch - '0' ); - } - - if( entryCount <= 0 ) - return; - - bool defaultPathInitialized = false; - - separatorIndex = 0; - for( int i = 0; i < entryCount; i++ ) - { - int nextSeparatorIndex = resultRaw.IndexOf( "<>", separatorIndex ); - if( nextSeparatorIndex <= 0 ) - { - Debug.LogError( "Entry name is empty" ); - return; - } - - string entryName = resultRaw.Substring( separatorIndex, nextSeparatorIndex - separatorIndex ); - - separatorIndex = nextSeparatorIndex + 2; - nextSeparatorIndex = resultRaw.IndexOf( "<>", separatorIndex ); - if( nextSeparatorIndex <= 0 ) - { - Debug.LogError( "Entry rawUri is empty" ); - return; - } - - string rawUri = resultRaw.Substring( separatorIndex, nextSeparatorIndex - separatorIndex ); - - separatorIndex = nextSeparatorIndex + 2; - - if( AddQuickLink( m_skin.FolderIcon, entryName, rawUri ) && !defaultPathInitialized ) - { - defaultInitialPath = rawUri; - defaultPathInitialized = true; - } - } - } -#endif - - private void OnFilenameInputChanged( string text ) - { - filenameImage.color = m_skin.InputFieldNormalBackgroundColor; - } - - private void ResetInputFieldTextPosition( TMP_InputField inputField ) - { - // Reset text and caret position when InputField's focus is lost - inputField.textComponent.rectTransform.anchoredPosition = Vector2.zero; - ( (RectTransform) inputField.textViewport.GetChild( 0 ) ).anchoredPosition = Vector2.zero; - } - #endregion - - #region Helper Functions - public void Show( string initialPath, string initialFilename ) - { - if( AskPermissions ) - { - // If permission is denied, we still show the file browser but the user won't see the files protected by permission - RequestPermissionAsync( ( permission ) => ShowInternal( initialPath, initialFilename ) ); - } - else - ShowInternal( initialPath, initialFilename ); - } - - private void ShowInternal( string initialPath, string initialFilename ) - { - if( !quickLinksInitialized ) - InitializeQuickLinks(); - - selectedFileEntries.Clear(); - m_multiSelectionToggleSelectionMode = false; - - m_searchString = string.Empty; - searchInputField.text = m_searchString; - - filesScrollRect.verticalNormalizedPosition = 1; - - IsOpen = true; - Success = false; - Result = null; - - gameObject.SetActive( true ); - - CurrentPath = GetInitialPath( initialPath ); - - filenameInputField.text = initialFilename ?? string.Empty; - filenameInputField.interactable = true; - filenameImage.color = m_skin.InputFieldNormalBackgroundColor; - } - - public void Hide() - { - IsOpen = false; - - currentPathIndex = -1; - pathsFollowed.Clear(); - - backButton.interactable = false; - forwardButton.interactable = false; - upButton.interactable = false; - - gameObject.SetActive( false ); - } - - public void RefreshFiles(bool pathChanged, bool preserveSelection = true) - { - bool allExtensionsHaveSingleSuffix = AllExtensionsHaveSingleSuffix; - - if (preserveSelection) - { - pendingFileEntrySelection.Clear(); - for (int i = 0; i < selectedFileEntries.Count; i++) - pendingFileEntrySelection.Add(validFileEntries[selectedFileEntries[i]].Name); - } - - if( pathChanged ) - { - if( !string.IsNullOrEmpty( m_currentPath ) ) - allFileEntries = FileBrowserHelpers.GetEntriesInDirectory( m_currentPath, allExtensionsHaveSingleSuffix ); - else - allFileEntries = null; - } - - selectedFileEntries.Clear(); - - if( !showHiddenFilesToggle.isOn ) - ignoredFileAttributes |= FileAttributes.Hidden; - else - ignoredFileAttributes &= ~FileAttributes.Hidden; - - validFileEntries.Clear(); - - if( allFileEntries != null ) - { - if( sortFilesByName ) - { - // Sort the files and folders in the following order: - // 1. Directories come before files - // 2. Directories and files are sorted by their names - Array.Sort( allFileEntries, ( entry1, entry2 ) => - { - if( entry1.IsDirectory != entry2.IsDirectory ) - return entry1.IsDirectory ? -1 : 1; - else - return entry1.Name.CompareTo( entry2.Name ); - } ); - } - - for( int i = 0; i < allFileEntries.Length; i++ ) - { - try - { - FileSystemEntry item = allFileEntries[i]; - if( FileSystemEntryMatchesFilters( item, allExtensionsHaveSingleSuffix ) ) - validFileEntries.Add( item ); - } - catch( Exception e ) - { - Debug.LogException( e ); - } - } - } - - // Restore the selection - if( pendingFileEntrySelection.Count > 0 ) - { - for( int i = 0; i < pendingFileEntrySelection.Count; i++ ) - { - string pendingFileEntry = pendingFileEntrySelection[i]; - for( int j = 0; j < validFileEntries.Count; j++ ) - { - if( validFileEntries[j].Name == pendingFileEntry ) - { - selectedFileEntries.Add( j ); - break; - } - } - } - - pendingFileEntrySelection.Clear(); - } - - if( !filenameInputField.interactable && selectedFileEntries.Count <= 1 ) - { - filenameInputField.interactable = true; - - if( selectedFileEntries.Count == 0 ) - filenameInputField.text = string.Empty; - } - - listView.UpdateList(); - - // Prevent the case where all the content stays offscreen after changing the search string - EnsureScrollViewIsWithinBounds(); - } - - // Returns whether or not the FileSystemEntry passes the file browser's filters and should be displayed in the files list - private bool FileSystemEntryMatchesFilters( in FileSystemEntry item, bool allExtensionsHaveSingleSuffix ) - { - if( ( item.Attributes & ignoredFileAttributes ) != 0 ) - return false; - - if( !item.IsDirectory ) - { - if( m_pickerMode == PickMode.Folders ) - return false; - - string extension = item.Extension; - if( excludedExtensionsSet.Contains( extension ) ) - return false; - else if( !allExtensionsHaveSingleSuffix ) - { - for( int j = 0; j < excludedExtensions.Length; j++ ) - { - if( extension.EndsWith( excludedExtensions[j], StringComparison.Ordinal ) ) - { - excludedExtensionsSet.Add( extension ); - continue; - } - } - } - - if( !filters[filtersDropdown.value].MatchesExtension( extension, !allExtensionsHaveSingleSuffix ) ) - return false; - } - - if (m_searchString.Length > 0) - { - if (m_customSearchHandler != null) - { - if (!m_customSearchHandler(item, m_searchString)) - return false; - } - else if (textComparer.IndexOf(item.Name, m_searchString, textCompareOptions) < 0) - return false; - } - - if( m_displayedEntriesFilter != null && !m_displayedEntriesFilter( item ) ) - return false; - - return true; - } - - // Quickly selects all files and folders in the current directory - public void SelectAllFiles() - { - if( !m_allowMultiSelection || validFileEntries.Count == 0 ) - return; - - multiSelectionPivotFileEntry = 0; - - selectedFileEntries.Clear(); - - if( m_pickerMode != PickMode.Files ) - { - for( int i = 0; i < validFileEntries.Count; i++ ) - selectedFileEntries.Add( i ); - } - else - { - // Don't select folders in file picking mode if MultiSelectionToggleSelectionMode is enabled or about to be enabled - for( int i = 0; i < validFileEntries.Count; i++ ) - { -#if UNITY_EDITOR || UNITY_STANDALONE || UNITY_WEBGL || UNITY_WSA || UNITY_WSA_10_0 - if( !m_multiSelectionToggleSelectionMode || !validFileEntries[i].IsDirectory ) -#else - if( !validFileEntries[i].IsDirectory ) -#endif - selectedFileEntries.Add( i ); - } - } - -#if !UNITY_EDITOR && !UNITY_STANDALONE && !UNITY_WSA && !UNITY_WSA_10_0 - MultiSelectionToggleSelectionMode = true; -#endif - - UpdateFilenameInputFieldWithSelection(); - listView.UpdateList(); - } - - // Quickly deselects all files and folders in the current directory - public void DeselectAllFiles() - { - if( selectedFileEntries.Count == 0 ) - return; - - selectedFileEntries.Clear(); - MultiSelectionToggleSelectionMode = false; - - filenameInputField.text = string.Empty; - filenameInputField.interactable = true; - - listView.UpdateList(); - } - - // Prompts user to create a new folder in the current directory - public void CreateNewFolder() - { - StartCoroutine( CreateNewFolderCoroutine() ); - } - - private IEnumerator CreateNewFolderCoroutine() - { - filesScrollRect.verticalNormalizedPosition = 1f; - filesScrollRect.velocity = Vector2.zero; - - if( selectedFileEntries.Count > 0 ) - { - selectedFileEntries.Clear(); - MultiSelectionToggleSelectionMode = false; - - filenameInputField.text = string.Empty; - filenameInputField.interactable = true; - - listView.UpdateList(); - } - - filesScrollRect.movementType = ScrollRect.MovementType.Unrestricted; - - // The easiest way to insert a new item to the top of the list view is to just shift - // the list view downwards. However, it doesn't always work if we don't shift it twice - yield return null; - filesContainer.anchoredPosition = new Vector2( 0f, -m_skin.FileHeight ); - yield return null; - filesContainer.anchoredPosition = new Vector2( 0f, -m_skin.FileHeight ); - - ( (RectTransform) renameItem.transform ).anchoredPosition = new Vector2( 1f, m_skin.FileHeight ); - renameItem.Show( string.Empty, m_skin.FileSelectedBackgroundColor, m_skin.FolderIcon, ( folderName ) => - { - filesScrollRect.movementType = ScrollRect.MovementType.Clamped; - filesContainer.anchoredPosition = Vector2.zero; - - if( string.IsNullOrEmpty( folderName ) ) - return; - - FileBrowserHelpers.CreateFolderInDirectory( CurrentPath, folderName ); - - pendingFileEntrySelection.Clear(); - pendingFileEntrySelection.Add( folderName ); - - RefreshFiles(true, false); - - if( m_pickerMode != PickMode.Files ) - filenameInputField.text = folderName; - - // Focus on the newly created folder - int fileEntryIndex = Mathf.Max( 0, FilenameToFileEntryIndex( folderName ) ); - filesScrollRect.verticalNormalizedPosition = validFileEntries.Count > 1 ? ( 1f - (float) fileEntryIndex / ( validFileEntries.Count - 1 ) ) : 1f; - } ); - } - - // Prompts user to rename the selected file/folder - public void RenameSelectedFile() - { - if( !CanRenameFiles || selectedFileEntries.Count != 1 ) - return; - - MultiSelectionToggleSelectionMode = false; - - int fileEntryIndex = selectedFileEntries[0]; - FileSystemEntry fileInfo = validFileEntries[fileEntryIndex]; - - // Check if selected file is currently visible in ScrollRect - // We consider it visible if both the previous file entry and the next file entry are visible - bool prevFileEntryVisible = false, nextFileEntryVisible = false; - for( int i = 0; i < allItems.Count; i++ ) - { - if( !allItems[i].gameObject.activeSelf ) - continue; - - if( allItems[i].Position == fileEntryIndex - 1 ) - { - prevFileEntryVisible = true; - - if( prevFileEntryVisible && nextFileEntryVisible ) - break; - } - else if( allItems[i].Position == fileEntryIndex + 1 ) - { - nextFileEntryVisible = true; - - if( prevFileEntryVisible && nextFileEntryVisible ) - break; - } - } - - if( !prevFileEntryVisible || !nextFileEntryVisible ) - filesScrollRect.verticalNormalizedPosition = validFileEntries.Count > 1 ? ( 1f - (float) fileEntryIndex / ( validFileEntries.Count - 1 ) ) : 1f; - - filesScrollRect.velocity = Vector2.zero; - - ( (RectTransform) renameItem.transform ).anchoredPosition = new Vector2( 1f, -fileEntryIndex * m_skin.FileHeight ); - renameItem.Show( fileInfo.Name, m_skin.FileSelectedBackgroundColor, GetIconForFileEntry( fileInfo ), ( newName ) => - { - if( string.IsNullOrEmpty( newName ) || newName == fileInfo.Name ) - return; - - if( fileInfo.IsDirectory ) - FileBrowserHelpers.RenameDirectory( fileInfo.Path, newName ); - else - FileBrowserHelpers.RenameFile( fileInfo.Path, newName ); - - pendingFileEntrySelection.Clear(); - pendingFileEntrySelection.Add( newName ); - - RefreshFiles(true, false); - - if( ( fileInfo.IsDirectory && m_pickerMode != PickMode.Files ) || ( !fileInfo.IsDirectory && m_pickerMode != PickMode.Folders ) ) - filenameInputField.text = newName; - } ); - } - - // Prompts user to delete the selected files & folders - public void DeleteSelectedFiles() - { - if( !CanDeleteFiles || selectedFileEntries.Count == 0 ) - return; - - selectedFileEntries.Sort(); - - fileOperationConfirmationPanel.Show( this, validFileEntries, selectedFileEntries, FileBrowserFileOperationConfirmationPanel.OperationType.Delete, () => - { - for( int i = selectedFileEntries.Count - 1; i >= 0; i-- ) - { - FileSystemEntry fileInfo = validFileEntries[selectedFileEntries[i]]; - if( fileInfo.IsDirectory ) - FileBrowserHelpers.DeleteDirectory( fileInfo.Path ); - else - FileBrowserHelpers.DeleteFile( fileInfo.Path ); - } - - selectedFileEntries.Clear(); - - MultiSelectionToggleSelectionMode = false; - RefreshFiles(true, false); - } ); - } - - private bool AddQuickLink( Sprite icon, string name, string path ) - { - if( string.IsNullOrEmpty( path ) ) - return false; - -#if !UNITY_EDITOR && UNITY_ANDROID - if( !FileBrowserHelpers.ShouldUseSAFForPath( path ) ) -#endif - { -#if !WIN_DIR_CHECK_WITHOUT_TIMEOUT && ( UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN ) - if( !CheckDirectoryExistsWithTimeout( path ) ) -#else - if( !Directory.Exists( path ) ) -#endif - return false; - - path = GetPathWithoutTrailingDirectorySeparator( path.Trim() ); - } - - // Don't add quick link if it already exists - for( int i = 0; i < allQuickLinks.Count; i++ ) - { - if( allQuickLinks[i].TargetPath == path ) - return false; - } - - FileBrowserQuickLink quickLink = (FileBrowserQuickLink) Instantiate( quickLinkPrefab, quickLinksContainer, false ); - quickLink.SetFileBrowser( this, m_skin ); - - if( icon != null ) - quickLink.SetQuickLink( icon, name, path ); - else - quickLink.SetQuickLink( m_skin.FolderIcon, name, path ); - - Vector2 anchoredPos = new Vector2( 0f, -quickLinksContainer.sizeDelta.y ); - - quickLink.TransformComponent.anchoredPosition = anchoredPos; - anchoredPos.y -= m_skin.FileHeight; - - quickLinksContainer.sizeDelta = new Vector2( 0f, -anchoredPos.y ); - - allQuickLinks.Add( quickLink ); - - return true; - } - - private void ClearQuickLinksInternal() - { - Vector2 anchoredPos = Vector2.zero; - for( int i = 0; i < allQuickLinks.Count; i++ ) - { - if( allQuickLinks[i].TargetPath == SAF_PICK_FOLDER_QUICK_LINK_PATH ) - { - allQuickLinks[i].TransformComponent.anchoredPosition = anchoredPos; - anchoredPos.y -= m_skin.FileHeight; - } - else - { - Destroy( allQuickLinks[i].gameObject ); - allQuickLinks.RemoveAt( i-- ); - } - } - - quickLinksContainer.sizeDelta = new Vector2( 0f, -anchoredPos.y ); - - quickLinksInitialized = true; - generateQuickLinksForDrives = false; - } - - // Makes sure that scroll view's contents are within scroll view's bounds - private void EnsureScrollViewIsWithinBounds() - { - // When scrollbar is snapped to the very bottom of the scroll view, sometimes OnScroll alone doesn't work - if( filesScrollRect.verticalNormalizedPosition <= Mathf.Epsilon ) - filesScrollRect.verticalNormalizedPosition = 0.0001f; - - filesScrollRect.OnScroll( nullPointerEventData ); - } - - internal void EnsureWindowIsWithinBounds() - { - Vector2 canvasSize = rectTransform.sizeDelta; - Vector2 windowSize = windowTR.sizeDelta; - - if( windowSize.x < minWidth ) - windowSize.x = minWidth; - if( windowSize.y < minHeight ) - windowSize.y = minHeight; - - if( windowSize.x > canvasSize.x ) - windowSize.x = canvasSize.x; - if( windowSize.y > canvasSize.y ) - windowSize.y = canvasSize.y; - - Vector2 windowPos = windowTR.anchoredPosition; - Vector2 canvasHalfSize = canvasSize * 0.5f; - Vector2 windowHalfSize = windowSize * 0.5f; - Vector2 windowBottomLeft = windowPos - windowHalfSize + canvasHalfSize; - Vector2 windowTopRight = windowPos + windowHalfSize + canvasHalfSize; - - if( windowBottomLeft.x < 0f ) - windowPos.x -= windowBottomLeft.x; - else if( windowTopRight.x > canvasSize.x ) - windowPos.x -= windowTopRight.x - canvasSize.x; - - if( windowBottomLeft.y < 0f ) - windowPos.y -= windowBottomLeft.y; - else if( windowTopRight.y > canvasSize.y ) - windowPos.y -= windowTopRight.y - canvasSize.y; - - windowTR.anchoredPosition = windowPos; - windowTR.sizeDelta = windowSize; - } - - // Handles responsive user interface - internal void OnWindowDimensionsChanged( Vector2 size ) - { - float windowWidth = size.x; - float quickLinksWidth = Mathf.Min( middleViewQuickLinksOriginalSize.x, windowWidth * quickLinksMaxWidthPercentage ); - - if( middleViewQuickLinks.sizeDelta.x != quickLinksWidth ) - { - middleViewQuickLinks.sizeDelta = new Vector2( quickLinksWidth, middleViewQuickLinksOriginalSize.y ); - middleViewFiles.anchoredPosition = new Vector2( quickLinksWidth, 0f ); - middleViewFiles.sizeDelta = new Vector2( -quickLinksWidth, middleViewQuickLinksOriginalSize.y ); - middleViewSeparator.rectTransform.anchoredPosition = new Vector2( quickLinksWidth, 0f ); - } - -#if !UNITY_EDITOR && UNITY_ANDROID - // Responsive layout doesn't affect any other visible UI elements on Storage Access Framework - if( FileBrowserHelpers.ShouldUseSAF ) - return; -#endif - - if( windowWidth >= narrowScreenWidth ) - { - if( topViewNarrowScreen.gameObject.activeSelf ) - { - topViewNarrowScreen.gameObject.SetActive( false ); - pathInputField.transform.SetParent( pathInputFieldSlotTop, false ); - showHiddenFilesToggle.gameObject.SetActive( m_displayHiddenFilesToggle ); - - listView.OnViewportDimensionsChanged(); - EnsureScrollViewIsWithinBounds(); - } - } - else - { - if( !topViewNarrowScreen.gameObject.activeSelf ) - { - topViewNarrowScreen.gameObject.SetActive( true ); - pathInputField.transform.SetParent( pathInputFieldSlotBottom, false ); - - // Responsive layout for narrow screens doesn't include "Show Hidden Files" toggle. - // We simply hide it because I think creating a new row for it would be an overkill - showHiddenFilesToggle.gameObject.SetActive( false ); - - listView.OnViewportDimensionsChanged(); - EnsureScrollViewIsWithinBounds(); - } - } - } - - internal Sprite GetIconForFileEntry( in FileSystemEntry fileInfo ) - { - return m_skin.GetIconForFileEntry( fileInfo, !AllExtensionsHaveSingleSuffix ); - } - - internal static string GetExtensionFromFilename( string filename, bool extractOnlyLastSuffix ) - { - int length = filename.Length; - - if( extractOnlyLastSuffix ) - { - // We are only interested in the last suffix of the extension - for( int i = length - 2; i >= 0; i-- ) - { - if( filename[i] == '.' ) - return filename.Substring( i, length - i ).ToLowerInvariant(); - } - } - else - { - // We are interested in all suffixes of the extension - for( int i = 0, upperLimit = length - 2; i <= upperLimit; i++ ) - { - if( filename[i] == '.' ) - return filename.Substring( i, length - i ).ToLowerInvariant(); - } - } - - return string.Empty; - } - - private string GetPathWithoutTrailingDirectorySeparator( string path ) - { - if( string.IsNullOrEmpty( path ) ) - return null; - - // Credit: http://stackoverflow.com/questions/6019227/remove-the-last-character-if-its-directoryseparatorchar-with-c-sharp - try - { - if( Path.GetDirectoryName( path ) != null ) - { - char lastChar = path[path.Length - 1]; - if( lastChar == Path.DirectorySeparatorChar || lastChar == Path.AltDirectorySeparatorChar ) - path = path.Substring( 0, path.Length - 1 ); - } - } - catch - { - } - - return path; - } - - private void UpdateFilenameInputFieldWithSelection() - { - // Refresh filenameInputField as follows: - // 0 files selected: *blank* - // 1 file selected: file.Name - // 2+ files selected: "file1.Name" "file2.Name" ... (up to FILENAME_INPUT_FIELD_MAX_FILE_COUNT filenames are displayed for performance reasons) - int filenameContributingFileCount = 0; - if( m_pickerMode != PickMode.Files ) - filenameContributingFileCount = selectedFileEntries.Count; - else - { - for( int i = 0; i < selectedFileEntries.Count; i++ ) - { - if( !validFileEntries[selectedFileEntries[i]].IsDirectory ) - { - filenameContributingFileCount++; - - if( filenameContributingFileCount >= FILENAME_INPUT_FIELD_MAX_FILE_COUNT ) - break; - } - } - } - - filenameInputField.interactable = selectedFileEntries.Count <= 1; - - if( filenameContributingFileCount == 0 ) - { - // If multiple files were previously selected, clear the input field. If a single file was selected, preserve the filename - if( filenameInputField.text.StartsWith( "\"" ) ) - filenameInputField.text = string.Empty; - } - else - { - if( filenameContributingFileCount > 1 ) - { - if( multiSelectionFilenameBuilder == null ) - multiSelectionFilenameBuilder = new StringBuilder( 75 ); - else - multiSelectionFilenameBuilder.Length = 0; - } - - for( int i = 0, fileCount = 0; i < selectedFileEntries.Count; i++ ) - { - FileSystemEntry selectedFile = validFileEntries[selectedFileEntries[i]]; - if( m_pickerMode != PickMode.Files || !selectedFile.IsDirectory ) - { - if( filenameContributingFileCount == 1 ) - { - filenameInputField.text = selectedFile.Name; - break; - } - else - { - multiSelectionFilenameBuilder.Append( "\"" ).Append( selectedFile.Name ).Append( "\" " ); - - if( ++fileCount >= FILENAME_INPUT_FIELD_MAX_FILE_COUNT ) - { - multiSelectionFilenameBuilder.Append( "..." ); - break; - } - } - } - } - - if( filenameContributingFileCount > 1 ) - filenameInputField.text = multiSelectionFilenameBuilder.ToString(); - } - } - - // Extracts filenames from input field. Input can be in 2 formats: - // 1 filename: file.Name - // 2+ filenames: "file1.Name" "file2.Name" ... - // Returns the length of the iterated filename - private int ExtractFilenameFromInput( string input, ref int startIndex, out int nextStartIndex ) - { - if( !m_allowMultiSelection || input[startIndex] != '"' ) - { - // Single file is selected, return it - nextStartIndex = input.Length; - return input.Length - startIndex; - } - - // Seems like multiple files are selected - - // Filename is " (a single quotation mark), very unlikely to happen but probably possible on some platforms - if( startIndex + 1 >= input.Length ) - { - nextStartIndex = input.Length; - return 1; - } - - int filenameEndIndex = input.IndexOf( '"', startIndex + 1 ); - while( true ) - { - // 1st iteration: filename is "abc - // 2nd iteration: filename is "abc"def - if( filenameEndIndex == -1 ) - { - nextStartIndex = input.Length; - return input.Length - startIndex; - } - - // 1st iteration: filename is abc (extracted from "abc") - // 2nd iteration: filename is abc"def (extracted from "abc"def") - if( filenameEndIndex == input.Length - 1 || input[filenameEndIndex + 1] == ' ' ) - { - startIndex++; - - nextStartIndex = filenameEndIndex + 1; - while( nextStartIndex < input.Length && input[nextStartIndex] == ' ' ) - nextStartIndex++; - - return filenameEndIndex - startIndex; - } - - // Filename contains a " char - filenameEndIndex = input.IndexOf( '"', filenameEndIndex + 1 ); - } - } - - // Checks if a substring of the input field points to an existing file - private int FilenameToFileEntryIndex( string filename ) - { - // Case-sensitive search result takes precedence, so case-insensitive search result is returned only if a case-sensitive match isn't found - int caseInsensitiveResult = -1; - for( int i = 0; i < validFileEntries.Count; i++ ) - { - if( validFileEntries[i].Name.Length == filename.Length ) - { - if( filename == validFileEntries[i].Name ) // Case-sensitive filename query - return i; - else if( textComparer.Compare( filename, validFileEntries[i].Name, textCompareOptions ) == 0 ) // Case-insensitive filename query - caseInsensitiveResult = i; - } - } - - return caseInsensitiveResult; - } - - // Verifies that filename doesn't contain any invalid characters - private bool VerifyFilename( string filename ) - { - bool isWhitespace = true; - for( int i = 0; i < filename.Length; i++ ) - { - char ch = filename[i]; - if( invalidFilenameChars.Contains( ch ) ) - return false; - - if( isWhitespace && !char.IsWhiteSpace( ch ) ) - isWhitespace = false; - } - - return !isWhitespace; - } - - private void RefreshFiltersDropdownWidth() - { - /// must be active in the scene to return correct preferredWidth values - filtersDropdownContainer.gameObject.SetActive( true ); - - float maxFilterStrLength = 0f; - for( int i = 0; i < filterLabels.Count; i++ ) - { - filterItemTemplate.text = filterLabels[i]; - maxFilterStrLength = Mathf.Max( maxFilterStrLength, filterItemTemplate.preferredWidth ); - } - - Vector2 size = filtersDropdownContainer.sizeDelta; - size.x = Mathf.Max( ( (RectTransform) filtersDropdown.transform ).sizeDelta.x, maxFilterStrLength + 35f ); - filtersDropdownContainer.sizeDelta = size; - - filtersDropdownContainer.gameObject.SetActive( false ); - } - - private string GetInitialPath( string initialPath ) - { - if( !string.IsNullOrEmpty( initialPath ) && !FileBrowserHelpers.DirectoryExists( initialPath ) && FileBrowserHelpers.FileExists( initialPath ) ) - { - // Path points to a file, use its parent directory's path instead - initialPath = FileBrowserHelpers.GetDirectoryName( initialPath ); - } - - if( string.IsNullOrEmpty( initialPath ) || !FileBrowserHelpers.DirectoryExists( initialPath ) ) - { - if( CurrentPath.Length > 0 ) - initialPath = CurrentPath; - else - { - string lastBrowsedFolder = LastBrowsedFolder; - if( !string.IsNullOrEmpty( lastBrowsedFolder ) && FileBrowserHelpers.DirectoryExists( lastBrowsedFolder ) ) - initialPath = lastBrowsedFolder; - else - initialPath = defaultInitialPath; - } - } - - m_currentPath = string.Empty; // Needed to correctly reset the pathsFollowed - - return initialPath; - } - -#if !WIN_DIR_CHECK_WITHOUT_TIMEOUT && ( UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN ) - private bool CheckDirectoryExistsWithTimeout( string path, int timeout = 750 ) - { - if( timedOutDirectoryExistsRequests.Contains( path ) ) - return false; - - // Directory.Exists freezes for ~15 seconds for unreachable network drives on Windows, set a timeout using threads - bool directoryExists = false; - try - { -#if NET_STANDARD_2_0 || NET_4_6 - // Credit: https://stackoverflow.com/a/52661569/2373034 - System.Threading.Tasks.Task task = new System.Threading.Tasks.Task( () => directoryExists = Directory.Exists( path ) ); - task.Start(); - if( !task.Wait( timeout ) ) - timedOutDirectoryExistsRequests.Add( path ); -#else - // Credit: https://stackoverflow.com/q/1232953/2373034 - System.Threading.Thread thread = new System.Threading.Thread( new System.Threading.ThreadStart( () => directoryExists = Directory.Exists( path ) ) ); - thread.Start(); - if( !thread.Join( timeout ) ) - { - timedOutDirectoryExistsRequests.Add( path ); - thread.Abort(); - } -#endif - } - catch - { - directoryExists = Directory.Exists( path ); - } - - return directoryExists; - } -#endif - - private bool CheckDirectoryWriteAccess( string path ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( FileBrowserHelpers.ShouldUseSAFForPath( path ) ) - return true; -#endif - string tempFilePath = Path.Combine( path, "__fsWrite.tmp" ); - try - { - File.Create( tempFilePath ).Close(); - File.Delete( tempFilePath ); - - return true; - } - catch - { - return false; - } - finally - { - try - { - File.Delete( tempFilePath ); - } - catch { } - } - } - - // Check if Control/Command key is held - private bool IsCtrlKeyHeld() - { -#if ENABLE_INPUT_SYSTEM && !ENABLE_LEGACY_INPUT_MANAGER -#if UNITY_EDITOR_OSX || ( !UNITY_EDITOR && UNITY_STANDALONE_OSX ) - return Keyboard.current != null && ( Keyboard.current.leftCommandKey.isPressed || Keyboard.current.rightCommandKey.isPressed ); -#else - return Keyboard.current != null && Keyboard.current.ctrlKey.isPressed; -#endif -#else -#if UNITY_EDITOR_OSX || ( !UNITY_EDITOR && UNITY_STANDALONE_OSX ) - return Input.GetKey( KeyCode.LeftCommand ) || Input.GetKey( KeyCode.RightCommand ); -#else - return Input.GetKey( KeyCode.LeftControl ) || Input.GetKey( KeyCode.RightControl ); -#endif -#endif - } - #endregion - - #region File Browser Functions (static) - public static bool ShowSaveDialog( OnSuccess onSuccess, OnCancel onCancel, - PickMode pickMode, bool allowMultiSelection = false, - string initialPath = null, string initialFilename = null, - string title = "Save", string saveButtonText = "Save" ) - { - return ShowDialogInternal( onSuccess, onCancel, pickMode, allowMultiSelection, pickMode != PickMode.Folders, initialPath, initialFilename, title, saveButtonText ); - } - - public static bool ShowLoadDialog( OnSuccess onSuccess, OnCancel onCancel, - PickMode pickMode, bool allowMultiSelection = false, - string initialPath = null, string initialFilename = null, - string title = "Load", string loadButtonText = "Select" ) - { - return ShowDialogInternal( onSuccess, onCancel, pickMode, allowMultiSelection, false, initialPath, initialFilename, title, loadButtonText ); - } - - private static bool ShowDialogInternal( OnSuccess onSuccess, OnCancel onCancel, - PickMode pickMode, bool allowMultiSelection, bool acceptNonExistingFilename, - string initialPath, string initialFilename, string title, string submitButtonText ) - { - // Instead of ignoring this dialog request, let's just override the currently visible dialog's properties - //if( Instance.gameObject.activeSelf ) - //{ - // Debug.LogError( "Error: Multiple dialogs are not allowed!" ); - // return false; - //} - - Instance.onSuccess = onSuccess; - Instance.onCancel = onCancel; - - Instance.PickerMode = pickMode; - Instance.AllowMultiSelection = allowMultiSelection; - Instance.Title = title; - Instance.SubmitButtonText = submitButtonText; - Instance.AcceptNonExistingFilename = acceptNonExistingFilename; - - Instance.Show( initialPath, initialFilename ); - - return true; - } - - public static void HideDialog( bool invokeCancelCallback = false ) - { - Instance.OnOperationCanceled( invokeCancelCallback ); - } - - public static IEnumerator WaitForSaveDialog( PickMode pickMode, bool allowMultiSelection = false, - string initialPath = null, string initialFilename = null, - string title = "Save", string saveButtonText = "Save" ) - { - bool? result = null; - if( !ShowSaveDialog( ( paths ) => result = true, () => result = false, pickMode, allowMultiSelection, initialPath, initialFilename, title, saveButtonText ) ) - yield break; - - while( !result.HasValue ) - yield return null; - } - - public static IEnumerator WaitForLoadDialog( PickMode pickMode, bool allowMultiSelection = false, - string initialPath = null, string initialFilename = null, - string title = "Load", string loadButtonText = "Select" ) - { - bool? result = null; - if( !ShowLoadDialog( ( paths ) => result = true, () => result = false, pickMode, allowMultiSelection, initialPath, initialFilename, title, loadButtonText ) ) - yield break; - - while( !result.HasValue ) - yield return null; - } - - public static bool AddQuickLink( string name, string path, Sprite icon = null ) - { - if( string.IsNullOrEmpty( path ) || !FileBrowserHelpers.DirectoryExists( path ) ) - return false; - - return Instance.AddQuickLink( icon, name, path ); - } - - public static void ClearQuickLinks() - { - Instance.ClearQuickLinksInternal(); - } - - public static void SetExcludedExtensions( params string[] excludedExtensions ) - { - Instance.excludedExtensions = excludedExtensions ?? new string[0]; - Instance.excludedExtensionsSet.Clear(); - Instance.allExcludedExtensionsHaveSingleSuffix = true; - - if( excludedExtensions != null ) - { - for( int i = 0; i < excludedExtensions.Length; i++ ) - { - excludedExtensions[i] = excludedExtensions[i].ToLowerInvariant(); - if( excludedExtensions[i][0] != '.' ) - excludedExtensions[i] = "." + excludedExtensions[i]; - - Instance.excludedExtensionsSet.Add( excludedExtensions[i] ); - Instance.allExcludedExtensionsHaveSingleSuffix &= ( excludedExtensions[i].LastIndexOf( '.' ) == 0 ); - } - } - } - - public static void SetFilters( bool showAllFilesFilter ) - { - SetFilters( showAllFilesFilter, (string[]) null ); - } - - public static void SetFilters( bool showAllFilesFilter, IEnumerable filters ) - { - SetFiltersPreProcessing( showAllFilesFilter ); - - if( filters != null ) - { - foreach( string filter in filters ) - { - if( !string.IsNullOrEmpty( filter ) ) - Instance.filters.Add( new Filter( null, filter ) ); - } - } - - SetFiltersPostProcessing(); - } - - public static void SetFilters( bool showAllFilesFilter, params string[] filters ) - { - SetFiltersPreProcessing( showAllFilesFilter ); - - if( filters != null ) - { - for( int i = 0; i < filters.Length; i++ ) - { - if( !string.IsNullOrEmpty( filters[i] ) ) - Instance.filters.Add( new Filter( null, filters[i] ) ); - } - } - - SetFiltersPostProcessing(); - } - - public static void SetFilters( bool showAllFilesFilter, IEnumerable filters ) - { - SetFiltersPreProcessing( showAllFilesFilter ); - - if( filters != null ) - { - foreach( Filter filter in filters ) - { - if( filter != null && filter.defaultExtension.Length > 0 ) - Instance.filters.Add( filter ); - } - } - - SetFiltersPostProcessing(); - } - - public static void SetFilters( bool showAllFilesFilter, params Filter[] filters ) - { - SetFiltersPreProcessing( showAllFilesFilter ); - - if( filters != null ) - { - for( int i = 0; i < filters.Length; i++ ) - { - if( filters[i] != null && filters[i].defaultExtension.Length > 0 ) - Instance.filters.Add( filters[i] ); - } - } - - SetFiltersPostProcessing(); - } - - private static void SetFiltersPreProcessing( bool showAllFilesFilter ) - { - Instance.showAllFilesFilter = showAllFilesFilter; - - Instance.filters.Clear(); - - if( showAllFilesFilter ) - Instance.filters.Add( Instance.allFilesFilter ); - } - - private static void SetFiltersPostProcessing() - { - List filters = Instance.filters; - - if( filters.Count == 0 ) - filters.Add( Instance.allFilesFilter ); - - Instance.filterLabels.Clear(); - for( int i = 0; i < filters.Count; i++ ) - Instance.filterLabels.Add( filters[i].ToString() ); - - Instance.RefreshFiltersDropdownWidth(); - - Instance.filtersDropdown.ClearOptions(); - Instance.filtersDropdown.AddOptions( Instance.filterLabels ); - Instance.filtersDropdown.value = 0; - - Instance.allFiltersHaveSingleSuffix = filters[0].allExtensionsHaveSingleSuffix; - } - - public static bool SetDefaultFilter( string defaultFilter ) - { - if( string.IsNullOrEmpty( defaultFilter ) ) - { - if( Instance.showAllFilesFilter ) - { - Instance.filtersDropdown.value = 0; - Instance.filtersDropdown.RefreshShownValue(); - - return true; - } - - return false; - } - - defaultFilter = defaultFilter.ToLowerInvariant(); - if( defaultFilter[0] != '.' ) - defaultFilter = "." + defaultFilter; - - for( int i = 0; i < Instance.filters.Count; i++ ) - { - HashSet extensions = Instance.filters[i].extensionsSet; - if( extensions != null && extensions.Contains( defaultFilter ) ) - { - Instance.filtersDropdown.value = i; - Instance.filtersDropdown.RefreshShownValue(); - - return true; - } - } - - return false; - } - - public static bool CheckPermission() - { -#if !UNITY_EDITOR && UNITY_ANDROID - return FileBrowserHelpers.AJC.CallStatic( "CheckPermission", FileBrowserHelpers.Context ) == 1; -#else - return true; -#endif - } - - public static void RequestPermissionAsync( PermissionCallback callback ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - FBPermissionCallbackAndroid nativeCallback = new( callback ); - FileBrowserHelpers.AJC.CallStatic( "RequestPermission", FileBrowserHelpers.Context, nativeCallback ); -#else - callback( Permission.Granted ); -#endif - } - #endregion - } -} \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowser.cs.meta b/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowser.cs.meta deleted file mode 100644 index 8188218..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowser.cs.meta +++ /dev/null @@ -1,19 +0,0 @@ -fileFormatVersion: 2 -guid: f51dc09bf9e35804ba0f5e76c527025e -timeCreated: 1479416382 -licenseType: Store -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowser.cs - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserAccessRestrictedPanel.cs b/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserAccessRestrictedPanel.cs deleted file mode 100644 index 9ba549c..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserAccessRestrictedPanel.cs +++ /dev/null @@ -1,70 +0,0 @@ -using System.Collections.Generic; -using TMPro; -using UnityEngine; -using UnityEngine.UI; -#if ENABLE_INPUT_SYSTEM && !ENABLE_LEGACY_INPUT_MANAGER -using UnityEngine.InputSystem; -#endif - -namespace SimpleFileBrowser -{ - public class FileBrowserAccessRestrictedPanel : MonoBehaviour - { - [SerializeField] - private HorizontalLayoutGroup contentLayoutGroup; - - [SerializeField] - private TextMeshProUGUI messageLabel; - - [SerializeField] - private Button okButton; - - private void Awake() - { - okButton.onClick.AddListener( OKButtonClicked ); - } - - internal void Show() - { - gameObject.SetActive( true ); - } - -#if UNITY_EDITOR || UNITY_STANDALONE || UNITY_WSA || UNITY_WSA_10_0 - private void LateUpdate() - { -#if ENABLE_INPUT_SYSTEM && !ENABLE_LEGACY_INPUT_MANAGER - if( Keyboard.current != null ) -#endif - { - // Handle keyboard shortcuts -#if ENABLE_INPUT_SYSTEM && !ENABLE_LEGACY_INPUT_MANAGER - if( Keyboard.current[Key.Enter].wasPressedThisFrame || Keyboard.current[Key.NumpadEnter].wasPressedThisFrame || Keyboard.current[Key.Escape].wasPressedThisFrame ) -#else - if( Input.GetKeyDown( KeyCode.Return ) || Input.GetKeyDown( KeyCode.KeypadEnter ) || Input.GetKeyDown( KeyCode.Escape ) ) -#endif - OKButtonClicked(); - } - } -#endif - - internal void RefreshSkin( UISkin skin ) - { - contentLayoutGroup.padding.bottom = 22 + (int) ( skin.RowSpacing + skin.RowHeight ); - - Image background = GetComponentInChildren(); - background.color = skin.PopupPanelsBackgroundColor; - background.sprite = skin.PopupPanelsBackground; - - RectTransform buttonsParent = (RectTransform) okButton.transform.parent; - buttonsParent.sizeDelta = new Vector2( buttonsParent.sizeDelta.x, skin.RowHeight ); - - skin.ApplyTo( okButton ); - skin.ApplyTo( messageLabel, skin.PopupPanelsTextColor ); - } - - private void OKButtonClicked() - { - gameObject.SetActive( false ); - } - } -} \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserAccessRestrictedPanel.cs.meta b/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserAccessRestrictedPanel.cs.meta deleted file mode 100644 index 7f80686..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserAccessRestrictedPanel.cs.meta +++ /dev/null @@ -1,19 +0,0 @@ -fileFormatVersion: 2 -guid: 85ea21be7cacb484cb6db0d183d3b2a8 -timeCreated: 1603800894 -licenseType: Store -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserAccessRestrictedPanel.cs - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserContextMenu.cs b/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserContextMenu.cs deleted file mode 100644 index 7ad65c6..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserContextMenu.cs +++ /dev/null @@ -1,155 +0,0 @@ -using TMPro; -using UnityEngine; -using UnityEngine.UI; - -namespace SimpleFileBrowser -{ - public class FileBrowserContextMenu : MonoBehaviour - { - [SerializeField] - private FileBrowser fileBrowser; - - [SerializeField] - private RectTransform rectTransform; - - [SerializeField] - private Button selectAllButton; - [SerializeField] - private Button deselectAllButton; - [SerializeField] - private Button createFolderButton; - [SerializeField] - private Button deleteButton; - [SerializeField] - private Button renameButton; - - [SerializeField] - private GameObject selectAllButtonSeparator; - - [SerializeField] - private LayoutElement[] allButtonLayoutElements; - [SerializeField] - private TextMeshProUGUI[] allButtonTexts; - [SerializeField] - private Image[] allButtonSeparators; - - [SerializeField] - private float minDistanceToEdges = 10f; - - private void Awake() - { - selectAllButton.onClick.AddListener( OnSelectAllButtonClicked ); - deselectAllButton.onClick.AddListener( OnDeselectAllButtonClicked ); - createFolderButton.onClick.AddListener( OnCreateFolderButtonClicked ); - deleteButton.onClick.AddListener( OnDeleteButtonClicked ); - renameButton.onClick.AddListener( OnRenameButtonClicked ); - } - - internal void Show( bool selectAllButtonVisible, bool deselectAllButtonVisible, bool deleteButtonVisible, bool renameButtonVisible, Vector2 position, bool isMoreOptionsMenu ) - { - selectAllButton.gameObject.SetActive( selectAllButtonVisible ); - deselectAllButton.gameObject.SetActive( deselectAllButtonVisible ); - deleteButton.gameObject.SetActive( deleteButtonVisible ); - renameButton.gameObject.SetActive( renameButtonVisible ); - selectAllButtonSeparator.SetActive( !deselectAllButtonVisible ); - - rectTransform.anchoredPosition = position; - gameObject.SetActive( true ); - - if( isMoreOptionsMenu ) - rectTransform.pivot = Vector2.one; - else - { - // Find the optimal pivot value - LayoutRebuilder.ForceRebuildLayoutImmediate( rectTransform ); - - Vector2 size = rectTransform.sizeDelta; - Vector2 canvasSize = fileBrowser.rectTransform.sizeDelta; - - // Take canvas' Pivot into consideration - Vector2 positionOffset = canvasSize; - positionOffset.Scale( fileBrowser.rectTransform.pivot ); - position += positionOffset; - - // Try bottom-right corner first - Vector2 cornerPos = position + new Vector2( size.x + minDistanceToEdges, -size.y - minDistanceToEdges ); - if( cornerPos.x <= canvasSize.x && cornerPos.y >= 0f ) - rectTransform.pivot = new Vector2( 0f, 1f ); - else - { - // Try bottom-left corner - cornerPos = position - new Vector2( size.x + minDistanceToEdges, size.y + minDistanceToEdges ); - if( cornerPos.x >= 0f && cornerPos.y >= 0f ) - rectTransform.pivot = Vector2.one; - else - { - // Try top-right corner - cornerPos = position + new Vector2( size.x + minDistanceToEdges, size.y + minDistanceToEdges ); - if( cornerPos.x <= canvasSize.x && cornerPos.y <= canvasSize.y ) - rectTransform.pivot = Vector2.zero; - else - { - // Use top-left corner - rectTransform.pivot = new Vector2( 1f, 0f ); - } - } - } - } - } - - internal void Hide() - { - gameObject.SetActive( false ); - } - - internal void RefreshSkin( UISkin skin ) - { - rectTransform.GetComponent().color = skin.ContextMenuBackgroundColor; - - deselectAllButton.image.color = skin.ContextMenuBackgroundColor; - selectAllButton.image.color = skin.ContextMenuBackgroundColor; - createFolderButton.image.color = skin.ContextMenuBackgroundColor; - deleteButton.image.color = skin.ContextMenuBackgroundColor; - renameButton.image.color = skin.ContextMenuBackgroundColor; - - for( int i = 0; i < allButtonLayoutElements.Length; i++ ) - allButtonLayoutElements[i].preferredHeight = skin.RowHeight + 1; - - for( int i = 0; i < allButtonTexts.Length; i++ ) - skin.ApplyTo( allButtonTexts[i], skin.ContextMenuTextColor ); - - for( int i = 0; i < allButtonSeparators.Length; i++ ) - allButtonSeparators[i].color = skin.ContextMenuSeparatorColor; - } - - private void OnSelectAllButtonClicked() - { - Hide(); - fileBrowser.SelectAllFiles(); - } - - private void OnDeselectAllButtonClicked() - { - Hide(); - fileBrowser.DeselectAllFiles(); - } - - private void OnCreateFolderButtonClicked() - { - Hide(); - fileBrowser.CreateNewFolder(); - } - - private void OnDeleteButtonClicked() - { - Hide(); - fileBrowser.DeleteSelectedFiles(); - } - - private void OnRenameButtonClicked() - { - Hide(); - fileBrowser.RenameSelectedFile(); - } - } -} \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserContextMenu.cs.meta b/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserContextMenu.cs.meta deleted file mode 100644 index d6fc12f..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserContextMenu.cs.meta +++ /dev/null @@ -1,19 +0,0 @@ -fileFormatVersion: 2 -guid: 0d5261bc2717e6143961d30ccb76fb66 -timeCreated: 1603793977 -licenseType: Store -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserContextMenu.cs - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserCursorHandler.cs b/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserCursorHandler.cs deleted file mode 100644 index 4646f2c..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserCursorHandler.cs +++ /dev/null @@ -1,59 +0,0 @@ -using UnityEngine; -using UnityEngine.EventSystems; - -namespace SimpleFileBrowser -{ - public class FileBrowserCursorHandler : MonoBehaviour -#if UNITY_EDITOR || ( !UNITY_ANDROID && !UNITY_IOS ) - , IPointerEnterHandler, IPointerExitHandler, IBeginDragHandler, IEndDragHandler -#endif - { -#if UNITY_EDITOR || ( !UNITY_ANDROID && !UNITY_IOS ) - [SerializeField] - private Texture2D resizeCursor; - - private bool isHovering; - private bool isResizing; - - void IPointerEnterHandler.OnPointerEnter( PointerEventData eventData ) - { - isHovering = true; - - if( !eventData.dragging ) - ShowResizeCursor(); - } - - void IPointerExitHandler.OnPointerExit( PointerEventData eventData ) - { - isHovering = false; - - if( !isResizing ) - ShowDefaultCursor(); - } - - void IBeginDragHandler.OnBeginDrag( PointerEventData eventData ) - { - isResizing = true; - ShowResizeCursor(); - } - - void IEndDragHandler.OnEndDrag( PointerEventData eventData ) - { - isResizing = false; - - if( !isHovering ) - ShowDefaultCursor(); - } - - private void ShowDefaultCursor() - { - Cursor.SetCursor( null, Vector2.zero, CursorMode.Auto ); - } - - private void ShowResizeCursor() - { - Cursor.SetCursor( resizeCursor, new Vector2( resizeCursor.width * 0.5f, resizeCursor.height * 0.5f ), CursorMode.Auto ); - } -#endif - } -} \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserCursorHandler.cs.meta b/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserCursorHandler.cs.meta deleted file mode 100644 index c07f4b3..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserCursorHandler.cs.meta +++ /dev/null @@ -1,19 +0,0 @@ -fileFormatVersion: 2 -guid: 759524cf7ef37f244bb00cd9724f0349 -timeCreated: 1603745549 -licenseType: Store -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserCursorHandler.cs - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserFileOperationConfirmationPanel.cs b/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserFileOperationConfirmationPanel.cs deleted file mode 100644 index 0f9ca81..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserFileOperationConfirmationPanel.cs +++ /dev/null @@ -1,173 +0,0 @@ -using System.Collections.Generic; -using TMPro; -using UnityEngine; -using UnityEngine.UI; -#if ENABLE_INPUT_SYSTEM && !ENABLE_LEGACY_INPUT_MANAGER -using UnityEngine.InputSystem; -#endif - -namespace SimpleFileBrowser -{ - public class FileBrowserFileOperationConfirmationPanel : MonoBehaviour - { - public enum OperationType { Delete = 0, Overwrite = 1 }; - - public delegate void OnOperationConfirmed(); - - [SerializeField] - private VerticalLayoutGroup contentLayoutGroup; - - [SerializeField] - private TextMeshProUGUI[] titleLabels; - - [SerializeField] - private GameObject[] targetItems; - - [SerializeField] - private Image[] targetItemIcons; - - [SerializeField] - private TextMeshProUGUI[] targetItemNames; - - [SerializeField] - private GameObject targetItemsRest; - - [SerializeField] - private TextMeshProUGUI targetItemsRestLabel; - - [SerializeField] - private Button yesButton; - - [SerializeField] - private Button noButton; - - [SerializeField] - private float narrowScreenWidth = 380f; - - private OnOperationConfirmed onOperationConfirmed; - - private void Awake() - { - yesButton.onClick.AddListener( OnYesButtonClicked ); - noButton.onClick.AddListener( OnNoButtonClicked ); - } - - internal void Show( FileBrowser fileBrowser, List items, OperationType operationType, OnOperationConfirmed onOperationConfirmed ) - { - Show( fileBrowser, items, null, operationType, onOperationConfirmed ); - } - - internal void Show( FileBrowser fileBrowser, List items, List selectedItemIndices, OperationType operationType, OnOperationConfirmed onOperationConfirmed ) - { - this.onOperationConfirmed = onOperationConfirmed; - - int itemCount = ( selectedItemIndices != null ) ? selectedItemIndices.Count : items.Count; - - for( int i = 0; i < titleLabels.Length; i++ ) - titleLabels[i].gameObject.SetActive( (int) operationType == i ); - - for( int i = 0; i < targetItems.Length; i++ ) - targetItems[i].SetActive( i < itemCount ); - - for( int i = 0; i < targetItems.Length && i < itemCount; i++ ) - { - FileSystemEntry item = items[( selectedItemIndices != null ) ? selectedItemIndices[i] : i]; - targetItemIcons[i].sprite = fileBrowser.GetIconForFileEntry( item ); - targetItemNames[i].text = item.Name; - } - - if( itemCount > targetItems.Length ) - { - targetItemsRestLabel.text = string.Concat( "...and ", ( itemCount - targetItems.Length ).ToString(), " other" ); - targetItemsRest.SetActive( true ); - } - else - targetItemsRest.SetActive( false ); - - gameObject.SetActive( true ); - } - - // Handles responsive user interface - internal void OnCanvasDimensionsChanged( Vector2 size ) - { - if( size.x >= narrowScreenWidth ) - { - ( yesButton.transform as RectTransform ).anchorMin = new Vector2( 0.5f, 0f ); - ( yesButton.transform as RectTransform ).anchorMax = new Vector2( 0.75f, 1f ); - ( noButton.transform as RectTransform ).anchorMin = new Vector2( 0.75f, 0f ); - } - else - { - ( yesButton.transform as RectTransform ).anchorMin = Vector2.zero; - ( yesButton.transform as RectTransform ).anchorMax = new Vector2( 0.5f, 1f ); - ( noButton.transform as RectTransform ).anchorMin = new Vector2( 0.5f, 0f ); - } - } - -#if UNITY_EDITOR || UNITY_STANDALONE || UNITY_WSA || UNITY_WSA_10_0 - private void LateUpdate() - { -#if ENABLE_INPUT_SYSTEM && !ENABLE_LEGACY_INPUT_MANAGER - if( Keyboard.current != null ) -#endif - { - // Handle keyboard shortcuts -#if ENABLE_INPUT_SYSTEM && !ENABLE_LEGACY_INPUT_MANAGER - if( Keyboard.current[Key.Enter].wasPressedThisFrame || Keyboard.current[Key.NumpadEnter].wasPressedThisFrame ) -#else - if( Input.GetKeyDown( KeyCode.Return ) || Input.GetKeyDown( KeyCode.KeypadEnter ) ) -#endif - OnYesButtonClicked(); - -#if ENABLE_INPUT_SYSTEM && !ENABLE_LEGACY_INPUT_MANAGER - if( Keyboard.current[Key.Escape].wasPressedThisFrame ) -#else - if( Input.GetKeyDown( KeyCode.Escape ) ) -#endif - OnNoButtonClicked(); - } - } -#endif - - internal void RefreshSkin( UISkin skin ) - { - contentLayoutGroup.spacing = skin.RowSpacing; - contentLayoutGroup.padding.bottom = 22 + (int) ( skin.RowSpacing + skin.RowHeight ); - - Image background = GetComponentInChildren(); - background.color = skin.PopupPanelsBackgroundColor; - background.sprite = skin.PopupPanelsBackground; - - RectTransform buttonsParent = yesButton.transform.parent as RectTransform; - buttonsParent.sizeDelta = new Vector2( buttonsParent.sizeDelta.x, skin.RowHeight ); - - skin.ApplyTo( yesButton ); - skin.ApplyTo( noButton ); - - for( int i = 0; i < titleLabels.Length; i++ ) - skin.ApplyTo( titleLabels[i], skin.PopupPanelsTextColor ); - - skin.ApplyTo( targetItemsRestLabel, skin.PopupPanelsTextColor ); - - for( int i = 0; i < targetItemNames.Length; i++ ) - skin.ApplyTo( targetItemNames[i], skin.PopupPanelsTextColor ); - - for( int i = 0; i < targetItems.Length; i++ ) - targetItems[i].GetComponent().preferredHeight = skin.FileHeight; - } - - private void OnYesButtonClicked() - { - gameObject.SetActive( false ); - - if( onOperationConfirmed != null ) - onOperationConfirmed(); - } - - private void OnNoButtonClicked() - { - gameObject.SetActive( false ); - onOperationConfirmed = null; - } - } -} \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserFileOperationConfirmationPanel.cs.meta b/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserFileOperationConfirmationPanel.cs.meta deleted file mode 100644 index b58c793..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserFileOperationConfirmationPanel.cs.meta +++ /dev/null @@ -1,19 +0,0 @@ -fileFormatVersion: 2 -guid: 524a683efed82084b9a9c4a3eff23b73 -timeCreated: 1658958138 -licenseType: Store -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserFileOperationConfirmationPanel.cs - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserHelpers.cs b/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserHelpers.cs deleted file mode 100644 index 4afefb9..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserHelpers.cs +++ /dev/null @@ -1,565 +0,0 @@ -using System.IO; -using UnityEngine; - -namespace SimpleFileBrowser -{ - public readonly struct FileSystemEntry - { - public readonly string Path; - public readonly string Name; - public readonly string Extension; - public readonly FileAttributes Attributes; - public readonly bool IsDirectory { get { return ( Attributes & FileAttributes.Directory ) == FileAttributes.Directory; } } - - public FileSystemEntry( string path, string name, string extension, bool isDirectory ) - { - Path = path; - Name = name; - Extension = extension; - Attributes = isDirectory ? FileAttributes.Directory : FileAttributes.Normal; - } - - public FileSystemEntry( FileSystemInfo fileInfo, string extension ) - { - Path = fileInfo.FullName; - Name = fileInfo.Name; - Extension = extension; - try - { - Attributes = fileInfo.Attributes; - } - catch - { - /// I've encountered UnauthorizedAccessException while accessing on iOS. - Attributes = ( fileInfo is DirectoryInfo ) ? FileAttributes.Directory : 0; - } - } - } - - public static class FileBrowserHelpers - { -#if !UNITY_EDITOR && UNITY_ANDROID - private static AndroidJavaClass m_ajc = null; - public static AndroidJavaClass AJC - { - get - { - if( m_ajc == null ) - m_ajc = new AndroidJavaClass( "com.yasirkula.unity.FileBrowser" ); - - return m_ajc; - } - } - - private static AndroidJavaObject m_context = null; - public static AndroidJavaObject Context - { - get - { - if( m_context == null ) - { - using( AndroidJavaObject unityClass = new AndroidJavaClass( "com.unity3d.player.UnityPlayer" ) ) - { - m_context = unityClass.GetStatic( "currentActivity" ); - } - } - - return m_context; - } - } - - private static string m_temporaryFilePath = null; - private static string TemporaryFilePath - { - get - { - if( m_temporaryFilePath == null ) - { - m_temporaryFilePath = Path.Combine( Application.temporaryCachePath, "tmpFile" ); - Directory.CreateDirectory( Application.temporaryCachePath ); - } - - return m_temporaryFilePath; - } - } - - // On Android 10+, filesystem can be accessed via Storage Access Framework only - private static bool? m_shouldUseSAF = null; - public static bool ShouldUseSAF - { - get - { - if( m_shouldUseSAF == null ) - m_shouldUseSAF = AJC.CallStatic( "CheckSAF" ); - - return m_shouldUseSAF.Value; - } - } - - public static bool ShouldUseSAFForPath( string path ) // true: path should be managed with AJC (native helper class for Storage Access Framework), false: path should be managed with System.IO - { - return ShouldUseSAF && ( string.IsNullOrEmpty( path ) || path[0] != '/' ); - } -#endif - - public static bool FileExists( string path ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAFForPath( path ) ) - return AJC.CallStatic( "SAFEntryExists", Context, path, false ); -#endif - return File.Exists( path ); - } - - public static bool DirectoryExists( string path ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAFForPath( path ) ) - return AJC.CallStatic( "SAFEntryExists", Context, path, true ); - else if( ShouldUseSAF ) // Directory.Exists returns true even for inaccessible directories on Android 10+, we need to check if the directory is accessible - { - try - { - Directory.GetFiles( path, "testtesttest" ); - return true; - } - catch - { - return false; - } - } -#endif - return Directory.Exists( path ); - } - - public static bool IsDirectory( string path ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAFForPath( path ) ) - return AJC.CallStatic( "SAFEntryDirectory", Context, path ); -#endif - if( Directory.Exists( path ) ) - return true; - if( File.Exists( path ) ) - return false; - - string extension = Path.GetExtension( path ); - return extension == null || extension.Length <= 1; // extension includes '.' - } - - public static bool IsPathDescendantOfAnother( string path, string parentFolderPath ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAFForPath( path ) ) - return AJC.CallStatic( "IsSAFEntryChildOfAnother", Context, path, parentFolderPath ); -#endif - path = Path.GetFullPath( path ).Replace( '\\', '/' ); - parentFolderPath = Path.GetFullPath( parentFolderPath ).Replace( '\\', '/' ); - - if( path == parentFolderPath ) - return false; - - if( parentFolderPath[parentFolderPath.Length - 1] != '/' ) - parentFolderPath += "/"; - - return path != parentFolderPath && path.StartsWith( parentFolderPath, System.StringComparison.OrdinalIgnoreCase ); - } - - public static string GetDirectoryName( string path ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAFForPath( path ) ) - return AJC.CallStatic( "GetParentDirectory", Context, path ); -#endif - return Path.GetDirectoryName( path ); - } - - public static FileSystemEntry[] GetEntriesInDirectory( string path, bool extractOnlyLastSuffixFromExtensions ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAFForPath( path ) ) - { - string resultRaw = AJC.CallStatic( "OpenSAFFolder", Context, path ); - int separatorIndex = resultRaw.IndexOf( "<>" ); - if( separatorIndex <= 0 ) - { - Debug.LogError( "Entry count does not exist" ); - return null; - } - - int entryCount = 0; - for( int i = 0; i < separatorIndex; i++ ) - { - char ch = resultRaw[i]; - if( ch < '0' && ch > '9' ) - { - Debug.LogError( "Couldn't parse entry count" ); - return null; - } - - entryCount = entryCount * 10 + ( ch - '0' ); - } - - if( entryCount <= 0 ) - return null; - - FileSystemEntry[] result = new FileSystemEntry[entryCount]; - for( int i = 0; i < entryCount; i++ ) - { - separatorIndex += 2; - if( separatorIndex >= resultRaw.Length ) - { - Debug.LogError( "Couldn't fetch directory attribute" ); - return null; - } - - bool isDirectory = resultRaw[separatorIndex] == 'd'; - - separatorIndex++; - int nextSeparatorIndex = resultRaw.IndexOf( "<>", separatorIndex ); - if( nextSeparatorIndex <= 0 ) - { - Debug.LogError( "Entry name is empty" ); - return null; - } - - string entryName = resultRaw.Substring( separatorIndex, nextSeparatorIndex - separatorIndex ); - - separatorIndex = nextSeparatorIndex + 2; - nextSeparatorIndex = resultRaw.IndexOf( "<>", separatorIndex ); - if( nextSeparatorIndex <= 0 ) - { - Debug.LogError( "Entry rawUri is empty" ); - return null; - } - - string rawUri = resultRaw.Substring( separatorIndex, nextSeparatorIndex - separatorIndex ); - - separatorIndex = nextSeparatorIndex; - - result[i] = new FileSystemEntry( rawUri, entryName, isDirectory ? null : FileBrowser.GetExtensionFromFilename( entryName, extractOnlyLastSuffixFromExtensions ), isDirectory ); - } - - return result; - } -#endif - - try - { - string[] files = Directory.GetFiles( path ); - string[] subDirectories = Directory.GetDirectories( path ); - FileSystemEntry[] result = new FileSystemEntry[files.Length + subDirectories.Length]; - int index = 0; - for( int i = 0; i < files.Length; i++ ) - { - try - { - FileInfo fileInfo = new FileInfo( files[i] ); - result[index] = new FileSystemEntry( fileInfo, FileBrowser.GetExtensionFromFilename( fileInfo.Name, extractOnlyLastSuffixFromExtensions ) ); - index++; - } - catch( System.Exception e ) - { - Debug.LogException( e ); - } - } - - for( int i = 0; i < subDirectories.Length; i++ ) - { - try - { - result[index] = new FileSystemEntry( new DirectoryInfo( subDirectories[i] ), string.Empty ); - index++; - } - catch( System.Exception e ) - { - Debug.LogException( e ); - } - } - - if( result.Length != index ) - System.Array.Resize( ref result, index ); - - return result; - } - catch( System.UnauthorizedAccessException ) { } - catch( System.Exception e ) - { - Debug.LogException( e ); - } - - return null; - } - - public static string CreateFileInDirectory( string directoryPath, string filename ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAFForPath( directoryPath ) ) - return AJC.CallStatic( "CreateSAFEntry", Context, directoryPath, false, filename ); -#endif - - string path = Path.Combine( directoryPath, filename ); - using( File.Create( path ) ) { } - return path; - } - - public static string CreateFolderInDirectory( string directoryPath, string folderName ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAFForPath( directoryPath ) ) - return AJC.CallStatic( "CreateSAFEntry", Context, directoryPath, true, folderName ); -#endif - - string path = Path.Combine( directoryPath, folderName ); - Directory.CreateDirectory( path ); - return path; - } - - public static void WriteBytesToFile( string targetPath, byte[] bytes ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAFForPath( targetPath ) ) - { - File.WriteAllBytes( TemporaryFilePath, bytes ); - AJC.CallStatic( "WriteToSAFEntry", Context, targetPath, TemporaryFilePath, false ); - File.Delete( TemporaryFilePath ); - - return; - } -#endif - File.WriteAllBytes( targetPath, bytes ); - } - - public static void WriteTextToFile( string targetPath, string text ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAFForPath( targetPath ) ) - { - File.WriteAllText( TemporaryFilePath, text ); - AJC.CallStatic( "WriteToSAFEntry", Context, targetPath, TemporaryFilePath, false ); - File.Delete( TemporaryFilePath ); - - return; - } -#endif - File.WriteAllText( targetPath, text ); - } - - public static void AppendBytesToFile( string targetPath, byte[] bytes ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAFForPath( targetPath ) ) - { - File.WriteAllBytes( TemporaryFilePath, bytes ); - AJC.CallStatic( "WriteToSAFEntry", Context, targetPath, TemporaryFilePath, true ); - File.Delete( TemporaryFilePath ); - - return; - } -#endif - using( var stream = new FileStream( targetPath, FileMode.Append, FileAccess.Write ) ) - { - stream.Write( bytes, 0, bytes.Length ); - } - } - - public static void AppendTextToFile( string targetPath, string text ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAFForPath( targetPath ) ) - { - File.WriteAllText( TemporaryFilePath, text ); - AJC.CallStatic( "WriteToSAFEntry", Context, targetPath, TemporaryFilePath, true ); - File.Delete( TemporaryFilePath ); - - return; - } -#endif - File.AppendAllText( targetPath, text ); - } - - private static void AppendFileToFile( string targetPath, string sourceFileToAppend ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAFForPath( targetPath ) ) - { - AJC.CallStatic( "WriteToSAFEntry", Context, targetPath, sourceFileToAppend, true ); - return; - } -#endif - using( Stream input = File.OpenRead( sourceFileToAppend ) ) - using( Stream output = new FileStream( targetPath, FileMode.Append, FileAccess.Write ) ) - { - byte[] buffer = new byte[4096]; - int bytesRead; - while( ( bytesRead = input.Read( buffer, 0, buffer.Length ) ) > 0 ) - output.Write( buffer, 0, bytesRead ); - } - } - - public static byte[] ReadBytesFromFile( string sourcePath ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAFForPath( sourcePath ) ) - { - AJC.CallStatic( "ReadFromSAFEntry", Context, sourcePath, TemporaryFilePath ); - byte[] result = File.ReadAllBytes( TemporaryFilePath ); - File.Delete( TemporaryFilePath ); - return result; - } -#endif - return File.ReadAllBytes( sourcePath ); - } - - public static string ReadTextFromFile( string sourcePath ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAFForPath( sourcePath ) ) - { - AJC.CallStatic( "ReadFromSAFEntry", Context, sourcePath, TemporaryFilePath ); - string result = File.ReadAllText( TemporaryFilePath ); - File.Delete( TemporaryFilePath ); - return result; - } -#endif - return File.ReadAllText( sourcePath ); - } - - public static void CopyFile( string sourcePath, string destinationPath ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAF ) // No need to use ShouldUseSAFForPath because both SAF paths and raw file paths are handled on the native-side - { - AJC.CallStatic( "CopyFile", Context, sourcePath, destinationPath, false ); - return; - } -#endif - File.Copy( sourcePath, destinationPath, true ); - } - - public static void CopyDirectory( string sourcePath, string destinationPath ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAF ) // No need to use ShouldUseSAFForPath because both SAF paths and raw directory paths are handled on the native-side - { - AJC.CallStatic( "CopyDirectory", Context, sourcePath, destinationPath, false ); - return; - } -#endif - CopyDirectoryRecursively( new DirectoryInfo( sourcePath ), destinationPath ); - } - - private static void CopyDirectoryRecursively( DirectoryInfo sourceDirectory, string destinationPath ) - { - Directory.CreateDirectory( destinationPath ); - - FileInfo[] files = sourceDirectory.GetFiles(); - for( int i = 0; i < files.Length; i++ ) - files[i].CopyTo( Path.Combine( destinationPath, files[i].Name ), true ); - - DirectoryInfo[] subDirectories = sourceDirectory.GetDirectories(); - for( int i = 0; i < subDirectories.Length; i++ ) - CopyDirectoryRecursively( subDirectories[i], Path.Combine( destinationPath, subDirectories[i].Name ) ); - } - - public static void MoveFile( string sourcePath, string destinationPath ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAF ) // No need to use ShouldUseSAFForPath because both SAF paths and raw file paths are handled on the native-side - { - AJC.CallStatic( "CopyFile", Context, sourcePath, destinationPath, true ); - return; - } -#endif - File.Move( sourcePath, destinationPath ); - } - - public static void MoveDirectory( string sourcePath, string destinationPath ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAF ) // No need to use ShouldUseSAFForPath because both SAF paths and raw directory paths are handled on the native-side - { - AJC.CallStatic( "CopyDirectory", Context, sourcePath, destinationPath, true ); - return; - } -#endif - Directory.Move( sourcePath, destinationPath ); - } - - public static string RenameFile( string path, string newName ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAFForPath( path ) ) - return AJC.CallStatic( "RenameSAFEntry", Context, path, newName ); -#endif - string newPath = Path.Combine( Path.GetDirectoryName( path ), newName ); - File.Move( path, newPath ); - - return newPath; - } - - public static string RenameDirectory( string path, string newName ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAFForPath( path ) ) - return AJC.CallStatic( "RenameSAFEntry", Context, path, newName ); -#endif - string newPath = Path.Combine( new DirectoryInfo( path ).Parent.FullName, newName ); - Directory.Move( path, newPath ); - - return newPath; - } - - public static void DeleteFile( string path ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAFForPath( path ) ) - { - AJC.CallStatic( "DeleteSAFEntry", Context, path ); - return; - } -#endif - File.Delete( path ); - } - - public static void DeleteDirectory( string path ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAFForPath( path ) ) - { - AJC.CallStatic( "DeleteSAFEntry", Context, path ); - return; - } -#endif - Directory.Delete( path, true ); - } - - public static string GetFilename( string path ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAFForPath( path ) ) - return AJC.CallStatic( "SAFEntryName", Context, path ); -#endif - return Path.GetFileName( path ); - } - - public static long GetFilesize( string path ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - if( ShouldUseSAFForPath( path ) ) - return AJC.CallStatic( "SAFEntrySize", Context, path ); -#endif - return new FileInfo( path ).Length; - } - - public static System.DateTime GetLastModifiedDate( string path ) - { -#if !UNITY_EDITOR && UNITY_ANDROID - // Credit: https://stackoverflow.com/a/28504416/2373034 - if( ShouldUseSAFForPath( path ) ) - return new System.DateTime( 1970, 1, 1, 0, 0, 0 ).AddMilliseconds( AJC.CallStatic( "SAFEntryLastModified", Context, path ) ); -#endif - return new FileInfo( path ).LastWriteTime; - } - } -} \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserHelpers.cs.meta b/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserHelpers.cs.meta deleted file mode 100644 index 7a407fd..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserHelpers.cs.meta +++ /dev/null @@ -1,19 +0,0 @@ -fileFormatVersion: 2 -guid: 2370e7a82ec4087499ebf7efa149e9eb -timeCreated: 1570919647 -licenseType: Store -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserHelpers.cs - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserItem.cs b/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserItem.cs deleted file mode 100644 index 1f88eda..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserItem.cs +++ /dev/null @@ -1,237 +0,0 @@ -using TMPro; -using UnityEngine; -using UnityEngine.EventSystems; -using UnityEngine.UI; - -namespace SimpleFileBrowser -{ - public class FileBrowserItem : ListItem, IPointerClickHandler, IPointerDownHandler, IPointerUpHandler -#if UNITY_EDITOR || ( !UNITY_ANDROID && !UNITY_IOS ) - , IPointerEnterHandler, IPointerExitHandler -#endif - { - #region Constants - private const float DOUBLE_CLICK_TIME = 0.5f; - private const float TOGGLE_MULTI_SELECTION_HOLD_TIME = 0.5f; - #endregion - - #region Variables - protected FileBrowser fileBrowser; - - [SerializeField] - private Image background; - - [SerializeField] - private Image icon; - public Image Icon { get { return icon; } } - - [SerializeField] - private Image multiSelectionToggle; - - [SerializeField] - private TextMeshProUGUI nameText; - -#pragma warning disable 0414 - private bool isSelected, isHidden; -#pragma warning restore 0414 - - private UISkin skin; - - private float pressTime = Mathf.Infinity; - private float prevClickTime; - #endregion - - #region Properties - private RectTransform m_transform; - public RectTransform TransformComponent - { - get - { - if( m_transform == null ) - m_transform = (RectTransform) transform; - - return m_transform; - } - } - - public string Name { get { return nameText.text; } } - public bool IsDirectory { get; private set; } - #endregion - - #region Initialization Functions - public void SetFileBrowser( FileBrowser fileBrowser, UISkin skin ) - { - this.fileBrowser = fileBrowser; - OnSkinRefreshed( skin, false ); - } - - public void SetFile( Sprite icon, string name, bool isDirectory ) - { - this.icon.sprite = icon; - nameText.text = name; - - IsDirectory = isDirectory; - } - #endregion - - #region Messages - private void Update() - { - if( fileBrowser.AllowMultiSelection && Time.realtimeSinceStartup - pressTime >= TOGGLE_MULTI_SELECTION_HOLD_TIME ) - { - // Item is held for a while - pressTime = Mathf.Infinity; - fileBrowser.OnItemHeld( this ); - } - } - #endregion - - #region Pointer Events - public void OnPointerClick( PointerEventData eventData ) - { -#if UNITY_EDITOR || UNITY_STANDALONE || UNITY_WEBGL || UNITY_WSA || UNITY_WSA_10_0 - if( eventData.button == PointerEventData.InputButton.Middle ) - return; - else if( eventData.button == PointerEventData.InputButton.Right ) - { - // First, select the item - if( !isSelected ) - { - prevClickTime = 0f; - fileBrowser.OnItemSelected( this, false ); - } - - // Then, show the context menu - fileBrowser.OnContextMenuTriggered( eventData.position ); - return; - } -#endif - - if( Time.realtimeSinceStartup - prevClickTime < DOUBLE_CLICK_TIME ) - { - prevClickTime = 0f; - fileBrowser.OnItemSelected( this, true ); - } - else - { - prevClickTime = Time.realtimeSinceStartup; - fileBrowser.OnItemSelected( this, false ); - } - } - - public void OnPointerDown( PointerEventData eventData ) - { -#if UNITY_EDITOR || UNITY_STANDALONE || UNITY_WEBGL || UNITY_WSA || UNITY_WSA_10_0 - if( eventData.button != PointerEventData.InputButton.Left ) - return; -#endif - - pressTime = Time.realtimeSinceStartup; - } - - public void OnPointerUp( PointerEventData eventData ) - { -#if UNITY_EDITOR || UNITY_STANDALONE || UNITY_WEBGL || UNITY_WSA || UNITY_WSA_10_0 - if( eventData.button != PointerEventData.InputButton.Left ) - return; -#endif - - if( pressTime != Mathf.Infinity ) - pressTime = Mathf.Infinity; - else if( fileBrowser.MultiSelectionToggleSelectionMode ) - { - // We have activated MultiSelectionToggleSelectionMode with this press, processing the click would result in - // deselecting this item since its selected state would be toggled - eventData.eligibleForClick = false; - } - } - -#if UNITY_EDITOR || ( !UNITY_ANDROID && !UNITY_IOS ) - public void OnPointerEnter( PointerEventData eventData ) - { - if( !isSelected ) - background.color = skin.FileHoveredBackgroundColor; - } -#endif - -#if UNITY_EDITOR || ( !UNITY_ANDROID && !UNITY_IOS ) - public void OnPointerExit( PointerEventData eventData ) - { - if( !isSelected ) - background.color = ( Position % 2 ) == 0 ? skin.FileNormalBackgroundColor : skin.FileAlternatingBackgroundColor; - } -#endif - #endregion - - #region Other Events - public void SetSelected( bool isSelected ) - { - this.isSelected = isSelected; - - background.color = isSelected ? skin.FileSelectedBackgroundColor : ( ( Position % 2 ) == 0 ? skin.FileNormalBackgroundColor : skin.FileAlternatingBackgroundColor ); - nameText.color = isSelected ? skin.FileSelectedTextColor : skin.FileNormalTextColor; - - if( isHidden ) - { - Color c = nameText.color; - c.a = 0.55f; - nameText.color = c; - } - - if( multiSelectionToggle ) // Quick links don't have multi-selection toggle - { - // Don't show multi-selection toggle for folders in file selection mode - if( fileBrowser.MultiSelectionToggleSelectionMode && ( !IsDirectory || fileBrowser.PickerMode != FileBrowser.PickMode.Files ) ) - { - if( !multiSelectionToggle.gameObject.activeSelf ) - { - multiSelectionToggle.gameObject.SetActive( true ); - - Vector2 shiftAmount = new Vector2( multiSelectionToggle.rectTransform.sizeDelta.x, 0f ); - icon.rectTransform.anchoredPosition += shiftAmount; - nameText.rectTransform.anchoredPosition += shiftAmount; - } - - multiSelectionToggle.sprite = isSelected ? skin.FileMultiSelectionToggleOnIcon : skin.FileMultiSelectionToggleOffIcon; - } - else if( multiSelectionToggle.gameObject.activeSelf ) - { - multiSelectionToggle.gameObject.SetActive( false ); - - Vector2 shiftAmount = new Vector2( -multiSelectionToggle.rectTransform.sizeDelta.x, 0f ); - icon.rectTransform.anchoredPosition += shiftAmount; - nameText.rectTransform.anchoredPosition += shiftAmount; - - // Clicking a file shortly after disabling MultiSelectionToggleSelectionMode does nothing, this workaround fixes that issue - prevClickTime = 0f; - } - } - } - - public void SetHidden( bool isHidden ) - { - this.isHidden = isHidden; - - Color c = icon.color; - c.a = isHidden ? 0.5f : 1f; - icon.color = c; - - c = nameText.color; - c.a = isHidden ? 0.55f : ( isSelected ? skin.FileSelectedTextColor.a : skin.FileNormalTextColor.a ); - nameText.color = c; - } - - public void OnSkinRefreshed( UISkin skin, bool isInitialized = true ) - { - this.skin = skin; - - TransformComponent.sizeDelta = new Vector2( TransformComponent.sizeDelta.x, skin.FileHeight ); - skin.ApplyTo( nameText, isSelected ? skin.FileSelectedTextColor : skin.FileNormalTextColor ); - icon.rectTransform.sizeDelta = new Vector2( icon.rectTransform.sizeDelta.x, -skin.FileIconsPadding ); - - if( isInitialized ) - SetSelected( isSelected ); - } - #endregion - } -} \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserItem.cs.meta b/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserItem.cs.meta deleted file mode 100644 index 60e051a..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserItem.cs.meta +++ /dev/null @@ -1,19 +0,0 @@ -fileFormatVersion: 2 -guid: b5f1b2825c50f7b4d9be146ab2137bff -timeCreated: 1479417850 -licenseType: Store -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserItem.cs - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserMovement.cs b/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserMovement.cs deleted file mode 100644 index 004fe2c..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserMovement.cs +++ /dev/null @@ -1,103 +0,0 @@ -using UnityEngine; -using UnityEngine.EventSystems; - -namespace SimpleFileBrowser -{ - public class FileBrowserMovement : MonoBehaviour - { - #region Variables - private FileBrowser fileBrowser; - private RectTransform canvasTR; - private Camera canvasCam; - - [SerializeField] - private RectTransform window; - - [SerializeField] - private RecycledListView listView; - - private Vector2 initialTouchPos = Vector2.zero; - private Vector2 initialAnchoredPos, initialSizeDelta; - #endregion - - #region Initialization Functions - public void Initialize( FileBrowser fileBrowser ) - { - this.fileBrowser = fileBrowser; - canvasTR = fileBrowser.GetComponent(); - } - #endregion - - #region Pointer Events - public void OnDragStarted( BaseEventData data ) - { - PointerEventData pointer = (PointerEventData) data; - - canvasCam = pointer.pressEventCamera; - RectTransformUtility.ScreenPointToLocalPointInRectangle( window, pointer.pressPosition, canvasCam, out initialTouchPos ); - } - - public void OnDrag( BaseEventData data ) - { - PointerEventData pointer = (PointerEventData) data; - - Vector2 touchPos; - RectTransformUtility.ScreenPointToLocalPointInRectangle( window, pointer.position, canvasCam, out touchPos ); - window.anchoredPosition += touchPos - initialTouchPos; - } - - public void OnEndDrag( BaseEventData data ) - { - fileBrowser.EnsureWindowIsWithinBounds(); - } - - public void OnResizeStarted( BaseEventData data ) - { - PointerEventData pointer = (PointerEventData) data; - - canvasCam = pointer.pressEventCamera; - initialAnchoredPos = window.anchoredPosition; - initialSizeDelta = window.sizeDelta; - RectTransformUtility.ScreenPointToLocalPointInRectangle( canvasTR, pointer.pressPosition, canvasCam, out initialTouchPos ); - } - - public void OnResize( BaseEventData data ) - { - PointerEventData pointer = (PointerEventData) data; - - Vector2 touchPos; - RectTransformUtility.ScreenPointToLocalPointInRectangle( canvasTR, pointer.position, canvasCam, out touchPos ); - - Vector2 delta = touchPos - initialTouchPos; - Vector2 newSize = initialSizeDelta + new Vector2( delta.x, -delta.y ); - Vector2 canvasSize = canvasTR.sizeDelta; - - if( newSize.x < fileBrowser.minWidth ) newSize.x = fileBrowser.minWidth; - if( newSize.y < fileBrowser.minHeight ) newSize.y = fileBrowser.minHeight; - - if( newSize.x > canvasSize.x ) newSize.x = canvasSize.x; - if( newSize.y > canvasSize.y ) newSize.y = canvasSize.y; - - newSize.x = (int) newSize.x; - newSize.y = (int) newSize.y; - - delta = newSize - initialSizeDelta; - - window.anchoredPosition = initialAnchoredPos + new Vector2( delta.x * 0.5f, delta.y * -0.5f ); - - if( window.sizeDelta != newSize ) - { - window.sizeDelta = newSize; - fileBrowser.OnWindowDimensionsChanged( newSize ); - } - - listView.OnViewportDimensionsChanged(); - } - - public void OnEndResize( BaseEventData data ) - { - fileBrowser.EnsureWindowIsWithinBounds(); - } - #endregion - } -} \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserMovement.cs.meta b/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserMovement.cs.meta deleted file mode 100644 index 768e15f..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserMovement.cs.meta +++ /dev/null @@ -1,19 +0,0 @@ -fileFormatVersion: 2 -guid: 46d41d79fe7c3d44ca846b4f3d81a476 -timeCreated: 1479486534 -licenseType: Store -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserMovement.cs - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserQuickLink.cs b/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserQuickLink.cs deleted file mode 100644 index 80a02b6..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserQuickLink.cs +++ /dev/null @@ -1,21 +0,0 @@ -using UnityEngine; - -namespace SimpleFileBrowser -{ - public class FileBrowserQuickLink : FileBrowserItem - { - #region Properties - private string m_targetPath; - public string TargetPath { get { return m_targetPath; } } - #endregion - - #region Initialization Functions - public void SetQuickLink( Sprite icon, string name, string targetPath ) - { - SetFile( icon, name, true ); - - m_targetPath = targetPath; - } - #endregion - } -} \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserQuickLink.cs.meta b/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserQuickLink.cs.meta deleted file mode 100644 index 733f2ad..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserQuickLink.cs.meta +++ /dev/null @@ -1,19 +0,0 @@ -fileFormatVersion: 2 -guid: 1f277f5418eabf94cad94208055878af -timeCreated: 1479417850 -licenseType: Store -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserQuickLink.cs - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserRenamedItem.cs b/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserRenamedItem.cs deleted file mode 100644 index daa5905..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserRenamedItem.cs +++ /dev/null @@ -1,83 +0,0 @@ -using TMPro; -using UnityEngine; -using UnityEngine.EventSystems; -using UnityEngine.UI; -#if ENABLE_INPUT_SYSTEM && !ENABLE_LEGACY_INPUT_MANAGER -using UnityEngine.InputSystem; -#endif - -namespace SimpleFileBrowser -{ - public class FileBrowserRenamedItem : MonoBehaviour - { - public delegate void OnRenameCompleted( string filename ); - - [SerializeField] - private Image background; - - [SerializeField] - private Image icon; - - [SerializeField] - private TMP_InputField nameInputField; - public TMP_InputField InputField { get { return nameInputField; } } - - private OnRenameCompleted onRenameCompleted; - - private RectTransform m_transform; - public RectTransform TransformComponent - { - get - { - if( m_transform == null ) - m_transform = (RectTransform) transform; - - return m_transform; - } - } - - private void Awake() - { - nameInputField.onEndEdit.AddListener( OnInputFieldEndEdit ); - } - - public void Show( string initialFilename, Color backgroundColor, Sprite icon, OnRenameCompleted onRenameCompleted ) - { - background.color = backgroundColor; - this.icon.sprite = icon; - this.onRenameCompleted = onRenameCompleted; - - transform.SetAsLastSibling(); - gameObject.SetActive( true ); - - nameInputField.text = initialFilename; - nameInputField.ActivateInputField(); - } - -#if UNITY_EDITOR || UNITY_STANDALONE || UNITY_WSA || UNITY_WSA_10_0 - private void LateUpdate() - { - // Don't allow scrolling with mouse wheel while renaming a file or creating a folder -#if ENABLE_INPUT_SYSTEM && !ENABLE_LEGACY_INPUT_MANAGER - if( Mouse.current != null && Mouse.current.scroll.ReadValue().y != 0f ) -#else - if( Input.mouseScrollDelta.y != 0f ) -#endif - nameInputField.DeactivateInputField(); - } -#endif - - private void OnInputFieldEndEdit( string filename ) - { - gameObject.SetActive( false ); - - // If we don't deselect the InputField manually, FileBrowser's keyboard shortcuts - // no longer work until user clicks on a UI element and thus, deselects the InputField - if( EventSystem.current && !EventSystem.current.alreadySelecting && EventSystem.current.currentSelectedGameObject == nameInputField.gameObject ) - EventSystem.current.SetSelectedGameObject( null ); - - if( onRenameCompleted != null ) - onRenameCompleted( filename ); - } - } -} \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserRenamedItem.cs.meta b/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserRenamedItem.cs.meta deleted file mode 100644 index b10b7be..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserRenamedItem.cs.meta +++ /dev/null @@ -1,19 +0,0 @@ -fileFormatVersion: 2 -guid: c7397ff7ae1ba4c47b6dfd3c84936584 -timeCreated: 1603812277 -licenseType: Store -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Scripts/FileBrowserRenamedItem.cs - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/NonDrawingGraphic.cs b/Assets/Plugins/SimpleFileBrowser/Scripts/NonDrawingGraphic.cs deleted file mode 100644 index 8336dfb..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/NonDrawingGraphic.cs +++ /dev/null @@ -1,19 +0,0 @@ -using UnityEngine; -using UnityEngine.UI; - -namespace SimpleFileBrowser -{ - // Credit: http://answers.unity.com/answers/1157876/view.html - [RequireComponent( typeof( CanvasRenderer ) )] - public class NonDrawingGraphic : Graphic - { - public override void SetMaterialDirty() { return; } - public override void SetVerticesDirty() { return; } - - protected override void OnPopulateMesh( VertexHelper vh ) - { - vh.Clear(); - return; - } - } -} \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/NonDrawingGraphic.cs.meta b/Assets/Plugins/SimpleFileBrowser/Scripts/NonDrawingGraphic.cs.meta deleted file mode 100644 index f3fcf7b..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/NonDrawingGraphic.cs.meta +++ /dev/null @@ -1,19 +0,0 @@ -fileFormatVersion: 2 -guid: b4fd8cdb8c068dd4bb48c415877496ba -timeCreated: 1603794018 -licenseType: Store -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Scripts/NonDrawingGraphic.cs - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView.meta b/Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView.meta deleted file mode 100644 index 6e6565d..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: dec11495f4b8cef49b7a3b4b06f094c3 -folderAsset: yes -timeCreated: 1485706514 -licenseType: Store -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView/IListViewAdapter.cs b/Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView/IListViewAdapter.cs deleted file mode 100644 index 08b0172..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView/IListViewAdapter.cs +++ /dev/null @@ -1,16 +0,0 @@ -namespace SimpleFileBrowser -{ - public delegate void OnItemClickedHandler( ListItem item ); - - public interface IListViewAdapter - { - OnItemClickedHandler OnItemClicked { get; set; } - - int Count { get; } - float ItemHeight { get; } - - ListItem CreateItem(); - - void SetItemContent( ListItem item ); - } -} \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView/IListViewAdapter.cs.meta b/Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView/IListViewAdapter.cs.meta deleted file mode 100644 index 9bdbe55..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView/IListViewAdapter.cs.meta +++ /dev/null @@ -1,19 +0,0 @@ -fileFormatVersion: 2 -guid: 08e51b912648ace4784ebe20fc6cc961 -timeCreated: 1485706575 -licenseType: Store -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView/IListViewAdapter.cs - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView/ListItem.cs b/Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView/ListItem.cs deleted file mode 100644 index 9af86a0..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView/ListItem.cs +++ /dev/null @@ -1,24 +0,0 @@ -using UnityEngine; - -namespace SimpleFileBrowser -{ - [RequireComponent( typeof( RectTransform ) )] - public class ListItem : MonoBehaviour - { - public object Tag { get; set; } - public int Position { get; set; } - - private IListViewAdapter adapter; - - internal void SetAdapter( IListViewAdapter listView ) - { - this.adapter = listView; - } - - public void OnClick() - { - if( adapter.OnItemClicked != null ) - adapter.OnItemClicked( this ); - } - } -} \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView/ListItem.cs.meta b/Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView/ListItem.cs.meta deleted file mode 100644 index b281a33..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView/ListItem.cs.meta +++ /dev/null @@ -1,19 +0,0 @@ -fileFormatVersion: 2 -guid: 9c3e7249b2cb96446a7ccfbed51aab81 -timeCreated: 1485706535 -licenseType: Store -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView/ListItem.cs - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView/RecycledListView.cs b/Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView/RecycledListView.cs deleted file mode 100644 index 44d4418..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView/RecycledListView.cs +++ /dev/null @@ -1,257 +0,0 @@ -using System.Collections.Generic; -using UnityEngine; -using UnityEngine.EventSystems; -using UnityEngine.UI; - -namespace SimpleFileBrowser -{ - [RequireComponent( typeof( ScrollRect ) )] - public class RecycledListView : MonoBehaviour -#if UNITY_EDITOR || UNITY_STANDALONE || UNITY_WSA || UNITY_WSA_10_0 - , IPointerClickHandler -#endif - { -#if UNITY_EDITOR || UNITY_STANDALONE || UNITY_WSA || UNITY_WSA_10_0 - [SerializeField] - private FileBrowser fileBrowser; -#endif - - // Cached components - [SerializeField] - private RectTransform viewportTransform; - [SerializeField] - private RectTransform contentTransform; - - private float itemHeight, _1OverItemHeight; - private float viewportHeight; - - private readonly Dictionary items = new Dictionary(); - private readonly Stack pooledItems = new Stack(); - - IListViewAdapter adapter = null; - - // Current indices of items shown on screen - private int currentTopIndex = -1, currentBottomIndex = -1; - - private void Start() - { - viewportHeight = viewportTransform.rect.height; - GetComponent().onValueChanged.AddListener( ( pos ) => UpdateItemsInTheList() ); - } - - public void SetAdapter( IListViewAdapter adapter ) - { - this.adapter = adapter; - - itemHeight = adapter.ItemHeight; - _1OverItemHeight = 1f / itemHeight; - } - - public void OnSkinRefreshed() - { - if( currentTopIndex >= 0 ) - { - DestroyItemsBetweenIndices( currentTopIndex, currentBottomIndex ); - currentTopIndex = currentBottomIndex = -1; - } - - itemHeight = adapter.ItemHeight; - _1OverItemHeight = 1f / itemHeight; - - UpdateList(); - } - - // Update the list - public void UpdateList() - { - float newHeight = Mathf.Max( 1f, adapter.Count * itemHeight ); - contentTransform.sizeDelta = new Vector2( 0f, newHeight ); - viewportHeight = viewportTransform.rect.height; - - UpdateItemsInTheList( true ); - } - - // Window is resized, update the list - public void OnViewportDimensionsChanged() - { - viewportHeight = viewportTransform.rect.height; - UpdateItemsInTheList(); - } - - // Calculate the indices of items to show - private void UpdateItemsInTheList( bool updateAllVisibleItems = false ) - { - // If there is at least one item to show - if( adapter.Count > 0 ) - { - float contentPos = contentTransform.anchoredPosition.y - 1f; - - int newTopIndex = (int) ( contentPos * _1OverItemHeight ); - int newBottomIndex = (int) ( ( contentPos + viewportHeight + 2f ) * _1OverItemHeight ); - - if( newTopIndex < 0 ) - newTopIndex = 0; - - if( newBottomIndex > adapter.Count - 1 ) - newBottomIndex = adapter.Count - 1; - - if( currentTopIndex == -1 ) - { - // There are no active items - - updateAllVisibleItems = true; - - currentTopIndex = newTopIndex; - currentBottomIndex = newBottomIndex; - - CreateItemsBetweenIndices( newTopIndex, newBottomIndex ); - } - else - { - // There are some active items - - if( newBottomIndex < currentTopIndex || newTopIndex > currentBottomIndex ) - { - // If user scrolled a lot such that, none of the items are now within - // the bounds of the scroll view, pool all the previous items and create - // new items for the new list of visible entries - updateAllVisibleItems = true; - - DestroyItemsBetweenIndices( currentTopIndex, currentBottomIndex ); - CreateItemsBetweenIndices( newTopIndex, newBottomIndex ); - } - else - { - // User did not scroll a lot such that, some items are are still within - // the bounds of the scroll view. Don't destroy them but update their content, - // if necessary - if( newTopIndex > currentTopIndex ) - { - DestroyItemsBetweenIndices( currentTopIndex, newTopIndex - 1 ); - } - - if( newBottomIndex < currentBottomIndex ) - { - DestroyItemsBetweenIndices( newBottomIndex + 1, currentBottomIndex ); - } - - if( newTopIndex < currentTopIndex ) - { - CreateItemsBetweenIndices( newTopIndex, currentTopIndex - 1 ); - - // If it is not necessary to update all the items, - // then just update the newly created items. Otherwise, - // wait for the major update - if( !updateAllVisibleItems ) - { - UpdateItemContentsBetweenIndices( newTopIndex, currentTopIndex - 1 ); - } - } - - if( newBottomIndex > currentBottomIndex ) - { - CreateItemsBetweenIndices( currentBottomIndex + 1, newBottomIndex ); - - // If it is not necessary to update all the items, - // then just update the newly created items. Otherwise, - // wait for the major update - if( !updateAllVisibleItems ) - { - UpdateItemContentsBetweenIndices( currentBottomIndex + 1, newBottomIndex ); - } - } - } - - currentTopIndex = newTopIndex; - currentBottomIndex = newBottomIndex; - } - - if( updateAllVisibleItems ) - { - // Update all the items - UpdateItemContentsBetweenIndices( currentTopIndex, currentBottomIndex ); - } - } - else if( currentTopIndex != -1 ) - { - // There is nothing to show but some items are still visible; pool them - DestroyItemsBetweenIndices( currentTopIndex, currentBottomIndex ); - - currentTopIndex = -1; - } - } - - private void CreateItemsBetweenIndices( int topIndex, int bottomIndex ) - { - for( int i = topIndex; i <= bottomIndex; i++ ) - { - CreateItemAtIndex( i ); - } - } - - // Create (or unpool) an item - private void CreateItemAtIndex( int index ) - { - ListItem item; - if( pooledItems.Count > 0 ) - { - item = pooledItems.Pop(); - item.gameObject.SetActive( true ); - } - else - { - item = adapter.CreateItem(); - item.SetAdapter( adapter ); - } - - // Reposition the item - ( (RectTransform) item.transform ).anchoredPosition = new Vector2( 1f, -index * itemHeight ); - - // To access this item easily in the future, add it to the dictionary - items[index] = item; - } - - private void DestroyItemsBetweenIndices( int topIndex, int bottomIndex ) - { - for( int i = topIndex; i <= bottomIndex; i++ ) - { - ListItem item = items[i]; - - item.gameObject.SetActive( false ); - pooledItems.Push( item ); - } - - if( topIndex == currentTopIndex && bottomIndex == currentBottomIndex ) - items.Clear(); - else - { - for( int i = topIndex; i <= bottomIndex; i++ ) - items.Remove( i ); - } - } - - private void UpdateItemContentsBetweenIndices( int topIndex, int bottomIndex ) - { - for( int i = topIndex; i <= bottomIndex; i++ ) - { - ListItem item = items[i]; - - item.Position = i; - adapter.SetItemContent( item ); - } - } - -#if UNITY_EDITOR || UNITY_STANDALONE || UNITY_WSA || UNITY_WSA_10_0 - // When free space inside ScrollRect is clicked: - // Left click: deselect selected file(s) - // Right click: show context menu - public void OnPointerClick( PointerEventData eventData ) - { - if( eventData.button == PointerEventData.InputButton.Left ) - fileBrowser.DeselectAllFiles(); - else if( eventData.button == PointerEventData.InputButton.Right ) - fileBrowser.OnContextMenuTriggered( eventData.position ); - } -#endif - } -} \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView/RecycledListView.cs.meta b/Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView/RecycledListView.cs.meta deleted file mode 100644 index 9de996b..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView/RecycledListView.cs.meta +++ /dev/null @@ -1,19 +0,0 @@ -fileFormatVersion: 2 -guid: 87ad67b4806678e40a492e337338760b -timeCreated: 1485620000 -licenseType: Store -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Scripts/SimpleRecycledListView/RecycledListView.cs - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/UISkin.cs b/Assets/Plugins/SimpleFileBrowser/Scripts/UISkin.cs deleted file mode 100644 index 16b8cf7..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/UISkin.cs +++ /dev/null @@ -1,670 +0,0 @@ -using System; -using System.Collections.Generic; -using TMPro; -using UnityEngine; -using UnityEngine.UI; - -namespace SimpleFileBrowser -{ - [Serializable] - public struct FiletypeIcon - { - public string extension; - public Sprite icon; - } - - [CreateAssetMenu( fileName = "UI Skin", menuName = "yasirkula/SimpleFileBrowser/UI Skin", order = 111 )] - public class UISkin : ScriptableObject - { - private int m_version = 0; - public int Version { get { return m_version; } } - - [ContextMenu( "Refresh UI" )] - private void Invalidate() - { - m_version = UnityEngine.Random.Range( int.MinValue / 2, int.MaxValue / 2 ); - initializedFiletypeIcons = false; - } - -#if UNITY_EDITOR - protected virtual void OnValidate() - { - // Refresh all UIs that use this skin - Invalidate(); - } -#endif - - [Header( "General" )] - [SerializeField] - private TMP_FontAsset m_font; - public TMP_FontAsset Font - { - get { return m_font; } - set { if( m_font != value ) { m_font = value; m_version++; } } - } - - [SerializeField] - private int m_fontSize = 14; - public int FontSize - { - get { return m_fontSize; } - set { if( m_fontSize != value ) { m_fontSize = value; m_version++; } } - } - - [SerializeField] - private float m_rowHeight = 30f; - public float RowHeight - { - get { return m_rowHeight; } - set { if( m_rowHeight != value ) { m_rowHeight = value; m_version++; } } - } - - [SerializeField] - private float m_rowSpacing = 8f; - public float RowSpacing - { - get { return m_rowSpacing; } - set { if( m_rowSpacing != value ) { m_rowSpacing = value; m_version++; } } - } - - [Header( "File Browser Window" )] - [SerializeField] - private Color m_windowColor = Color.grey; - public Color WindowColor - { - get { return m_windowColor; } - set { if( m_windowColor != value ) { m_windowColor = value; m_version++; } } - } - - [SerializeField] - private Color m_filesListColor = Color.white; - public Color FilesListColor - { - get { return m_filesListColor; } - set { if( m_filesListColor != value ) { m_filesListColor = value; m_version++; } } - } - - [SerializeField] - private Color m_filesVerticalSeparatorColor = Color.grey; - public Color FilesVerticalSeparatorColor - { - get { return m_filesVerticalSeparatorColor; } - set { if( m_filesVerticalSeparatorColor != value ) { m_filesVerticalSeparatorColor = value; m_version++; } } - } - - [SerializeField] - private Color m_titleBackgroundColor = Color.black; - public Color TitleBackgroundColor - { - get { return m_titleBackgroundColor; } - set { if( m_titleBackgroundColor != value ) { m_titleBackgroundColor = value; m_version++; } } - } - - [SerializeField] - private Color m_titleTextColor = Color.white; - public Color TitleTextColor - { - get { return m_titleTextColor; } - set { if( m_titleTextColor != value ) { m_titleTextColor = value; m_version++; } } - } - - [SerializeField] - private Color m_windowResizeGizmoColor = Color.black; - public Color WindowResizeGizmoColor - { - get { return m_windowResizeGizmoColor; } - set { if( m_windowResizeGizmoColor != value ) { m_windowResizeGizmoColor = value; m_version++; } } - } - - [SerializeField] - private Color m_headerButtonsColor = Color.white; - public Color HeaderButtonsColor - { - get { return m_headerButtonsColor; } - set { if( m_headerButtonsColor != value ) { m_headerButtonsColor = value; m_version++; } } - } - - [SerializeField] - private Sprite m_windowResizeGizmo; - public Sprite WindowResizeGizmo - { - get { return m_windowResizeGizmo; } - set { if( m_windowResizeGizmo != value ) { m_windowResizeGizmo = value; m_version++; } } - } - - [SerializeField] - private Sprite m_headerBackButton; - public Sprite HeaderBackButton - { - get { return m_headerBackButton; } - set { if( m_headerBackButton != value ) { m_headerBackButton = value; m_version++; } } - } - - [SerializeField] - private Sprite m_headerForwardButton; - public Sprite HeaderForwardButton - { - get { return m_headerForwardButton; } - set { if( m_headerForwardButton != value ) { m_headerForwardButton = value; m_version++; } } - } - - [SerializeField] - private Sprite m_headerUpButton; - public Sprite HeaderUpButton - { - get { return m_headerUpButton; } - set { if( m_headerUpButton != value ) { m_headerUpButton = value; m_version++; } } - } - - [SerializeField] - private Sprite m_headerContextMenuButton; - public Sprite HeaderContextMenuButton - { - get { return m_headerContextMenuButton; } - set { if( m_headerContextMenuButton != value ) { m_headerContextMenuButton = value; m_version++; } } - } - - [Header( "Input Fields" )] - [SerializeField] - private Color m_inputFieldNormalBackgroundColor = Color.white; - public Color InputFieldNormalBackgroundColor - { - get { return m_inputFieldNormalBackgroundColor; } - set { if( m_inputFieldNormalBackgroundColor != value ) { m_inputFieldNormalBackgroundColor = value; m_version++; } } - } - - [SerializeField] - private Color m_inputFieldInvalidBackgroundColor = Color.red; - public Color InputFieldInvalidBackgroundColor - { - get { return m_inputFieldInvalidBackgroundColor; } - set { if( m_inputFieldInvalidBackgroundColor != value ) { m_inputFieldInvalidBackgroundColor = value; m_version++; } } - } - - [SerializeField] - private Color m_inputFieldTextColor = Color.black; - public Color InputFieldTextColor - { - get { return m_inputFieldTextColor; } - set { if( m_inputFieldTextColor != value ) { m_inputFieldTextColor = value; m_version++; } } - } - - [SerializeField] - private Color m_inputFieldPlaceholderTextColor = new Color( 0f, 0f, 0f, 0.5f ); - public Color InputFieldPlaceholderTextColor - { - get { return m_inputFieldPlaceholderTextColor; } - set { if( m_inputFieldPlaceholderTextColor != value ) { m_inputFieldPlaceholderTextColor = value; m_version++; } } - } - - [SerializeField] - private Color m_inputFieldSelectedTextColor = Color.blue; - public Color InputFieldSelectedTextColor - { - get { return m_inputFieldSelectedTextColor; } - set { if( m_inputFieldSelectedTextColor != value ) { m_inputFieldSelectedTextColor = value; m_version++; } } - } - - [SerializeField] - private Color m_inputFieldCaretColor = Color.black; - public Color InputFieldCaretColor - { - get { return m_inputFieldCaretColor; } - set { if( m_inputFieldCaretColor != value ) { m_inputFieldCaretColor = value; m_version++; } } - } - - [SerializeField] - private Sprite m_inputFieldBackground; - public Sprite InputFieldBackground - { - get { return m_inputFieldBackground; } - set { if( m_inputFieldBackground != value ) { m_inputFieldBackground = value; m_version++; } } - } - - [Header( "Buttons" )] - [SerializeField] - private Color m_buttonColor = Color.white; - public Color ButtonColor - { - get { return m_buttonColor; } - set { if( m_buttonColor != value ) { m_buttonColor = value; m_version++; } } - } - - [SerializeField] - private Color m_buttonTextColor = Color.black; - public Color ButtonTextColor - { - get { return m_buttonTextColor; } - set { if( m_buttonTextColor != value ) { m_buttonTextColor = value; m_version++; } } - } - - [SerializeField] - private Sprite m_buttonBackground; - public Sprite ButtonBackground - { - get { return m_buttonBackground; } - set { if( m_buttonBackground != value ) { m_buttonBackground = value; m_version++; } } - } - - [Header( "Dropdowns" )] - [SerializeField] - private Color m_dropdownColor = Color.white; - public Color DropdownColor - { - get { return m_dropdownColor; } - set { if( m_dropdownColor != value ) { m_dropdownColor = value; m_version++; } } - } - - [SerializeField] - private Color m_dropdownTextColor = Color.black; - public Color DropdownTextColor - { - get { return m_dropdownTextColor; } - set { if( m_dropdownTextColor != value ) { m_dropdownTextColor = value; m_version++; } } - } - - [SerializeField] - private Color m_dropdownArrowColor = Color.black; - public Color DropdownArrowColor - { - get { return m_dropdownArrowColor; } - set { if( m_dropdownArrowColor != value ) { m_dropdownArrowColor = value; m_version++; } } - } - - [SerializeField] - private Color m_dropdownCheckmarkColor = Color.black; - public Color DropdownCheckmarkColor - { - get { return m_dropdownCheckmarkColor; } - set { if( m_dropdownCheckmarkColor != value ) { m_dropdownCheckmarkColor = value; m_version++; } } - } - - [SerializeField] - private Sprite m_dropdownBackground; - public Sprite DropdownBackground - { - get { return m_dropdownBackground; } - set { if( m_dropdownBackground != value ) { m_dropdownBackground = value; m_version++; } } - } - - [SerializeField] - private Sprite m_dropdownArrow; - public Sprite DropdownArrow - { - get { return m_dropdownArrow; } - set { if( m_dropdownArrow != value ) { m_dropdownArrow = value; m_version++; } } - } - - [SerializeField] - private Sprite m_dropdownCheckmark; - public Sprite DropdownCheckmark - { - get { return m_dropdownCheckmark; } - set { if( m_dropdownCheckmark != value ) { m_dropdownCheckmark = value; m_version++; } } - } - - [Header( "Toggles" )] - [SerializeField] - private Color m_toggleColor = Color.white; - public Color ToggleColor - { - get { return m_toggleColor; } - set { if( m_toggleColor != value ) { m_toggleColor = value; m_version++; } } - } - - [SerializeField] - private Color m_toggleTextColor = Color.black; - public Color ToggleTextColor - { - get { return m_toggleTextColor; } - set { if( m_toggleTextColor != value ) { m_toggleTextColor = value; m_version++; } } - } - - [SerializeField] - private Color m_toggleCheckmarkColor = Color.black; - public Color ToggleCheckmarkColor - { - get { return m_toggleCheckmarkColor; } - set { if( m_toggleCheckmarkColor != value ) { m_toggleCheckmarkColor = value; m_version++; } } - } - - [SerializeField] - private Sprite m_toggleBackground; - public Sprite ToggleBackground - { - get { return m_toggleBackground; } - set { if( m_toggleBackground != value ) { m_toggleBackground = value; m_version++; } } - } - - [SerializeField] - private Sprite m_toggleCheckmark; - public Sprite ToggleCheckmark - { - get { return m_toggleCheckmark; } - set { if( m_toggleCheckmark != value ) { m_toggleCheckmark = value; m_version++; } } - } - - [Header( "Scrollbars" )] - [SerializeField] - private Color m_scrollbarBackgroundColor = Color.grey; - public Color ScrollbarBackgroundColor - { - get { return m_scrollbarBackgroundColor; } - set { if( m_scrollbarBackgroundColor != value ) { m_scrollbarBackgroundColor = value; m_version++; } } - } - - [SerializeField] - private Color m_scrollbarColor = Color.black; - public Color ScrollbarColor - { - get { return m_scrollbarColor; } - set { if( m_scrollbarColor != value ) { m_scrollbarColor = value; m_version++; } } - } - - [Header( "Files" )] - [SerializeField] - private float m_fileHeight = 30f; - public float FileHeight - { - get { return m_fileHeight; } - set { if( m_fileHeight != value ) { m_fileHeight = value; m_version++; } } - } - - [SerializeField] - private float m_fileIconsPadding = 6f; - public float FileIconsPadding - { - get { return m_fileIconsPadding; } - set { if( m_fileIconsPadding != value ) { m_fileIconsPadding = value; m_version++; } } - } - - [SerializeField] - private Color m_fileNormalBackgroundColor = Color.clear; - public Color FileNormalBackgroundColor - { - get { return m_fileNormalBackgroundColor; } - set { if( m_fileNormalBackgroundColor != value ) { m_fileNormalBackgroundColor = value; m_version++; } } - } - - [SerializeField] - private Color m_fileAlternatingBackgroundColor = Color.clear; - public Color FileAlternatingBackgroundColor - { - get { return m_fileAlternatingBackgroundColor; } - set { if( m_fileAlternatingBackgroundColor != value ) { m_fileAlternatingBackgroundColor = value; m_version++; } } - } - - [SerializeField] - private Color m_fileHoveredBackgroundColor = Color.cyan; - public Color FileHoveredBackgroundColor - { - get { return m_fileHoveredBackgroundColor; } - set { if( m_fileHoveredBackgroundColor != value ) { m_fileHoveredBackgroundColor = value; m_version++; } } - } - - [SerializeField] - private Color m_fileSelectedBackgroundColor = Color.blue; - public Color FileSelectedBackgroundColor - { - get { return m_fileSelectedBackgroundColor; } - set { if( m_fileSelectedBackgroundColor != value ) { m_fileSelectedBackgroundColor = value; m_version++; } } - } - - [SerializeField] - private Color m_fileNormalTextColor = Color.black; - public Color FileNormalTextColor - { - get { return m_fileNormalTextColor; } - set { if( m_fileNormalTextColor != value ) { m_fileNormalTextColor = value; m_version++; } } - } - - [SerializeField] - private Color m_fileSelectedTextColor = Color.black; - public Color FileSelectedTextColor - { - get { return m_fileSelectedTextColor; } - set { if( m_fileSelectedTextColor != value ) { m_fileSelectedTextColor = value; m_version++; } } - } - - [Header( "File Icons" )] - [SerializeField] - private Sprite m_folderIcon; - public Sprite FolderIcon - { - get { return m_folderIcon; } - set { if( m_folderIcon != value ) { m_folderIcon = value; m_version++; } } - } - - [SerializeField] - private Sprite m_driveIcon; - public Sprite DriveIcon - { - get { return m_driveIcon; } - set { if( m_driveIcon != value ) { m_driveIcon = value; m_version++; } } - } - - [SerializeField] - private Sprite m_defaultFileIcon; - public Sprite DefaultFileIcon - { - get { return m_defaultFileIcon; } - set { if( m_defaultFileIcon != value ) { m_defaultFileIcon = value; m_version++; } } - } - - [SerializeField] - private FiletypeIcon[] m_filetypeIcons; - public FiletypeIcon[] FiletypeIcons - { - get { return m_filetypeIcons; } - set - { - if( m_filetypeIcons != value ) - { - m_filetypeIcons = value; - initializedFiletypeIcons = false; - m_version++; - } - } - } - - [NonSerialized] // Never save this value during domain reload (it's sometimes saved even though it's private) - private bool initializedFiletypeIcons = false; - private Dictionary filetypeToIcon; - - [NonSerialized] - private bool m_allIconExtensionsHaveSingleSuffix = true; - public bool AllIconExtensionsHaveSingleSuffix - { - get - { - if( !initializedFiletypeIcons ) - InitializeFiletypeIcons(); - - return m_allIconExtensionsHaveSingleSuffix; - } - } - - [SerializeField] - private Sprite m_fileMultiSelectionToggleOffIcon; - public Sprite FileMultiSelectionToggleOffIcon - { - get { return m_fileMultiSelectionToggleOffIcon; } - set { if( m_fileMultiSelectionToggleOffIcon != value ) { m_fileMultiSelectionToggleOffIcon = value; m_version++; } } - } - - [SerializeField] - private Sprite m_fileMultiSelectionToggleOnIcon; - public Sprite FileMultiSelectionToggleOnIcon - { - get { return m_fileMultiSelectionToggleOnIcon; } - set { if( m_fileMultiSelectionToggleOnIcon != value ) { m_fileMultiSelectionToggleOnIcon = value; m_version++; } } - } - - [Header( "Context Menu" )] - [SerializeField] - private Color m_contextMenuBackgroundColor = Color.grey; - public Color ContextMenuBackgroundColor - { - get { return m_contextMenuBackgroundColor; } - set { if( m_contextMenuBackgroundColor != value ) { m_contextMenuBackgroundColor = value; m_version++; } } - } - - [SerializeField] - private Color m_contextMenuTextColor = Color.black; - public Color ContextMenuTextColor - { - get { return m_contextMenuTextColor; } - set { if( m_contextMenuTextColor != value ) { m_contextMenuTextColor = value; m_version++; } } - } - - [SerializeField] - private Color m_contextMenuSeparatorColor = Color.black; - public Color ContextMenuSeparatorColor - { - get { return m_contextMenuSeparatorColor; } - set { if( m_contextMenuSeparatorColor != value ) { m_contextMenuSeparatorColor = value; m_version++; } } - } - - [Header( "Popup Panels" )] - [SerializeField, UnityEngine.Serialization.FormerlySerializedAs( "m_deletePanelBackgroundColor" )] - private Color m_popupPanelsBackgroundColor = Color.grey; - public Color PopupPanelsBackgroundColor - { - get { return m_popupPanelsBackgroundColor; } - set { if( m_popupPanelsBackgroundColor != value ) { m_popupPanelsBackgroundColor = value; m_version++; } } - } - - [SerializeField, UnityEngine.Serialization.FormerlySerializedAs( "m_deletePanelTextColor" )] - private Color m_popupPanelsTextColor = Color.black; - public Color PopupPanelsTextColor - { - get { return m_popupPanelsTextColor; } - set { if( m_popupPanelsTextColor != value ) { m_popupPanelsTextColor = value; m_version++; } } - } - - [SerializeField, UnityEngine.Serialization.FormerlySerializedAs( "m_deletePanelBackground" )] - private Sprite m_popupPanelsBackground; - public Sprite PopupPanelsBackground - { - get { return m_popupPanelsBackground; } - set { if( m_popupPanelsBackground != value ) { m_popupPanelsBackground = value; m_version++; } } - } - - public void ApplyTo( TMP_Text text, Color textColor ) - { - text.color = textColor; - text.font = m_font; - text.fontSize = m_fontSize; - } - - public void ApplyTo( TMP_InputField inputField ) - { - inputField.image.color = m_inputFieldNormalBackgroundColor; - inputField.image.sprite = m_inputFieldBackground; - inputField.selectionColor = m_inputFieldSelectedTextColor; - inputField.caretColor = m_inputFieldCaretColor; - - ApplyTo( inputField.textComponent, m_inputFieldTextColor ); - if( inputField.placeholder as TMP_Text ) - ApplyTo( (TMP_Text) inputField.placeholder, m_inputFieldPlaceholderTextColor ); - } - - public void ApplyTo( Button button ) - { - button.image.color = m_buttonColor; - button.image.sprite = m_buttonBackground; - - ApplyTo( button.GetComponentInChildren(), m_buttonTextColor ); - } - - public void ApplyTo( TMP_Dropdown dropdown ) - { - dropdown.image.color = m_dropdownColor; - dropdown.image.sprite = m_dropdownBackground; - dropdown.template.GetComponent().color = m_dropdownColor; - - Image dropdownArrow = dropdown.transform.Find( "Arrow" ).GetComponent(); - dropdownArrow.color = m_dropdownArrowColor; - dropdownArrow.sprite = m_dropdownArrow; - - ApplyTo( dropdown.captionText, m_dropdownTextColor ); - ApplyTo( dropdown.itemText, m_dropdownTextColor ); - - RectTransform dropdownItem = (RectTransform) dropdown.itemText.transform.parent; - dropdownItem.sizeDelta = new Vector2( dropdownItem.sizeDelta.x, m_rowHeight ); - dropdownItem.Find( "Item Background" ).GetComponent().color = m_dropdownColor; - - RectTransform dropdownScrollContent = (RectTransform) dropdownItem.parent; - dropdownScrollContent.sizeDelta = new Vector2( dropdownScrollContent.sizeDelta.x, dropdownItem.sizeDelta.y + 2f ); - - Image dropdownCheckmark = dropdownItem.Find( "Item Checkmark" ).GetComponent(); - dropdownCheckmark.color = m_dropdownCheckmarkColor; - dropdownCheckmark.sprite = m_dropdownCheckmark; - } - - public void ApplyTo( Toggle toggle ) - { - toggle.image.color = m_toggleColor; - toggle.image.sprite = m_toggleBackground; - toggle.graphic.color = m_toggleCheckmarkColor; - ( (Image) toggle.graphic ).sprite = m_toggleCheckmark; - - ApplyTo( toggle.GetComponentInChildren(), m_toggleTextColor ); - } - - public void ApplyTo( Scrollbar scrollbar ) - { - scrollbar.GetComponent().color = m_scrollbarBackgroundColor; - scrollbar.image.color = m_scrollbarColor; - } - - public Sprite GetIconForFileEntry( in FileSystemEntry fileInfo, bool extensionMayHaveMultipleSuffixes ) - { - if( !initializedFiletypeIcons ) - InitializeFiletypeIcons(); - - Sprite icon; - if( fileInfo.IsDirectory ) - return m_folderIcon; - else if( filetypeToIcon.TryGetValue( fileInfo.Extension, out icon ) ) - return icon; - else if( extensionMayHaveMultipleSuffixes ) - { - for( int i = 0; i < m_filetypeIcons.Length; i++ ) - { - if( fileInfo.Extension.EndsWith( m_filetypeIcons[i].extension, StringComparison.Ordinal ) ) - { - filetypeToIcon[fileInfo.Extension] = m_filetypeIcons[i].icon; - return m_filetypeIcons[i].icon; - } - } - } - - filetypeToIcon[fileInfo.Extension] = m_defaultFileIcon; - return m_defaultFileIcon; - } - - private void InitializeFiletypeIcons() - { - initializedFiletypeIcons = true; - - if( filetypeToIcon == null ) - filetypeToIcon = new Dictionary( 128 ); - else - filetypeToIcon.Clear(); - - m_allIconExtensionsHaveSingleSuffix = true; - - for( int i = 0; i < m_filetypeIcons.Length; i++ ) - { - m_filetypeIcons[i].extension = m_filetypeIcons[i].extension.ToLowerInvariant(); - if( m_filetypeIcons[i].extension[0] != '.' ) - m_filetypeIcons[i].extension = "." + m_filetypeIcons[i].extension; - - filetypeToIcon[m_filetypeIcons[i].extension] = m_filetypeIcons[i].icon; - - m_allIconExtensionsHaveSingleSuffix &= ( m_filetypeIcons[i].extension.LastIndexOf( '.' ) == 0 ); - } - } - } -} \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/Scripts/UISkin.cs.meta b/Assets/Plugins/SimpleFileBrowser/Scripts/UISkin.cs.meta deleted file mode 100644 index bd52bc3..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Scripts/UISkin.cs.meta +++ /dev/null @@ -1,19 +0,0 @@ -fileFormatVersion: 2 -guid: 66bc3ce4885990c40a88f80fe0ad0101 -timeCreated: 1634711050 -licenseType: Store -MonoImporter: - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Scripts/UISkin.cs - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/SimpleFileBrowser.Runtime.asmdef b/Assets/Plugins/SimpleFileBrowser/SimpleFileBrowser.Runtime.asmdef deleted file mode 100644 index 07dce7e..0000000 --- a/Assets/Plugins/SimpleFileBrowser/SimpleFileBrowser.Runtime.asmdef +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "SimpleFileBrowser.Runtime", - "references": [ - "Unity.InputSystem", - "Unity.TextMeshPro" - ], - "includePlatforms": [], - "excludePlatforms": [], - "allowUnsafeCode": false, - "autoReferenced": true, - "overrideReferences": false, - "precompiledReferences": [], - "defineConstraints": [], - "optionalUnityReferences": [] -} \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/SimpleFileBrowser.Runtime.asmdef.meta b/Assets/Plugins/SimpleFileBrowser/SimpleFileBrowser.Runtime.asmdef.meta deleted file mode 100644 index 7caca25..0000000 --- a/Assets/Plugins/SimpleFileBrowser/SimpleFileBrowser.Runtime.asmdef.meta +++ /dev/null @@ -1,14 +0,0 @@ -fileFormatVersion: 2 -guid: c685d05731421f64287ad6d13be5af0e -AssemblyDefinitionImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/SimpleFileBrowser.Runtime.asmdef - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Skins.meta b/Assets/Plugins/SimpleFileBrowser/Skins.meta deleted file mode 100644 index c4a6e3c..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Skins.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 7e6307005d898f2458a6b0a2ef136d0b -folderAsset: yes -timeCreated: 1634717866 -licenseType: Store -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Plugins/SimpleFileBrowser/Skins/DarkSkin.asset b/Assets/Plugins/SimpleFileBrowser/Skins/DarkSkin.asset deleted file mode 100644 index eaded7d..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Skins/DarkSkin.asset +++ /dev/null @@ -1,153 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &11400000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 66bc3ce4885990c40a88f80fe0ad0101, type: 3} - m_Name: DarkSkin - m_EditorClassIdentifier: - m_font: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSize: 14 - m_rowHeight: 30 - m_rowSpacing: 8 - m_windowColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_filesListColor: {r: 0.15686275, g: 0.15686275, b: 0.15686275, a: 1} - m_filesVerticalSeparatorColor: {r: 0.334, g: 0.334, b: 0.334, a: 1} - m_titleBackgroundColor: {r: 0.07058824, g: 0.07058824, b: 0.07058824, a: 1} - m_titleTextColor: {r: 1, g: 1, b: 1, a: 0.87058824} - m_windowResizeGizmoColor: {r: 1, g: 1, b: 1, a: 0.87058824} - m_headerButtonsColor: {r: 1, g: 1, b: 1, a: 1} - m_windowResizeGizmo: {fileID: 21300000, guid: 285f1e681b119ce48ae469448241360b, - type: 3} - m_headerBackButton: {fileID: 21300000, guid: 130f660889a70c947bff4c8ba8a2c73e, type: 3} - m_headerForwardButton: {fileID: 21300000, guid: 130f660889a70c947bff4c8ba8a2c73e, - type: 3} - m_headerUpButton: {fileID: 21300000, guid: 130f660889a70c947bff4c8ba8a2c73e, type: 3} - m_headerContextMenuButton: {fileID: 21300000, guid: 3eb0ab0fddc930a498bef8ce7e149ea0, - type: 3} - m_inputFieldNormalBackgroundColor: {r: 0.18039216, g: 0.18039216, b: 0.18039216, - a: 1} - m_inputFieldInvalidBackgroundColor: {r: 0.4392157, g: 0.12156863, b: 0.12156863, - a: 1} - m_inputFieldTextColor: {r: 1, g: 1, b: 1, a: 0.87058824} - m_inputFieldPlaceholderTextColor: {r: 1, g: 1, b: 1, a: 0.6509804} - m_inputFieldSelectedTextColor: {r: 0.13725491, g: 0.46666667, b: 0.69411767, a: 0.5019608} - m_inputFieldCaretColor: {r: 1, g: 1, b: 1, a: 1} - m_inputFieldBackground: {fileID: 21300000, guid: f668f62689b67d242ad33ff665594344, - type: 3} - m_buttonColor: {r: 0.18039216, g: 0.18039216, b: 0.18039216, a: 1} - m_buttonTextColor: {r: 1, g: 1, b: 1, a: 0.87058824} - m_buttonBackground: {fileID: 21300000, guid: 2c46fa192de46b04e8281f225bee0230, type: 3} - m_dropdownColor: {r: 0.18039216, g: 0.18039216, b: 0.18039216, a: 1} - m_dropdownTextColor: {r: 1, g: 1, b: 1, a: 0.87058824} - m_dropdownArrowColor: {r: 1, g: 1, b: 1, a: 0.87058824} - m_dropdownCheckmarkColor: {r: 1, g: 1, b: 1, a: 0.87058824} - m_dropdownBackground: {fileID: 21300000, guid: 2c46fa192de46b04e8281f225bee0230, - type: 3} - m_dropdownArrow: {fileID: 21300000, guid: f73f38102c749484bbd884d4d8d87440, type: 3} - m_dropdownCheckmark: {fileID: 21300000, guid: 4924b77159e651e4aaa9a22286725d94, - type: 3} - m_toggleColor: {r: 0.18039216, g: 0.18039216, b: 0.18039216, a: 1} - m_toggleTextColor: {r: 1, g: 1, b: 1, a: 0.87058824} - m_toggleCheckmarkColor: {r: 1, g: 1, b: 1, a: 0.87058824} - m_toggleBackground: {fileID: 21300000, guid: f668f62689b67d242ad33ff665594344, type: 3} - m_toggleCheckmark: {fileID: 21300000, guid: 4924b77159e651e4aaa9a22286725d94, type: 3} - m_scrollbarBackgroundColor: {r: 0.07058824, g: 0.07058824, b: 0.07058824, a: 1} - m_scrollbarColor: {r: 0.26666668, g: 0.26666668, b: 0.26666668, a: 1} - m_fileHeight: 30 - m_fileIconsPadding: 6 - m_fileNormalBackgroundColor: {r: 1, g: 1, b: 1, a: 0} - m_fileAlternatingBackgroundColor: {r: 1, g: 1, b: 1, a: 0.043137256} - m_fileHoveredBackgroundColor: {r: 0.88235295, g: 0.88235295, b: 1, a: 0.2} - m_fileSelectedBackgroundColor: {r: 0, g: 0.34117648, b: 0.5803922, a: 1} - m_fileNormalTextColor: {r: 1, g: 1, b: 1, a: 0.87058824} - m_fileSelectedTextColor: {r: 1, g: 1, b: 1, a: 0.87058824} - m_folderIcon: {fileID: 21300000, guid: 27947666271b231439b4409a81cb5d59, type: 3} - m_driveIcon: {fileID: 21300000, guid: 81da6e5b6342f8f47a5a3a24221306c6, type: 3} - m_defaultFileIcon: {fileID: 21300000, guid: 89f87b95a0cf73b4484ab74fe3f9ea26, type: 3} - m_filetypeIcons: - - extension: .txt - icon: {fileID: 21300000, guid: d06b8cf70dff2fe418249a6276f9ff70, type: 3} - - extension: .doc - icon: {fileID: 21300000, guid: d06b8cf70dff2fe418249a6276f9ff70, type: 3} - - extension: .docx - icon: {fileID: 21300000, guid: d06b8cf70dff2fe418249a6276f9ff70, type: 3} - - extension: .xml - icon: {fileID: 21300000, guid: d06b8cf70dff2fe418249a6276f9ff70, type: 3} - - extension: .json - icon: {fileID: 21300000, guid: d06b8cf70dff2fe418249a6276f9ff70, type: 3} - - extension: .rtf - icon: {fileID: 21300000, guid: d06b8cf70dff2fe418249a6276f9ff70, type: 3} - - extension: .pdf - icon: {fileID: 21300000, guid: ac5741fcd06d2ce45b9ae2ce9df3c4a1, type: 3} - - extension: .jpg - icon: {fileID: 21300000, guid: 93482309cf79cef4a9ed8464c560334b, type: 3} - - extension: .jpeg - icon: {fileID: 21300000, guid: 93482309cf79cef4a9ed8464c560334b, type: 3} - - extension: .png - icon: {fileID: 21300000, guid: 93482309cf79cef4a9ed8464c560334b, type: 3} - - extension: .gif - icon: {fileID: 21300000, guid: 93482309cf79cef4a9ed8464c560334b, type: 3} - - extension: .bmp - icon: {fileID: 21300000, guid: 93482309cf79cef4a9ed8464c560334b, type: 3} - - extension: .psd - icon: {fileID: 21300000, guid: 93482309cf79cef4a9ed8464c560334b, type: 3} - - extension: .tif - icon: {fileID: 21300000, guid: 93482309cf79cef4a9ed8464c560334b, type: 3} - - extension: .tiff - icon: {fileID: 21300000, guid: 93482309cf79cef4a9ed8464c560334b, type: 3} - - extension: .mp4 - icon: {fileID: 21300000, guid: 53a62df1d392a10498ec79719f8eef1f, type: 3} - - extension: .mkv - icon: {fileID: 21300000, guid: 53a62df1d392a10498ec79719f8eef1f, type: 3} - - extension: .mov - icon: {fileID: 21300000, guid: 53a62df1d392a10498ec79719f8eef1f, type: 3} - - extension: .avi - icon: {fileID: 21300000, guid: 53a62df1d392a10498ec79719f8eef1f, type: 3} - - extension: .flv - icon: {fileID: 21300000, guid: 53a62df1d392a10498ec79719f8eef1f, type: 3} - - extension: .webm - icon: {fileID: 21300000, guid: 53a62df1d392a10498ec79719f8eef1f, type: 3} - - extension: .wmv - icon: {fileID: 21300000, guid: 53a62df1d392a10498ec79719f8eef1f, type: 3} - - extension: .mp3 - icon: {fileID: 21300000, guid: 293ea6a99c4ba134cae49556942ee0ff, type: 3} - - extension: .wav - icon: {fileID: 21300000, guid: 293ea6a99c4ba134cae49556942ee0ff, type: 3} - - extension: .aac - icon: {fileID: 21300000, guid: 293ea6a99c4ba134cae49556942ee0ff, type: 3} - - extension: .m4a - icon: {fileID: 21300000, guid: 293ea6a99c4ba134cae49556942ee0ff, type: 3} - - extension: .ogg - icon: {fileID: 21300000, guid: 293ea6a99c4ba134cae49556942ee0ff, type: 3} - - extension: .wma - icon: {fileID: 21300000, guid: 293ea6a99c4ba134cae49556942ee0ff, type: 3} - - extension: .flac - icon: {fileID: 21300000, guid: 293ea6a99c4ba134cae49556942ee0ff, type: 3} - - extension: .zip - icon: {fileID: 21300000, guid: 3b2a773e413d3e84f8c7c757734af584, type: 3} - - extension: .rar - icon: {fileID: 21300000, guid: 3b2a773e413d3e84f8c7c757734af584, type: 3} - - extension: .7z - icon: {fileID: 21300000, guid: 3b2a773e413d3e84f8c7c757734af584, type: 3} - - extension: .gz - icon: {fileID: 21300000, guid: 3b2a773e413d3e84f8c7c757734af584, type: 3} - - extension: .exe - icon: {fileID: 21300000, guid: c1e1f7ef76f59f54bbde5162f2709794, type: 3} - m_fileMultiSelectionToggleOffIcon: {fileID: 21300000, guid: d6beaeac8de2af749a48581db778df3e, - type: 3} - m_fileMultiSelectionToggleOnIcon: {fileID: 21300000, guid: 30a2566f94f937b4998542121050e68b, - type: 3} - m_contextMenuBackgroundColor: {r: 0.11372549, g: 0.11372549, b: 0.11372549, a: 1} - m_contextMenuTextColor: {r: 1, g: 1, b: 1, a: 0.87058824} - m_contextMenuSeparatorColor: {r: 0.6392157, g: 0.6392157, b: 0.6392157, a: 1} - m_popupPanelsBackgroundColor: {r: 0.18039216, g: 0.18039216, b: 0.18039216, a: 1} - m_popupPanelsTextColor: {r: 1, g: 1, b: 1, a: 0.87058824} - m_popupPanelsBackground: {fileID: 21300000, guid: b9c5fedc997f125448c4d8be2fc43bcd, - type: 3} diff --git a/Assets/Plugins/SimpleFileBrowser/Skins/DarkSkin.asset.meta b/Assets/Plugins/SimpleFileBrowser/Skins/DarkSkin.asset.meta deleted file mode 100644 index 5db6082..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Skins/DarkSkin.asset.meta +++ /dev/null @@ -1,16 +0,0 @@ -fileFormatVersion: 2 -guid: 07c1616acb3e05d4789781b38d6ab800 -timeCreated: 1634717905 -licenseType: Store -NativeFormatImporter: - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Skins/DarkSkin.asset - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Skins/LightSkin.asset b/Assets/Plugins/SimpleFileBrowser/Skins/LightSkin.asset deleted file mode 100644 index 6da365f..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Skins/LightSkin.asset +++ /dev/null @@ -1,152 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!114 &11400000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 66bc3ce4885990c40a88f80fe0ad0101, type: 3} - m_Name: LightSkin - m_EditorClassIdentifier: - m_font: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} - m_fontSize: 14 - m_rowHeight: 30 - m_rowSpacing: 8 - m_windowColor: {r: 0.9338235, g: 0.9338235, b: 0.9338235, a: 1} - m_filesListColor: {r: 1, g: 1, b: 1, a: 1} - m_filesVerticalSeparatorColor: {r: 0.6397059, g: 0.6397059, b: 0.6397059, a: 1} - m_titleBackgroundColor: {r: 0.30882353, g: 0.30882353, b: 0.30882353, a: 1} - m_titleTextColor: {r: 1, g: 1, b: 1, a: 1} - m_windowResizeGizmoColor: {r: 0.5294118, g: 0.5294118, b: 0.5294118, a: 1} - m_headerButtonsColor: {r: 1, g: 1, b: 1, a: 1} - m_windowResizeGizmo: {fileID: 21300000, guid: 285f1e681b119ce48ae469448241360b, - type: 3} - m_headerBackButton: {fileID: 21300000, guid: 130f660889a70c947bff4c8ba8a2c73e, type: 3} - m_headerForwardButton: {fileID: 21300000, guid: 130f660889a70c947bff4c8ba8a2c73e, - type: 3} - m_headerUpButton: {fileID: 21300000, guid: 130f660889a70c947bff4c8ba8a2c73e, type: 3} - m_headerContextMenuButton: {fileID: 21300000, guid: 3eb0ab0fddc930a498bef8ce7e149ea0, - type: 3} - m_inputFieldNormalBackgroundColor: {r: 1, g: 1, b: 1, a: 1} - m_inputFieldInvalidBackgroundColor: {r: 1, g: 0.39215687, b: 0.39215687, a: 1} - m_inputFieldTextColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_inputFieldPlaceholderTextColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, - a: 0.5} - m_inputFieldSelectedTextColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} - m_inputFieldCaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_inputFieldBackground: {fileID: 21300000, guid: f668f62689b67d242ad33ff665594344, - type: 3} - m_buttonColor: {r: 1, g: 1, b: 1, a: 1} - m_buttonTextColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_buttonBackground: {fileID: 21300000, guid: 2c46fa192de46b04e8281f225bee0230, type: 3} - m_dropdownColor: {r: 1, g: 1, b: 1, a: 1} - m_dropdownTextColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_dropdownArrowColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_dropdownCheckmarkColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_dropdownBackground: {fileID: 21300000, guid: 2c46fa192de46b04e8281f225bee0230, - type: 3} - m_dropdownArrow: {fileID: 21300000, guid: f73f38102c749484bbd884d4d8d87440, type: 3} - m_dropdownCheckmark: {fileID: 21300000, guid: 4924b77159e651e4aaa9a22286725d94, - type: 3} - m_toggleColor: {r: 1, g: 1, b: 1, a: 1} - m_toggleTextColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_toggleCheckmarkColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_toggleBackground: {fileID: 21300000, guid: f668f62689b67d242ad33ff665594344, type: 3} - m_toggleCheckmark: {fileID: 21300000, guid: 4924b77159e651e4aaa9a22286725d94, type: 3} - m_scrollbarBackgroundColor: {r: 0.9191176, g: 0.9191176, b: 0.9191176, a: 1} - m_scrollbarColor: {r: 0.7647059, g: 0.7647059, b: 0.7647059, a: 1} - m_fileHeight: 30 - m_fileIconsPadding: 6 - m_fileNormalBackgroundColor: {r: 1, g: 1, b: 1, a: 0} - m_fileAlternatingBackgroundColor: {r: 1, g: 1, b: 1, a: 0} - m_fileHoveredBackgroundColor: {r: 0.8980392, g: 0.9529412, b: 1, a: 1} - m_fileSelectedBackgroundColor: {r: 0.7058824, g: 0.8666667, b: 1, a: 1} - m_fileNormalTextColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_fileSelectedTextColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_folderIcon: {fileID: 21300000, guid: 27947666271b231439b4409a81cb5d59, type: 3} - m_driveIcon: {fileID: 21300000, guid: 81da6e5b6342f8f47a5a3a24221306c6, type: 3} - m_defaultFileIcon: {fileID: 21300000, guid: 89f87b95a0cf73b4484ab74fe3f9ea26, type: 3} - m_filetypeIcons: - - extension: .txt - icon: {fileID: 21300000, guid: d06b8cf70dff2fe418249a6276f9ff70, type: 3} - - extension: .doc - icon: {fileID: 21300000, guid: d06b8cf70dff2fe418249a6276f9ff70, type: 3} - - extension: .docx - icon: {fileID: 21300000, guid: d06b8cf70dff2fe418249a6276f9ff70, type: 3} - - extension: .xml - icon: {fileID: 21300000, guid: d06b8cf70dff2fe418249a6276f9ff70, type: 3} - - extension: .json - icon: {fileID: 21300000, guid: d06b8cf70dff2fe418249a6276f9ff70, type: 3} - - extension: .rtf - icon: {fileID: 21300000, guid: d06b8cf70dff2fe418249a6276f9ff70, type: 3} - - extension: .pdf - icon: {fileID: 21300000, guid: ac5741fcd06d2ce45b9ae2ce9df3c4a1, type: 3} - - extension: .jpg - icon: {fileID: 21300000, guid: 93482309cf79cef4a9ed8464c560334b, type: 3} - - extension: .jpeg - icon: {fileID: 21300000, guid: 93482309cf79cef4a9ed8464c560334b, type: 3} - - extension: .png - icon: {fileID: 21300000, guid: 93482309cf79cef4a9ed8464c560334b, type: 3} - - extension: .gif - icon: {fileID: 21300000, guid: 93482309cf79cef4a9ed8464c560334b, type: 3} - - extension: .bmp - icon: {fileID: 21300000, guid: 93482309cf79cef4a9ed8464c560334b, type: 3} - - extension: .psd - icon: {fileID: 21300000, guid: 93482309cf79cef4a9ed8464c560334b, type: 3} - - extension: .tif - icon: {fileID: 21300000, guid: 93482309cf79cef4a9ed8464c560334b, type: 3} - - extension: .tiff - icon: {fileID: 21300000, guid: 93482309cf79cef4a9ed8464c560334b, type: 3} - - extension: .mp4 - icon: {fileID: 21300000, guid: 53a62df1d392a10498ec79719f8eef1f, type: 3} - - extension: .mkv - icon: {fileID: 21300000, guid: 53a62df1d392a10498ec79719f8eef1f, type: 3} - - extension: .mov - icon: {fileID: 21300000, guid: 53a62df1d392a10498ec79719f8eef1f, type: 3} - - extension: .avi - icon: {fileID: 21300000, guid: 53a62df1d392a10498ec79719f8eef1f, type: 3} - - extension: .flv - icon: {fileID: 21300000, guid: 53a62df1d392a10498ec79719f8eef1f, type: 3} - - extension: .webm - icon: {fileID: 21300000, guid: 53a62df1d392a10498ec79719f8eef1f, type: 3} - - extension: .wmv - icon: {fileID: 21300000, guid: 53a62df1d392a10498ec79719f8eef1f, type: 3} - - extension: .mp3 - icon: {fileID: 21300000, guid: 293ea6a99c4ba134cae49556942ee0ff, type: 3} - - extension: .wav - icon: {fileID: 21300000, guid: 293ea6a99c4ba134cae49556942ee0ff, type: 3} - - extension: .aac - icon: {fileID: 21300000, guid: 293ea6a99c4ba134cae49556942ee0ff, type: 3} - - extension: .m4a - icon: {fileID: 21300000, guid: 293ea6a99c4ba134cae49556942ee0ff, type: 3} - - extension: .ogg - icon: {fileID: 21300000, guid: 293ea6a99c4ba134cae49556942ee0ff, type: 3} - - extension: .wma - icon: {fileID: 21300000, guid: 293ea6a99c4ba134cae49556942ee0ff, type: 3} - - extension: .flac - icon: {fileID: 21300000, guid: 293ea6a99c4ba134cae49556942ee0ff, type: 3} - - extension: .zip - icon: {fileID: 21300000, guid: 3b2a773e413d3e84f8c7c757734af584, type: 3} - - extension: .rar - icon: {fileID: 21300000, guid: 3b2a773e413d3e84f8c7c757734af584, type: 3} - - extension: .7z - icon: {fileID: 21300000, guid: 3b2a773e413d3e84f8c7c757734af584, type: 3} - - extension: .gz - icon: {fileID: 21300000, guid: 3b2a773e413d3e84f8c7c757734af584, type: 3} - - extension: .exe - icon: {fileID: 21300000, guid: c1e1f7ef76f59f54bbde5162f2709794, type: 3} - m_fileMultiSelectionToggleOffIcon: {fileID: 21300000, guid: d6beaeac8de2af749a48581db778df3e, - type: 3} - m_fileMultiSelectionToggleOnIcon: {fileID: 21300000, guid: 30a2566f94f937b4998542121050e68b, - type: 3} - m_contextMenuBackgroundColor: {r: 0.955, g: 0.955, b: 0.955, a: 1} - m_contextMenuTextColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_contextMenuSeparatorColor: {r: 0.6397059, g: 0.6397059, b: 0.6397059, a: 1} - m_popupPanelsBackgroundColor: {r: 0.955, g: 0.955, b: 0.955, a: 1} - m_popupPanelsTextColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_popupPanelsBackground: {fileID: 21300000, guid: b9c5fedc997f125448c4d8be2fc43bcd, - type: 3} diff --git a/Assets/Plugins/SimpleFileBrowser/Skins/LightSkin.asset.meta b/Assets/Plugins/SimpleFileBrowser/Skins/LightSkin.asset.meta deleted file mode 100644 index 20b7367..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Skins/LightSkin.asset.meta +++ /dev/null @@ -1,16 +0,0 @@ -fileFormatVersion: 2 -guid: 758becaa4751c514ab3abd821b4078bb -timeCreated: 1634717905 -licenseType: Store -NativeFormatImporter: - mainObjectFileID: 11400000 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Skins/LightSkin.asset - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites.meta b/Assets/Plugins/SimpleFileBrowser/Sprites.meta deleted file mode 100644 index ae9daae..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: 651607359bdd10946a8eafc45e7d1445 -folderAsset: yes -timeCreated: 1479476379 -licenseType: Store -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/Checkmark.psd b/Assets/Plugins/SimpleFileBrowser/Sprites/Checkmark.psd deleted file mode 100644 index 2206468..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/Checkmark.psd and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/Checkmark.psd.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/Checkmark.psd.meta deleted file mode 100644 index d3eff76..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/Checkmark.psd.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: 4924b77159e651e4aaa9a22286725d94 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 5 - maxTextureSize: 32 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 1 - pSDShowRemoveMatteOption: 1 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/Checkmark.psd - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/DropdownArrow.psd b/Assets/Plugins/SimpleFileBrowser/Sprites/DropdownArrow.psd deleted file mode 100644 index 850edf8..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/DropdownArrow.psd and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/DropdownArrow.psd.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/DropdownArrow.psd.meta deleted file mode 100644 index 1a4422c..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/DropdownArrow.psd.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: f73f38102c749484bbd884d4d8d87440 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 5 - maxTextureSize: 32 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 1 - pSDShowRemoveMatteOption: 1 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/DropdownArrow.psd - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/ErrorIcon.psd b/Assets/Plugins/SimpleFileBrowser/Sprites/ErrorIcon.psd deleted file mode 100644 index c96c48f..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/ErrorIcon.psd and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/ErrorIcon.psd.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/ErrorIcon.psd.meta deleted file mode 100644 index da069df..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/ErrorIcon.psd.meta +++ /dev/null @@ -1,142 +0,0 @@ -fileFormatVersion: 2 -guid: 01b10cc2da49f7442ba6525072e1f86a -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: -3 - maxTextureSize: 64 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Windows Store Apps - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 1 - pSDShowRemoveMatteOption: 1 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/ErrorIcon.psd - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons.meta deleted file mode 100644 index d2d069f..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons.meta +++ /dev/null @@ -1,9 +0,0 @@ -fileFormatVersion: 2 -guid: a1b4f73b07909c94393f4feccb24fec5 -folderAsset: yes -timeCreated: 1634649107 -licenseType: Store -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/ArchiveIcon.png b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/ArchiveIcon.png deleted file mode 100644 index 464d283..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/ArchiveIcon.png and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/ArchiveIcon.png.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/ArchiveIcon.png.meta deleted file mode 100644 index 3670782..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/ArchiveIcon.png.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: 3b2a773e413d3e84f8c7c757734af584 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/ArchiveIcon.png - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/AudioFileIcon.png b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/AudioFileIcon.png deleted file mode 100644 index 2848b7a..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/AudioFileIcon.png and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/AudioFileIcon.png.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/AudioFileIcon.png.meta deleted file mode 100644 index 9f4b4e6..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/AudioFileIcon.png.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: 293ea6a99c4ba134cae49556942ee0ff -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/AudioFileIcon.png - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/DefaultFileIcon.png b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/DefaultFileIcon.png deleted file mode 100644 index 93c7b62..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/DefaultFileIcon.png and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/DefaultFileIcon.png.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/DefaultFileIcon.png.meta deleted file mode 100644 index 3c452dc..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/DefaultFileIcon.png.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: 89f87b95a0cf73b4484ab74fe3f9ea26 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/DefaultFileIcon.png - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/DriveIcon.png b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/DriveIcon.png deleted file mode 100644 index 41e392e..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/DriveIcon.png and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/DriveIcon.png.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/DriveIcon.png.meta deleted file mode 100644 index e5023e7..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/DriveIcon.png.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: 81da6e5b6342f8f47a5a3a24221306c6 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/DriveIcon.png - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/ExecutableIcon.png b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/ExecutableIcon.png deleted file mode 100644 index 62223c3..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/ExecutableIcon.png and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/ExecutableIcon.png.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/ExecutableIcon.png.meta deleted file mode 100644 index 8f20c97..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/ExecutableIcon.png.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: c1e1f7ef76f59f54bbde5162f2709794 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/ExecutableIcon.png - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/FolderIcon.png b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/FolderIcon.png deleted file mode 100644 index bd2b595..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/FolderIcon.png and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/FolderIcon.png.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/FolderIcon.png.meta deleted file mode 100644 index 346a518..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/FolderIcon.png.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: 27947666271b231439b4409a81cb5d59 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/FolderIcon.png - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/ImageFileIcon.png b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/ImageFileIcon.png deleted file mode 100644 index f2c5829..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/ImageFileIcon.png and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/ImageFileIcon.png.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/ImageFileIcon.png.meta deleted file mode 100644 index b555916..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/ImageFileIcon.png.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: 93482309cf79cef4a9ed8464c560334b -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/ImageFileIcon.png - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/LICENSE.txt b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/LICENSE.txt deleted file mode 100644 index 8199ebc..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/LICENSE.txt +++ /dev/null @@ -1,12 +0,0 @@ -The following sprites are taken from external sources and licensed under the CC0 License: - -- ArchiveIcon: https://www.pngrepo.com/svg/227623/zip -- AudioFileIcon: https://www.pngrepo.com/svg/293355/music -- DefaultFileIcon: https://www.pngrepo.com/svg/200084/file-sheet -- DriveIcon: https://www.pngrepo.com/svg/152885/hard-drive-device -- ExecutableIcon: Created from scratch -- FolderIcon: https://www.pngrepo.com/svg/229838/folder -- ImageFileIcon: https://www.pngrepo.com/svg/231128/picture-image -- PdfFileIcon: https://www.pngrepo.com/svg/28209/pdf -- TextFileIcon: https://www.pngrepo.com/svg/241790/file-document -- VideoFileIcon: https://www.pngrepo.com/svg/79032/play-video \ No newline at end of file diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/LICENSE.txt.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/LICENSE.txt.meta deleted file mode 100644 index 46c128b..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/LICENSE.txt.meta +++ /dev/null @@ -1,15 +0,0 @@ -fileFormatVersion: 2 -guid: 99791c82b2c040241ae29b4408c8e02f -timeCreated: 1563308858 -licenseType: Store -TextScriptImporter: - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/LICENSE.txt - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/PdfFileIcon.png b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/PdfFileIcon.png deleted file mode 100644 index 8c77d3e..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/PdfFileIcon.png and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/PdfFileIcon.png.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/PdfFileIcon.png.meta deleted file mode 100644 index d291f4e..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/PdfFileIcon.png.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: ac5741fcd06d2ce45b9ae2ce9df3c4a1 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/PdfFileIcon.png - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/TextFileIcon.png b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/TextFileIcon.png deleted file mode 100644 index c41af25..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/TextFileIcon.png and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/TextFileIcon.png.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/TextFileIcon.png.meta deleted file mode 100644 index 60b4020..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/TextFileIcon.png.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: d06b8cf70dff2fe418249a6276f9ff70 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/TextFileIcon.png - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/VideoFileIcon.png b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/VideoFileIcon.png deleted file mode 100644 index 4430d9e..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/VideoFileIcon.png and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/VideoFileIcon.png.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/VideoFileIcon.png.meta deleted file mode 100644 index 53f79a8..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/VideoFileIcon.png.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: 53a62df1d392a10498ec79719f8eef1f -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 64 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/FileIcons/VideoFileIcon.png - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/ForwardArrow.psd b/Assets/Plugins/SimpleFileBrowser/Sprites/ForwardArrow.psd deleted file mode 100644 index 331b879..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/ForwardArrow.psd and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/ForwardArrow.psd.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/ForwardArrow.psd.meta deleted file mode 100644 index 98a998f..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/ForwardArrow.psd.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: 130f660889a70c947bff4c8ba8a2c73e -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 5 - maxTextureSize: 32 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 1 - pSDShowRemoveMatteOption: 1 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/ForwardArrow.psd - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/MultiSelectionToggleOff.psd b/Assets/Plugins/SimpleFileBrowser/Sprites/MultiSelectionToggleOff.psd deleted file mode 100644 index 00d9023..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/MultiSelectionToggleOff.psd and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/MultiSelectionToggleOff.psd.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/MultiSelectionToggleOff.psd.meta deleted file mode 100644 index 1a8d4fc..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/MultiSelectionToggleOff.psd.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: d6beaeac8de2af749a48581db778df3e -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 5 - maxTextureSize: 32 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 1 - pSDShowRemoveMatteOption: 1 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/MultiSelectionToggleOff.psd - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/MultiSelectionToggleOn.psd b/Assets/Plugins/SimpleFileBrowser/Sprites/MultiSelectionToggleOn.psd deleted file mode 100644 index 6cfc765..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/MultiSelectionToggleOn.psd and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/MultiSelectionToggleOn.psd.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/MultiSelectionToggleOn.psd.meta deleted file mode 100644 index a1de483..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/MultiSelectionToggleOn.psd.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: 30a2566f94f937b4998542121050e68b -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 5 - maxTextureSize: 32 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 1 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 1 - pSDShowRemoveMatteOption: 1 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/MultiSelectionToggleOn.psd - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/ResizeCursor.png b/Assets/Plugins/SimpleFileBrowser/Sprites/ResizeCursor.png deleted file mode 100644 index 25fa774..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/ResizeCursor.png and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/ResizeCursor.png.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/ResizeCursor.png.meta deleted file mode 100644 index f6cee31..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/ResizeCursor.png.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: 5edcf29b853ebee47bf2c39ef6b99934 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 0 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 1 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 1 - maxTextureSize: 2048 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 1 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 0 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 7 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 0 - cookieLightType: 0 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 2048 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 1 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: - pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/ResizeCursor.png - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserDrag.psd b/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserDrag.psd deleted file mode 100644 index acf444d..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserDrag.psd and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserDrag.psd.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserDrag.psd.meta deleted file mode 100644 index 5de2709..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserDrag.psd.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: 285f1e681b119ce48ae469448241360b -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 5 - maxTextureSize: 32 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 1 - pSDShowRemoveMatteOption: 1 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserDrag.psd - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserMoreOptions.psd b/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserMoreOptions.psd deleted file mode 100644 index d86b522..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserMoreOptions.psd and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserMoreOptions.psd.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserMoreOptions.psd.meta deleted file mode 100644 index ccb5943..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserMoreOptions.psd.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: 3eb0ab0fddc930a498bef8ce7e149ea0 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 5 - maxTextureSize: 32 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 1 - pSDShowRemoveMatteOption: 1 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserMoreOptions.psd - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground1.psd b/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground1.psd deleted file mode 100644 index 1b8f183..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground1.psd and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground1.psd.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground1.psd.meta deleted file mode 100644 index 7dc6240..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground1.psd.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: f668f62689b67d242ad33ff665594344 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 5 - maxTextureSize: 32 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 5, y: 5, z: 5, w: 5} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 1 - pSDShowRemoveMatteOption: 1 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground1.psd - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground2.psd b/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground2.psd deleted file mode 100644 index 292b4b6..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground2.psd and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground2.psd.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground2.psd.meta deleted file mode 100644 index b79bde9..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground2.psd.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: 6ff773ea42aedd04c8bb96a1fe9a73b8 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 5 - maxTextureSize: 32 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 5, y: 5, z: 5, w: 5} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 1 - pSDShowRemoveMatteOption: 1 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground2.psd - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground3.psd b/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground3.psd deleted file mode 100644 index cc980b8..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground3.psd and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground3.psd.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground3.psd.meta deleted file mode 100644 index a36664b..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground3.psd.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: b9c5fedc997f125448c4d8be2fc43bcd -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 5 - maxTextureSize: 32 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 5, y: 5, z: 5, w: 5} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 1 - pSDShowRemoveMatteOption: 1 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground3.psd - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground4.psd b/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground4.psd deleted file mode 100644 index 271b0b0..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground4.psd and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground4.psd.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground4.psd.meta deleted file mode 100644 index 7412487..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground4.psd.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: 90bee1ddeeef38a4f860f96b5510c136 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 5 - maxTextureSize: 32 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 5, y: 5, z: 5, w: 5} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 1 - pSDShowRemoveMatteOption: 1 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground4.psd - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground5.psd b/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground5.psd deleted file mode 100644 index b365b8f..0000000 Binary files a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground5.psd and /dev/null differ diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground5.psd.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground5.psd.meta deleted file mode 100644 index cab2976..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground5.psd.meta +++ /dev/null @@ -1,130 +0,0 @@ -fileFormatVersion: 2 -guid: 2c46fa192de46b04e8281f225bee0230 -TextureImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 12 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - sRGBTexture: 1 - linearTexture: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapsPreserveCoverage: 0 - alphaTestReferenceValue: 0.5 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: 0.25 - normalMapFilter: 0 - isReadable: 0 - streamingMipmaps: 0 - streamingMipmapsPriority: 0 - vTOnly: 0 - ignoreMasterTextureLimit: 0 - grayScaleToAlpha: 0 - generateCubemap: 6 - cubemapConvolution: 0 - seamlessCubemap: 0 - textureFormat: 5 - maxTextureSize: 32 - textureSettings: - serializedVersion: 2 - filterMode: 1 - aniso: 16 - mipBias: 0 - wrapU: 1 - wrapV: 1 - wrapW: 1 - nPOTScale: 0 - lightmap: 0 - compressionQuality: 50 - spriteMode: 1 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: 0.5, y: 0.5} - spritePixelsToUnits: 100 - spriteBorder: {x: 5, y: 5, z: 5, w: 6} - spriteGenerateFallbackPhysicsShape: 1 - alphaUsage: 1 - alphaIsTransparency: 1 - spriteTessellationDetail: -1 - textureType: 8 - textureShape: 1 - singleChannelComponent: 0 - flipbookRows: 1 - flipbookColumns: 1 - maxTextureSizeSet: 0 - compressionQualitySet: 0 - textureFormatSet: 0 - ignorePngGamma: 0 - applyGammaDecoding: 1 - cookieLightType: 1 - platformSettings: - - serializedVersion: 3 - buildTarget: DefaultTexturePlatform - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Standalone - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: Android - maxTextureSize: 32 - resizeAlgorithm: 0 - textureFormat: -1 - textureCompression: 0 - compressionQuality: 50 - crunchedCompression: 0 - allowsAlphaSplitting: 0 - overridden: 0 - androidETC2FallbackOverride: 0 - forceMaximumCompressionQuality_BC6H_BC7: 0 - spriteSheet: - serializedVersion: 2 - sprites: [] - outline: [] - physicsShape: [] - bones: [] - spriteID: 5e97eb03825dee720800000000000000 - internalID: 0 - vertices: [] - indices: - edges: [] - weights: [] - secondaryTextures: [] - nameFileIdTable: {} - spritePackingTag: SimpleFileBrowserUI - pSDRemoveMatte: 1 - pSDShowRemoveMatteOption: 1 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSlicedBackground5.psd - uploadId: 842588 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSpriteAtlas.spriteatlas b/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSpriteAtlas.spriteatlas deleted file mode 100644 index 8e4e2a9..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSpriteAtlas.spriteatlas +++ /dev/null @@ -1,149 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!687078895 &4343727234628468602 -SpriteAtlas: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: SimpleFileBrowserSpriteAtlas - m_EditorData: - serializedVersion: 2 - textureSettings: - serializedVersion: 2 - anisoLevel: 1 - compressionQuality: 50 - maxTextureSize: 2048 - textureCompression: 0 - filterMode: 1 - generateMipMaps: 0 - readable: 0 - crunchedCompression: 0 - sRGB: 1 - platformSettings: - - serializedVersion: 4 - m_BuildTarget: DefaultTexturePlatform - m_MaxTextureSize: 2048 - m_ResizeAlgorithm: 0 - m_TextureFormat: -1 - m_TextureCompression: 0 - m_CompressionQuality: 50 - m_CrunchedCompression: 0 - m_AllowsAlphaSplitting: 0 - m_Overridden: 0 - m_IgnorePlatformSupport: 0 - m_AndroidETC2FallbackOverride: 0 - m_ForceMaximumCompressionQuality_BC6H_BC7: 1 - packingSettings: - serializedVersion: 2 - padding: 8 - blockOffset: 1 - allowAlphaSplitting: 0 - enableRotation: 0 - enableTightPacking: 0 - enableAlphaDilation: 0 - secondaryTextureSettings: {} - variantMultiplier: 1 - packables: - - {fileID: 2800000, guid: 3b2a773e413d3e84f8c7c757734af584, type: 3} - - {fileID: 2800000, guid: 293ea6a99c4ba134cae49556942ee0ff, type: 3} - - {fileID: 2800000, guid: 89f87b95a0cf73b4484ab74fe3f9ea26, type: 3} - - {fileID: 2800000, guid: 81da6e5b6342f8f47a5a3a24221306c6, type: 3} - - {fileID: 2800000, guid: c1e1f7ef76f59f54bbde5162f2709794, type: 3} - - {fileID: 2800000, guid: 27947666271b231439b4409a81cb5d59, type: 3} - - {fileID: 2800000, guid: 93482309cf79cef4a9ed8464c560334b, type: 3} - - {fileID: 2800000, guid: ac5741fcd06d2ce45b9ae2ce9df3c4a1, type: 3} - - {fileID: 2800000, guid: d06b8cf70dff2fe418249a6276f9ff70, type: 3} - - {fileID: 2800000, guid: 53a62df1d392a10498ec79719f8eef1f, type: 3} - - {fileID: 2800000, guid: 4924b77159e651e4aaa9a22286725d94, type: 3} - - {fileID: 2800000, guid: f73f38102c749484bbd884d4d8d87440, type: 3} - - {fileID: 2800000, guid: 01b10cc2da49f7442ba6525072e1f86a, type: 3} - - {fileID: 2800000, guid: 130f660889a70c947bff4c8ba8a2c73e, type: 3} - - {fileID: 2800000, guid: d6beaeac8de2af749a48581db778df3e, type: 3} - - {fileID: 2800000, guid: 30a2566f94f937b4998542121050e68b, type: 3} - - {fileID: 2800000, guid: 285f1e681b119ce48ae469448241360b, type: 3} - - {fileID: 2800000, guid: 3eb0ab0fddc930a498bef8ce7e149ea0, type: 3} - - {fileID: 2800000, guid: f668f62689b67d242ad33ff665594344, type: 3} - - {fileID: 2800000, guid: 6ff773ea42aedd04c8bb96a1fe9a73b8, type: 3} - - {fileID: 2800000, guid: b9c5fedc997f125448c4d8be2fc43bcd, type: 3} - - {fileID: 2800000, guid: 90bee1ddeeef38a4f860f96b5510c136, type: 3} - - {fileID: 2800000, guid: 2c46fa192de46b04e8281f225bee0230, type: 3} - bindAsDefault: 1 - isAtlasV2: 0 - cachedData: {fileID: 0} - packedSpriteRenderDataKeys: - - f73f38102c749484bbd884d4d8d87440: 21300000 - - 4924b77159e651e4aaa9a22286725d94: 21300000 - - 53a62df1d392a10498ec79719f8eef1f: 21300000 - - 01b10cc2da49f7442ba6525072e1f86a: 21300000 - - 89f87b95a0cf73b4484ab74fe3f9ea26: 21300000 - - f668f62689b67d242ad33ff665594344: 21300000 - - 27947666271b231439b4409a81cb5d59: 21300000 - - d06b8cf70dff2fe418249a6276f9ff70: 21300000 - - 130f660889a70c947bff4c8ba8a2c73e: 21300000 - - 285f1e681b119ce48ae469448241360b: 21300000 - - 93482309cf79cef4a9ed8464c560334b: 21300000 - - 2c46fa192de46b04e8281f225bee0230: 21300000 - - 293ea6a99c4ba134cae49556942ee0ff: 21300000 - - 6ff773ea42aedd04c8bb96a1fe9a73b8: 21300000 - - 81da6e5b6342f8f47a5a3a24221306c6: 21300000 - - d6beaeac8de2af749a48581db778df3e: 21300000 - - b9c5fedc997f125448c4d8be2fc43bcd: 21300000 - - ac5741fcd06d2ce45b9ae2ce9df3c4a1: 21300000 - - 90bee1ddeeef38a4f860f96b5510c136: 21300000 - - 3b2a773e413d3e84f8c7c757734af584: 21300000 - - 3eb0ab0fddc930a498bef8ce7e149ea0: 21300000 - - 30a2566f94f937b4998542121050e68b: 21300000 - - c1e1f7ef76f59f54bbde5162f2709794: 21300000 - m_MasterAtlas: {fileID: 0} - m_PackedSprites: - - {fileID: 21300000, guid: f73f38102c749484bbd884d4d8d87440, type: 3} - - {fileID: 21300000, guid: 4924b77159e651e4aaa9a22286725d94, type: 3} - - {fileID: 21300000, guid: 53a62df1d392a10498ec79719f8eef1f, type: 3} - - {fileID: 21300000, guid: 01b10cc2da49f7442ba6525072e1f86a, type: 3} - - {fileID: 21300000, guid: 89f87b95a0cf73b4484ab74fe3f9ea26, type: 3} - - {fileID: 21300000, guid: f668f62689b67d242ad33ff665594344, type: 3} - - {fileID: 21300000, guid: 27947666271b231439b4409a81cb5d59, type: 3} - - {fileID: 21300000, guid: d06b8cf70dff2fe418249a6276f9ff70, type: 3} - - {fileID: 21300000, guid: 130f660889a70c947bff4c8ba8a2c73e, type: 3} - - {fileID: 21300000, guid: 285f1e681b119ce48ae469448241360b, type: 3} - - {fileID: 21300000, guid: 93482309cf79cef4a9ed8464c560334b, type: 3} - - {fileID: 21300000, guid: 2c46fa192de46b04e8281f225bee0230, type: 3} - - {fileID: 21300000, guid: 293ea6a99c4ba134cae49556942ee0ff, type: 3} - - {fileID: 21300000, guid: 6ff773ea42aedd04c8bb96a1fe9a73b8, type: 3} - - {fileID: 21300000, guid: 81da6e5b6342f8f47a5a3a24221306c6, type: 3} - - {fileID: 21300000, guid: d6beaeac8de2af749a48581db778df3e, type: 3} - - {fileID: 21300000, guid: b9c5fedc997f125448c4d8be2fc43bcd, type: 3} - - {fileID: 21300000, guid: ac5741fcd06d2ce45b9ae2ce9df3c4a1, type: 3} - - {fileID: 21300000, guid: 90bee1ddeeef38a4f860f96b5510c136, type: 3} - - {fileID: 21300000, guid: 3b2a773e413d3e84f8c7c757734af584, type: 3} - - {fileID: 21300000, guid: 3eb0ab0fddc930a498bef8ce7e149ea0, type: 3} - - {fileID: 21300000, guid: 30a2566f94f937b4998542121050e68b, type: 3} - - {fileID: 21300000, guid: c1e1f7ef76f59f54bbde5162f2709794, type: 3} - m_PackedSpriteNamesToIndex: - - DropdownArrow - - Checkmark - - VideoFileIcon - - ErrorIcon - - DefaultFileIcon - - SimpleFileBrowserSlicedBackground1 - - FolderIcon - - TextFileIcon - - ForwardArrow - - SimpleFileBrowserDrag - - ImageFileIcon - - SimpleFileBrowserSlicedBackground5 - - AudioFileIcon - - SimpleFileBrowserSlicedBackground2 - - DriveIcon - - MultiSelectionToggleOff - - SimpleFileBrowserSlicedBackground3 - - PdfFileIcon - - SimpleFileBrowserSlicedBackground4 - - ArchiveIcon - - SimpleFileBrowserMoreOptions - - MultiSelectionToggleOn - - ExecutableIcon - m_RenderDataMap: {} - m_Tag: SimpleFileBrowserSpriteAtlas - m_IsVariant: 0 diff --git a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSpriteAtlas.spriteatlas.meta b/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSpriteAtlas.spriteatlas.meta deleted file mode 100644 index 4f3158c..0000000 --- a/Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSpriteAtlas.spriteatlas.meta +++ /dev/null @@ -1,15 +0,0 @@ -fileFormatVersion: 2 -guid: 1171c432c4306874fb9d5812093dcfac -NativeFormatImporter: - externalObjects: {} - mainObjectFileID: 4343727234628468602 - userData: - assetBundleName: - assetBundleVariant: -AssetOrigin: - serializedVersion: 1 - productId: 113006 - packageName: Runtime File Browser - packageVersion: 1.7.5 - assetPath: Assets/Plugins/SimpleFileBrowser/Sprites/SimpleFileBrowserSpriteAtlas.spriteatlas - uploadId: 842588 diff --git a/Assets/Scripts/PlayMenu.cs b/Assets/Scripts/PlayMenu.cs index dbb724a..25363ab 100644 --- a/Assets/Scripts/PlayMenu.cs +++ b/Assets/Scripts/PlayMenu.cs @@ -14,28 +14,31 @@ public class PlayMenu : MonoBehaviour [SerializeField] private Button customPlayButton; [SerializeField] private Button customNormalizeButton; - [SerializeField] private TMP_InputField normalBerryChance; - [SerializeField] private TMP_InputField poisonBerryChance; - [SerializeField] private TMP_InputField slowBerryChance; - [SerializeField] private TMP_InputField ultraBerryChance; - [SerializeField] private TMP_InputField speedyBerryChance; - [SerializeField] private TMP_InputField randomBerryChance; - [SerializeField] private TMP_InputField antiBerryChance; - [SerializeField] private TMP_InputField nothingBerryChance; - [SerializeField] private TMP_Text validateTotalText; - private readonly float defaultNormalBerryChance = 47.5f; - private readonly float defaultPoisonBerryChance = 12.5f; - private readonly float defaultSlowBerryChance = 10f; - private readonly float defaultUltraBerryChance = 10f; - private readonly float defaultSpeedyBerryChance = 10f; - private readonly float defaultRandomBerryChance = 5f; - private readonly float defaultAntiBerryChance = 5f; - private readonly float defaultNothingBerryChance = 0f; + private const float defaultNormalBerryChance = 47.5f; + private const float defaultPoisonBerryChance = 12.5f; + private const float defaultSlowBerryChance = 10f; + private const float defaultUltraBerryChance = 10f; + private const float defaultSpeedyBerryChance = 10f; + private const float defaultRandomBerryChance = 5f; + private const float defaultAntiBerryChance = 5f; + private const float defaultNothingBerryChance = 0f; + + private float normalBerryChance = defaultNormalBerryChance; + private float poisonBerryChance = defaultPoisonBerryChance; + private float slowBerryChance = defaultSlowBerryChance; + private float ultraBerryChance = defaultUltraBerryChance; + private float speedyBerryChance = defaultSpeedyBerryChance; + private float randomBerryChance = defaultRandomBerryChance; + private float antiBerryChance = defaultAntiBerryChance; + private float nothingBerryChance = defaultNothingBerryChance; + + [SerializeField] private TMP_Text modifyTip; void Awake() { + modifyTip.text = Application.isMobilePlatform ? "Tap a berry to modify it's spawn chances!" : "Click a berry to modify it's spawn chances!"; customButton.onClick.AddListener(() => { selectionMenu.SetActive(false); @@ -46,110 +49,92 @@ public class PlayMenu : MonoBehaviour customMenu.SetActive(false); selectionMenu.SetActive(true); - normalBerryChance.text = defaultNormalBerryChance.ToString(); - poisonBerryChance.text = defaultPoisonBerryChance.ToString(); - slowBerryChance.text = defaultSlowBerryChance.ToString(); - ultraBerryChance.text = defaultUltraBerryChance.ToString(); - speedyBerryChance.text = defaultSpeedyBerryChance.ToString(); - randomBerryChance.text = defaultRandomBerryChance.ToString(); - antiBerryChance.text = defaultAntiBerryChance.ToString(); - nothingBerryChance.text = defaultNothingBerryChance.ToString(); + normalBerryChance = defaultNormalBerryChance; + poisonBerryChance = defaultPoisonBerryChance; + slowBerryChance = defaultSlowBerryChance; + ultraBerryChance = defaultUltraBerryChance; + speedyBerryChance = defaultSpeedyBerryChance; + randomBerryChance = defaultRandomBerryChance; + antiBerryChance = defaultAntiBerryChance; + nothingBerryChance = defaultNothingBerryChance; ValidateTotal(); }); customNormalizeButton.onClick.AddListener(() => { - float normalBerry = GetValueFrom(normalBerryChance); - float poisonBerry = GetValueFrom(poisonBerryChance); - float slowBerry = GetValueFrom(slowBerryChance); - float ultraBerry = GetValueFrom(ultraBerryChance); - float speedyBerry = GetValueFrom(speedyBerryChance); - float randomBerry = GetValueFrom(randomBerryChance); - float antiBerry = GetValueFrom(antiBerryChance); - float nothingBerry = GetValueFrom(nothingBerryChance); - int divideBy = 0; - divideBy += normalBerry > 0 ? 1 : 0; - divideBy += poisonBerry > 0 ? 1 : 0; - divideBy += slowBerry > 0 ? 1 : 0; - divideBy += ultraBerry > 0 ? 1 : 0; - divideBy += speedyBerry > 0 ? 1 : 0; - divideBy += randomBerry > 0 ? 1 : 0; - divideBy += antiBerry > 0 ? 1 : 0; - divideBy += nothingBerry > 0 ? 1 : 0; + divideBy += normalBerryChance > 0 ? 1 : 0; + divideBy += poisonBerryChance > 0 ? 1 : 0; + divideBy += slowBerryChance > 0 ? 1 : 0; + divideBy += ultraBerryChance > 0 ? 1 : 0; + divideBy += speedyBerryChance > 0 ? 1 : 0; + divideBy += randomBerryChance > 0 ? 1 : 0; + divideBy += antiBerryChance > 0 ? 1 : 0; + divideBy += nothingBerryChance > 0 ? 1 : 0; - float addedChances = normalBerry + poisonBerry + slowBerry + ultraBerry + speedyBerry + randomBerry + antiBerry + nothingBerry; + float addedChances = normalBerryChance + poisonBerryChance + slowBerryChance + ultraBerryChance + speedyBerryChance + randomBerryChance + antiBerryChance + nothingBerryChance; float difference = addedChances - 100f; - if (normalBerry > 0) NormalizeOne(normalBerryChance, normalBerry, divideBy, difference); - if (poisonBerry > 0) NormalizeOne(poisonBerryChance, poisonBerry, divideBy, difference); - if (slowBerry > 0) NormalizeOne(slowBerryChance, slowBerry, divideBy, difference); - if (ultraBerry > 0) NormalizeOne(ultraBerryChance, ultraBerry, divideBy, difference); - if (speedyBerry > 0) NormalizeOne(speedyBerryChance, speedyBerry, divideBy, difference); - if (randomBerry > 0) NormalizeOne(randomBerryChance, randomBerry, divideBy, difference); - if (antiBerry > 0) NormalizeOne(antiBerryChance, antiBerry, divideBy, difference); - if (nothingBerry > 0) NormalizeOne(nothingBerryChance, nothingBerry, divideBy, difference); + if (normalBerryChance > 0) normalBerryChance -= difference / divideBy; + if (poisonBerryChance > 0) poisonBerryChance -= difference / divideBy; + if (slowBerryChance > 0) slowBerryChance -= difference / divideBy; + if (ultraBerryChance > 0) ultraBerryChance -= difference / divideBy; + if (speedyBerryChance > 0) speedyBerryChance -= difference / divideBy; + if (randomBerryChance > 0) randomBerryChance -= difference / divideBy; + if (antiBerryChance > 0) antiBerryChance -= difference / divideBy; + if (nothingBerryChance > 0) nothingBerryChance -= difference / divideBy; - normalBerry = GetValueFrom(normalBerryChance); - poisonBerry = GetValueFrom(poisonBerryChance); - slowBerry = GetValueFrom(slowBerryChance); - ultraBerry = GetValueFrom(ultraBerryChance); - speedyBerry = GetValueFrom(speedyBerryChance); - randomBerry = GetValueFrom(randomBerryChance); - antiBerry = GetValueFrom(antiBerryChance); - nothingBerry = GetValueFrom(nothingBerryChance); + if (normalBerryChance > 0) normalBerryChance = (float)Math.Floor(normalBerryChance); + if (poisonBerryChance > 0) poisonBerryChance = (float)Math.Floor(poisonBerryChance); + if (slowBerryChance > 0) slowBerryChance = (float)Math.Floor(slowBerryChance); + if (ultraBerryChance > 0) ultraBerryChance = (float)Math.Floor(ultraBerryChance); + if (speedyBerryChance > 0) speedyBerryChance = (float)Math.Floor(speedyBerryChance); + if (randomBerryChance > 0) randomBerryChance = (float)Math.Floor(randomBerryChance); + if (antiBerryChance > 0) antiBerryChance = (float)Math.Floor(antiBerryChance); + if (nothingBerryChance > 0) nothingBerryChance = (float)Math.Floor(nothingBerryChance); - if (normalBerry > 0) normalBerry = (float)Math.Floor(normalBerry); - if (poisonBerry > 0) poisonBerry = (float)Math.Floor(poisonBerry); - if (slowBerry > 0) slowBerry = (float)Math.Floor(slowBerry); - if (ultraBerry > 0) ultraBerry = (float)Math.Floor(ultraBerry); - if (speedyBerry > 0) speedyBerry = (float)Math.Floor(speedyBerry); - if (randomBerry > 0) randomBerry = (float)Math.Floor(randomBerry); - if (antiBerry > 0) antiBerry = (float)Math.Floor(antiBerry); - if (nothingBerry > 0) nothingBerry = (float)Math.Floor(nothingBerry); - - float addedChances2 = normalBerry + poisonBerry + slowBerry + ultraBerry + speedyBerry + randomBerry + antiBerry + nothingBerry; + float addedChances2 = normalBerryChance + poisonBerryChance + slowBerryChance + ultraBerryChance + speedyBerryChance + randomBerryChance + antiBerryChance + nothingBerryChance; float difference2 = addedChances2 - 100f; bool fixedValues = false; - if (normalBerry > 0) + if (normalBerryChance > 0) { - NormalizeTwo(normalBerryChance, fixedValues, normalBerry, difference2); + normalBerryChance = !fixedValues ? (normalBerryChance - difference2) : normalBerryChance; fixedValues = true; } - if (poisonBerry > 0) + if (poisonBerryChance > 0) { - NormalizeTwo(poisonBerryChance, fixedValues, poisonBerry, difference2); + poisonBerryChance = !fixedValues ? (poisonBerryChance - difference2) : poisonBerryChance; fixedValues = true; } - if (slowBerry > 0) + if (slowBerryChance > 0) { - NormalizeTwo(slowBerryChance, fixedValues, slowBerry, difference2); + slowBerryChance = !fixedValues ? (slowBerryChance - difference2) : slowBerryChance; fixedValues = true; } - if (ultraBerry > 0) + if (ultraBerryChance > 0) { - NormalizeTwo(ultraBerryChance, fixedValues, ultraBerry, difference2); + ultraBerryChance = !fixedValues ? (ultraBerryChance - difference2) : ultraBerryChance; fixedValues = true; } - if (speedyBerry > 0) + if (speedyBerryChance > 0) { - NormalizeTwo(speedyBerryChance, fixedValues, speedyBerry, difference2); + speedyBerryChance = !fixedValues ? (speedyBerryChance - difference2) : speedyBerryChance; fixedValues = true; } - if (randomBerry > 0) + if (randomBerryChance > 0) { - NormalizeTwo(randomBerryChance, fixedValues, randomBerry, difference2); + randomBerryChance = !fixedValues ? (randomBerryChance - difference2) : randomBerryChance; fixedValues = true; } - if (antiBerry > 0) + if (antiBerryChance > 0) { - NormalizeTwo(antiBerryChance, fixedValues, antiBerry, difference2); + antiBerryChance = !fixedValues ? (antiBerryChance - difference2) : antiBerryChance; fixedValues = true; } - if (nothingBerry > 0) + if (nothingBerryChance > 0) { - NormalizeTwo(nothingBerryChance, fixedValues, nothingBerry, difference2); + nothingBerryChance = !fixedValues ? (nothingBerryChance - difference2) : nothingBerryChance; fixedValues = true; } @@ -160,33 +145,16 @@ public class PlayMenu : MonoBehaviour GameObject obj = new("CustomGameTempData"); obj.AddComponent(); CustomGameTempData customGameTempData = obj.GetComponent(); - customGameTempData.normalBerryChance = GetValueFrom(normalBerryChance); - customGameTempData.poisonBerryChance = GetValueFrom(poisonBerryChance); - customGameTempData.slowBerryChance = GetValueFrom(slowBerryChance); - customGameTempData.ultraBerryChance = GetValueFrom(ultraBerryChance); - customGameTempData.speedyBerryChance = GetValueFrom(speedyBerryChance); - customGameTempData.randomBerryChance = GetValueFrom(randomBerryChance); - customGameTempData.antiBerryChance = GetValueFrom(antiBerryChance); - customGameTempData.nothingBerryChance = GetValueFrom(nothingBerryChance); + customGameTempData.normalBerryChance = normalBerryChance; + customGameTempData.poisonBerryChance = poisonBerryChance; + customGameTempData.slowBerryChance = slowBerryChance; + customGameTempData.ultraBerryChance = ultraBerryChance; + customGameTempData.speedyBerryChance = speedyBerryChance; + customGameTempData.randomBerryChance = randomBerryChance; + customGameTempData.antiBerryChance = antiBerryChance; + customGameTempData.nothingBerryChance = nothingBerryChance; await SceneManager.LoadSceneAsync("CustomGamePlayer"); }); - - normalBerryChance.onSelect.AddListener((value) => OnSelect(value, normalBerryChance)); - normalBerryChance.onDeselect.AddListener((value) => OnDeselect(value, normalBerryChance)); - poisonBerryChance.onSelect.AddListener((value) => OnSelect(value, poisonBerryChance)); - poisonBerryChance.onDeselect.AddListener((value) => OnDeselect(value, poisonBerryChance)); - slowBerryChance.onSelect.AddListener((value) => OnSelect(value, slowBerryChance)); - slowBerryChance.onDeselect.AddListener((value) => OnDeselect(value, slowBerryChance)); - ultraBerryChance.onSelect.AddListener((value) => OnSelect(value, ultraBerryChance)); - ultraBerryChance.onDeselect.AddListener((value) => OnDeselect(value, ultraBerryChance)); - speedyBerryChance.onSelect.AddListener((value) => OnSelect(value, speedyBerryChance)); - speedyBerryChance.onDeselect.AddListener((value) => OnDeselect(value, speedyBerryChance)); - randomBerryChance.onSelect.AddListener((value) => OnSelect(value, randomBerryChance)); - randomBerryChance.onDeselect.AddListener((value) => OnDeselect(value, randomBerryChance)); - antiBerryChance.onSelect.AddListener((value) => OnSelect(value, antiBerryChance)); - antiBerryChance.onDeselect.AddListener((value) => OnDeselect(value, antiBerryChance)); - nothingBerryChance.onSelect.AddListener((value) => OnSelect(value, nothingBerryChance)); - nothingBerryChance.onDeselect.AddListener((value) => OnDeselect(value, nothingBerryChance)); } void ValidateTotal() @@ -195,14 +163,14 @@ public class PlayMenu : MonoBehaviour customPlayButton.interactable = false; customNormalizeButton.interactable = false; float total = 0f; - total += GetValueFrom(normalBerryChance); - total += GetValueFrom(poisonBerryChance); - total += GetValueFrom(slowBerryChance); - total += GetValueFrom(ultraBerryChance); - total += GetValueFrom(speedyBerryChance); - total += GetValueFrom(randomBerryChance); - total += GetValueFrom(antiBerryChance); - total += GetValueFrom(nothingBerryChance); + total += normalBerryChance; + total += poisonBerryChance; + total += slowBerryChance; + total += ultraBerryChance; + total += speedyBerryChance; + total += randomBerryChance; + total += antiBerryChance; + total += nothingBerryChance; if (total == 100f) { customBackButton.interactable = true; @@ -217,63 +185,6 @@ public class PlayMenu : MonoBehaviour } } - private float GetValueFrom(TMP_InputField inputField) - { - return GetValueFroText(inputField.text); - } - - private float GetValueFroText(string text) - { - try - { - return float.Parse(text.Replace("%", "").Trim()); - } - catch - { - return 0f; - } - } - - void OnSelect(string value, TMP_InputField inputField) - { - validateTotalText.gameObject.SetActive(false); - customBackButton.interactable = false; - customPlayButton.interactable = false; - customNormalizeButton.interactable = false; - inputField.text = value.Replace("%", ""); - inputField.stringPosition = inputField.text.Length; - } - - void OnDeselect(string value, TMP_InputField inputField) - { - if (float.TryParse(value, out var value2) && value2 < 0f) - { - value = "0"; - } - inputField.text = value + "%"; - ValidateTotal(); - } - - void NormalizeOne(TMP_InputField inputField, float berryChance, int divideBy, float difference) - { - inputField.text = (berryChance - (difference / divideBy)).ToString() + "%"; - inputField.stringPosition = inputField.text.Length; - } - - void NormalizeTwo(TMP_InputField inputField, bool fixedValues, float berryChance, float difference2) - { - if (!fixedValues) - { - inputField.text = (berryChance - difference2).ToString() + "%"; - inputField.stringPosition = inputField.text.Length; - } - else - { - inputField.text = berryChance.ToString() + "%"; - inputField.stringPosition = inputField.text.Length; - } - } - async void Update() { if (Keyboard.current.escapeKey.wasPressedThisFrame) diff --git a/Packages/manifest.json b/Packages/manifest.json index 7cff0dc..0174298 100644 --- a/Packages/manifest.json +++ b/Packages/manifest.json @@ -21,6 +21,7 @@ "com.unity.toolchain.macos-arm64-linux": "1.0.2", "com.unity.ugui": "2.0.0", "com.unity.visualscripting": "1.9.9", + "com.yasirkula.simplefilebrowser": "https://github.com/yasirkula/UnitySimpleFileBrowser.git", "com.unity.modules.accessibility": "1.0.0", "com.unity.modules.adaptiveperformance": "1.0.0", "com.unity.modules.ai": "1.0.0", diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json index 85d11df..eef65d3 100644 --- a/Packages/packages-lock.json +++ b/Packages/packages-lock.json @@ -310,6 +310,13 @@ }, "url": "https://packages.unity.com" }, + "com.yasirkula.simplefilebrowser": { + "version": "https://github.com/yasirkula/UnitySimpleFileBrowser.git", + "depth": 0, + "source": "git", + "dependencies": {}, + "hash": "e24fa529103603043f6dad1b66192ff72954ef6e" + }, "com.unity.modules.accessibility": { "version": "1.0.0", "depth": 0,