UI HUGE UPDATE
@@ -1,4 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
|
||||
</project>
|
||||
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="UserContentModel">
|
||||
<attachedFolders />
|
||||
<explicitIncludes />
|
||||
<explicitExcludes />
|
||||
</component>
|
||||
</project>
|
||||
@@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
||||
@@ -182,18 +182,22 @@ namespace EasyChart.UGUI
|
||||
|
||||
private void OnDisable()
|
||||
{
|
||||
// Don't cleanup during activation/deactivation - use OnDestroy instead
|
||||
_isInitialized = false;
|
||||
|
||||
_lastScreenRect = new Rect(float.NaN, float.NaN, float.NaN, float.NaN);
|
||||
|
||||
// Clear visual elements but don't destroy components
|
||||
if (_chartElement != null)
|
||||
|
||||
if (UsesRenderTexturePipeline())
|
||||
{
|
||||
_chartElement.RemoveFromHierarchy();
|
||||
_chartElement = null;
|
||||
if (_chartElement != null)
|
||||
{
|
||||
_chartElement.RemoveFromHierarchy();
|
||||
_chartElement = null;
|
||||
}
|
||||
|
||||
_rootContainer = null;
|
||||
return;
|
||||
}
|
||||
_rootContainer = null;
|
||||
|
||||
DetachOverlayChartContent();
|
||||
}
|
||||
|
||||
private void OnDestroy()
|
||||
@@ -312,6 +316,10 @@ namespace EasyChart.UGUI
|
||||
return;
|
||||
}
|
||||
|
||||
// The bridge fully owns this UIDocument tree. Clear any previous
|
||||
// runtime content so overlay panels do not leave stale chart visuals behind.
|
||||
_uiDocument.rootVisualElement.Clear();
|
||||
|
||||
// Create root container that will be positioned to match RectTransform
|
||||
_rootContainer = new VisualElement();
|
||||
_rootContainer.name = "ChartBridgeRoot";
|
||||
@@ -332,7 +340,7 @@ namespace EasyChart.UGUI
|
||||
_lastScreenRect = new Rect(float.NaN, float.NaN, float.NaN, float.NaN);
|
||||
}
|
||||
|
||||
private void CleanupUIDocument()
|
||||
private void DetachOverlayChartContent()
|
||||
{
|
||||
if (_chartElement != null)
|
||||
{
|
||||
@@ -340,7 +348,21 @@ namespace EasyChart.UGUI
|
||||
_chartElement = null;
|
||||
}
|
||||
|
||||
_rootContainer = null;
|
||||
if (_rootContainer != null)
|
||||
{
|
||||
_rootContainer.RemoveFromHierarchy();
|
||||
_rootContainer = null;
|
||||
}
|
||||
|
||||
if (_uiDocument != null && _uiDocument.rootVisualElement != null)
|
||||
{
|
||||
_uiDocument.rootVisualElement.Clear();
|
||||
}
|
||||
}
|
||||
|
||||
private void CleanupUIDocument()
|
||||
{
|
||||
DetachOverlayChartContent();
|
||||
|
||||
// Use delayed destruction to avoid issues during activation/deactivation
|
||||
if (_uiDocument != null)
|
||||
@@ -639,8 +661,14 @@ namespace EasyChart.UGUI
|
||||
{
|
||||
_rawImage = gameObject.AddComponent<UnityEngine.UI.RawImage>();
|
||||
}
|
||||
else
|
||||
{
|
||||
_rawImage.enabled = true;
|
||||
}
|
||||
|
||||
_rawImage.texture = _renderTexture;
|
||||
_rawImage.raycastTarget = false;
|
||||
_rawImage.color = Color.white;
|
||||
|
||||
_lastScreenRect = new Rect(float.NaN, float.NaN, float.NaN, float.NaN);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,217 @@
|
||||
using UnityEditor;
|
||||
using UnityEngine;
|
||||
|
||||
public static class ItemUsageTagAutoSync
|
||||
{
|
||||
[MenuItem("Tools/Bansonic/Sync Item Usage Tags")]
|
||||
private static void SyncAllItemUsageTags()
|
||||
{
|
||||
int changedCount = 0;
|
||||
changedCount += SyncAssets<storeItemSO>("t:storeItemSO", ApplyStoreItemUsageTag);
|
||||
changedCount += SyncAssets<expBottlesSO>("t:expBottlesSO", ApplyExpBottleUsageTag);
|
||||
changedCount += SyncAssets<growthMaterialSO>("t:growthMaterialSO", ApplyGrowthMaterialUsageTag);
|
||||
changedCount += SyncAssets<equipmentConsumableSO>("t:equipmentConsumableSO", ApplyEquipmentConsumableUsageTag);
|
||||
changedCount += SyncAssets<notebook_faterType>("t:notebook_faterType", ApplyNotebookUsageTag);
|
||||
|
||||
if (changedCount > 0)
|
||||
{
|
||||
AssetDatabase.SaveAssets();
|
||||
AssetDatabase.Refresh();
|
||||
}
|
||||
|
||||
Debug.Log($"用途词条同步完成,更新了 {changedCount} 个资源。");
|
||||
}
|
||||
|
||||
private static int SyncAssets<T>(string filter, System.Func<T, bool> apply) where T : Object
|
||||
{
|
||||
string[] guids = AssetDatabase.FindAssets(filter);
|
||||
int changedCount = 0;
|
||||
for (int i = 0; i < guids.Length; i++)
|
||||
{
|
||||
string path = AssetDatabase.GUIDToAssetPath(guids[i]);
|
||||
T asset = AssetDatabase.LoadAssetAtPath<T>(path);
|
||||
if (asset == null)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!apply(asset))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
EditorUtility.SetDirty(asset);
|
||||
changedCount++;
|
||||
}
|
||||
|
||||
return changedCount;
|
||||
}
|
||||
|
||||
private static bool ApplyStoreItemUsageTag(storeItemSO item)
|
||||
{
|
||||
if (item == null)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
ItemUsageTag target = ResolveStoreItemUsageTag(item);
|
||||
if (item.itemUsageTag == target)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
item.itemUsageTag = target;
|
||||
return true;
|
||||
}
|
||||
|
||||
private static bool ApplyExpBottleUsageTag(expBottlesSO item)
|
||||
{
|
||||
if (item == null || item.usageTag == ItemUsageTag.CharacterCultivation)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
item.usageTag = ItemUsageTag.CharacterCultivation;
|
||||
return true;
|
||||
}
|
||||
|
||||
private static bool ApplyGrowthMaterialUsageTag(growthMaterialSO item)
|
||||
{
|
||||
if (item == null || item.usageTag == ItemUsageTag.CharacterBreakthrough)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
item.usageTag = ItemUsageTag.CharacterBreakthrough;
|
||||
return true;
|
||||
}
|
||||
|
||||
private static bool ApplyEquipmentConsumableUsageTag(equipmentConsumableSO item)
|
||||
{
|
||||
if (item == null)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
ItemUsageTag target;
|
||||
switch (item.consumableType)
|
||||
{
|
||||
case equipmentConsumableSO.EquipmentConsumableType.UpgradeMaterial:
|
||||
target = ItemUsageTag.EquipmentUpgrade;
|
||||
break;
|
||||
case equipmentConsumableSO.EquipmentConsumableType.BreakthroughMaterial:
|
||||
target = ItemUsageTag.EquipmentIllusion;
|
||||
break;
|
||||
case equipmentConsumableSO.EquipmentConsumableType.TransferMaterial:
|
||||
target = ItemUsageTag.EquipmentTransfer;
|
||||
break;
|
||||
case equipmentConsumableSO.EquipmentConsumableType.FinalDreamMaterial:
|
||||
target = ItemUsageTag.FinalDream;
|
||||
break;
|
||||
default:
|
||||
target = ItemUsageTag.EquipmentMaterial;
|
||||
break;
|
||||
}
|
||||
|
||||
if (item.usageTag == target)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
item.usageTag = target;
|
||||
return true;
|
||||
}
|
||||
|
||||
private static bool ApplyNotebookUsageTag(notebook_faterType item)
|
||||
{
|
||||
if (item == null)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
ItemUsageTag target;
|
||||
switch (item.fatherType)
|
||||
{
|
||||
case notebook_faterType.notebook_fatherType.idols:
|
||||
target = ItemUsageTag.CharacterClue;
|
||||
break;
|
||||
case notebook_faterType.notebook_fatherType.content:
|
||||
target = ItemUsageTag.StoryClue;
|
||||
break;
|
||||
default:
|
||||
target = ItemUsageTag.PreciousItem;
|
||||
break;
|
||||
}
|
||||
|
||||
if (item.usageTag == target)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
item.usageTag = target;
|
||||
return true;
|
||||
}
|
||||
|
||||
private static ItemUsageTag ResolveStoreItemUsageTag(storeItemSO item)
|
||||
{
|
||||
if (item.associatedExpBottle != null)
|
||||
{
|
||||
return item.associatedExpBottle.usageTag != ItemUsageTag.Auto
|
||||
? item.associatedExpBottle.usageTag
|
||||
: ItemUsageTag.CharacterCultivation;
|
||||
}
|
||||
|
||||
if (item.associatedGrowthMaterial != null)
|
||||
{
|
||||
return item.associatedGrowthMaterial.usageTag != ItemUsageTag.Auto
|
||||
? item.associatedGrowthMaterial.usageTag
|
||||
: ItemUsageTag.CharacterBreakthrough;
|
||||
}
|
||||
|
||||
if (item.associatedEquipmentConsumable != null)
|
||||
{
|
||||
if (item.associatedEquipmentConsumable.usageTag != ItemUsageTag.Auto)
|
||||
{
|
||||
return item.associatedEquipmentConsumable.usageTag;
|
||||
}
|
||||
|
||||
switch (item.associatedEquipmentConsumable.consumableType)
|
||||
{
|
||||
case equipmentConsumableSO.EquipmentConsumableType.UpgradeMaterial:
|
||||
return ItemUsageTag.EquipmentUpgrade;
|
||||
case equipmentConsumableSO.EquipmentConsumableType.BreakthroughMaterial:
|
||||
return ItemUsageTag.EquipmentIllusion;
|
||||
case equipmentConsumableSO.EquipmentConsumableType.TransferMaterial:
|
||||
return ItemUsageTag.EquipmentTransfer;
|
||||
case equipmentConsumableSO.EquipmentConsumableType.FinalDreamMaterial:
|
||||
return ItemUsageTag.FinalDream;
|
||||
default:
|
||||
return ItemUsageTag.EquipmentMaterial;
|
||||
}
|
||||
}
|
||||
|
||||
if (item.associatedSelectableEquipmentRewardSource != null)
|
||||
{
|
||||
return ItemUsageTag.EquipmentAcquisition;
|
||||
}
|
||||
|
||||
switch (item.itemType)
|
||||
{
|
||||
case storeItemSO.ItemType.character:
|
||||
return ItemUsageTag.CharacterUnlock;
|
||||
case storeItemSO.ItemType.song:
|
||||
return ItemUsageTag.SongUnlock;
|
||||
case storeItemSO.ItemType.storyPassage:
|
||||
if (item.associatedStoryPassage != null && item.associatedStoryPassage.usageTag != ItemUsageTag.Auto)
|
||||
{
|
||||
return item.associatedStoryPassage.usageTag;
|
||||
}
|
||||
|
||||
return ItemUsageTag.StoryClue;
|
||||
case storeItemSO.ItemType.consumable:
|
||||
return ItemUsageTag.Consumable;
|
||||
default:
|
||||
return ItemUsageTag.Other;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f3fb127c25b34ca41a2dc67a610ab1c7
|
||||
@@ -0,0 +1,14 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9df6cd2f9439dd04fb0d7a5aeb12e189
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 105778
|
||||
packageName: '[Graphy] - Ultimate FPS Counter - Stats Monitor & Debugger'
|
||||
packageVersion: 3.0.5
|
||||
assetPath: Assets/Graphy - Ultimate Stats Monitor/Graphy_CustomizationScene.unitypackage
|
||||
uploadId: 626547
|
||||
@@ -0,0 +1,14 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b18b93d4b5d00384ba417df18aeac5a3
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 109565
|
||||
packageName: Cartoon FX Remaster Free
|
||||
packageVersion: R 1.5.0
|
||||
assetPath: Assets/JMO Assets/Cartoon FX FREE (old legacy effects).unitypackage
|
||||
uploadId: 756876
|
||||
@@ -0,0 +1,48 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: UIShadow
|
||||
m_Shader: {fileID: 4800000, guid: 4627f9f3a5ab4c6f8c0b1d2e3f4a5b6c, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords: []
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _ColorMask: 15
|
||||
- _InsetPadding: 0
|
||||
- _ShadowBlur: 1.88
|
||||
- _ShadowStrength: 1
|
||||
- _Stencil: 0
|
||||
- _StencilComp: 8
|
||||
- _StencilOp: 0
|
||||
- _StencilReadMask: 255
|
||||
- _StencilWriteMask: 255
|
||||
- _UseUIAlphaClip: 0
|
||||
m_Colors:
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _ShadowColor: {r: 0, g: 0, b: 0, a: 0.65}
|
||||
- _ShadowOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _TextureSampleAdd: {r: 0, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
m_AllowLocking: 1
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b8f5c2d1490e4e5da73a8d6f2c1b9a47
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,44 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: ghpBlur
|
||||
m_Shader: {fileID: 4800000, guid: 5c3dbe82db244021ac726e4bd0946c98, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords: []
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _BlurRadius: 8
|
||||
- _ColorMask: 15
|
||||
- _Stencil: 0
|
||||
- _StencilComp: 8
|
||||
- _StencilOp: 0
|
||||
- _StencilReadMask: 255
|
||||
- _StencilWriteMask: 255
|
||||
- _UseUIAlphaClip: 0
|
||||
m_Colors:
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _TextureSampleAdd: {r: 0, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
m_AllowLocking: 1
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 89d2e49d1a4e8c54bad205978c63a672
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -62,7 +62,7 @@ MonoBehaviour:
|
||||
m_EditorClassIdentifier:
|
||||
m_Material: {fileID: 0}
|
||||
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
m_RaycastTarget: 1
|
||||
m_RaycastTarget: 0
|
||||
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
||||
m_Maskable: 1
|
||||
m_OnCullStateChanged:
|
||||
@@ -418,7 +418,7 @@ MonoBehaviour:
|
||||
m_EditorClassIdentifier:
|
||||
m_Material: {fileID: 0}
|
||||
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
m_RaycastTarget: 1
|
||||
m_RaycastTarget: 0
|
||||
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
||||
m_Maskable: 1
|
||||
m_OnCullStateChanged:
|
||||
|
||||
@@ -35,7 +35,7 @@ RectTransform:
|
||||
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: 400, y: 50}
|
||||
m_SizeDelta: {x: 600, y: 50}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!222 &8228448695912822089
|
||||
CanvasRenderer:
|
||||
|
||||
@@ -220,13 +220,14 @@ RectTransform:
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
m_Children:
|
||||
- {fileID: 6132365313797664404}
|
||||
m_Father: {fileID: 2695903856409165439}
|
||||
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: 3840, y: 2160}
|
||||
m_SizeDelta: {x: 1920, y: 1080}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!222 &4796631590800447031
|
||||
CanvasRenderer:
|
||||
@@ -439,6 +440,7 @@ MonoBehaviour:
|
||||
m_EditorClassIdentifier:
|
||||
itemPrefab: {fileID: 913995668709144583, guid: acdf60e42009ece499bb3c9187c7a120, type: 3}
|
||||
displayParent: {fileID: 4944905480159824482}
|
||||
rarityColorConfig: {fileID: 11400000, guid: 9866db77e3a6bea4f941b4f090f2e75d, type: 2}
|
||||
close: {fileID: 2916651073404800368}
|
||||
--- !u!1 &3598919913577089389
|
||||
GameObject:
|
||||
@@ -504,8 +506,8 @@ MonoBehaviour:
|
||||
m_StartAxis: 0
|
||||
m_CellSize: {x: 130, y: 130}
|
||||
m_Spacing: {x: 15, y: 40}
|
||||
m_Constraint: 1
|
||||
m_ConstraintCount: 6
|
||||
m_Constraint: 2
|
||||
m_ConstraintCount: 1
|
||||
--- !u!1 &4051729457364909786
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
@@ -541,9 +543,9 @@ RectTransform:
|
||||
m_Father: {fileID: 3137976730971787751}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 0}
|
||||
m_AnchorMax: {x: 0, y: 0}
|
||||
m_AnchorMax: {x: 1, y: 1}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: -5.3338003, y: 0}
|
||||
m_Pivot: {x: 0, y: 1}
|
||||
--- !u!222 &2962765509531958815
|
||||
CanvasRenderer:
|
||||
@@ -713,7 +715,7 @@ RectTransform:
|
||||
m_Father: {fileID: 3101227708130590336}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 0}
|
||||
m_AnchorMax: {x: 1, y: 1}
|
||||
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}
|
||||
@@ -754,7 +756,7 @@ MonoBehaviour:
|
||||
m_FillClockwise: 1
|
||||
m_FillOrigin: 0
|
||||
m_UseSpriteMesh: 0
|
||||
m_PixelsPerUnitMultiplier: 1
|
||||
m_PixelsPerUnitMultiplier: 2
|
||||
--- !u!1 &6500051345530345649
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
@@ -794,7 +796,7 @@ RectTransform:
|
||||
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: 900, y: 500}
|
||||
m_SizeDelta: {x: 1700, y: 180}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!222 &8600102907497946381
|
||||
CanvasRenderer:
|
||||
@@ -847,8 +849,8 @@ MonoBehaviour:
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_Content: {fileID: 4944905480159824482}
|
||||
m_Horizontal: 0
|
||||
m_Vertical: 1
|
||||
m_Horizontal: 1
|
||||
m_Vertical: 0
|
||||
m_MovementType: 2
|
||||
m_Elasticity: 0.1
|
||||
m_Inertia: 1
|
||||
@@ -857,8 +859,8 @@ MonoBehaviour:
|
||||
m_Viewport: {fileID: 1826500657710465024}
|
||||
m_HorizontalScrollbar: {fileID: 6921668007247776155}
|
||||
m_VerticalScrollbar: {fileID: 3866453231648704550}
|
||||
m_HorizontalScrollbarVisibility: 0
|
||||
m_VerticalScrollbarVisibility: 2
|
||||
m_HorizontalScrollbarVisibility: 1
|
||||
m_VerticalScrollbarVisibility: 0
|
||||
m_HorizontalScrollbarSpacing: -3
|
||||
m_VerticalScrollbarSpacing: -3
|
||||
m_OnValueChanged:
|
||||
@@ -882,7 +884,7 @@ GameObject:
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
m_IsActive: 0
|
||||
--- !u!224 &3080657817978365638
|
||||
RectTransform:
|
||||
m_ObjectHideFlags: 0
|
||||
@@ -900,7 +902,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 1, y: 0}
|
||||
m_AnchorMax: {x: 1, y: 1}
|
||||
m_AnchoredPosition: {x: 29.1998, y: 0}
|
||||
m_AnchoredPosition: {x: 29.19983, y: 0}
|
||||
m_SizeDelta: {x: 8.3338, y: 0}
|
||||
m_Pivot: {x: 1, y: 1}
|
||||
--- !u!222 &6227075534320534988
|
||||
@@ -985,7 +987,7 @@ MonoBehaviour:
|
||||
m_HandleRect: {fileID: 5421261158389096151}
|
||||
m_Direction: 2
|
||||
m_Value: 1
|
||||
m_Size: 0.4
|
||||
m_Size: 0.6
|
||||
m_NumberOfSteps: 0
|
||||
m_OnValueChanged:
|
||||
m_PersistentCalls:
|
||||
@@ -1086,7 +1088,7 @@ GameObject:
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
m_IsActive: 0
|
||||
--- !u!224 &2496328248827362352
|
||||
RectTransform:
|
||||
m_ObjectHideFlags: 0
|
||||
@@ -1180,8 +1182,8 @@ RectTransform:
|
||||
m_Children: []
|
||||
m_Father: {fileID: 3570256195684234039}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 0}
|
||||
m_AnchorMax: {x: 0, y: 0}
|
||||
m_AnchorMin: {x: 0, y: 0.39999998}
|
||||
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}
|
||||
@@ -1259,6 +1261,157 @@ RectTransform:
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: -20, y: -20}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!1 &8412190231846164517
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 2402816329059152987}
|
||||
- component: {fileID: 9114684083453792699}
|
||||
- component: {fileID: 4554180471056957011}
|
||||
m_Layer: 5
|
||||
m_Name: Image
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!224 &2402816329059152987
|
||||
RectTransform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8412190231846164517}
|
||||
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: 6132365313797664404}
|
||||
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: -482, y: 195}
|
||||
m_SizeDelta: {x: 469, y: 97}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!222 &9114684083453792699
|
||||
CanvasRenderer:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8412190231846164517}
|
||||
m_CullTransparentMesh: 1
|
||||
--- !u!114 &4554180471056957011
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8412190231846164517}
|
||||
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: -5672859874064989008, guid: 47db32de48259d1439cd2ea88850e0e7, 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 &8805441624952468268
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 6132365313797664404}
|
||||
- component: {fileID: 4770036659330165736}
|
||||
- component: {fileID: 2675976164175041178}
|
||||
m_Layer: 5
|
||||
m_Name: tu
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!224 &6132365313797664404
|
||||
RectTransform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8805441624952468268}
|
||||
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: 2402816329059152987}
|
||||
m_Father: {fileID: 1302327321224459191}
|
||||
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: 1920, y: 387}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!222 &4770036659330165736
|
||||
CanvasRenderer:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8805441624952468268}
|
||||
m_CullTransparentMesh: 1
|
||||
--- !u!114 &2675976164175041178
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 8805441624952468268}
|
||||
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: -9008400303772181359, guid: 144cc3f73b187da42af804a6b4c0fc0f, 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 &9148149748463285224
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
@@ -1277,7 +1430,7 @@ GameObject:
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 0
|
||||
m_IsActive: 1
|
||||
--- !u!224 &1672241082933476089
|
||||
RectTransform:
|
||||
m_ObjectHideFlags: 0
|
||||
@@ -1294,9 +1447,9 @@ RectTransform:
|
||||
m_Father: {fileID: 3137976730971787751}
|
||||
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: 20}
|
||||
m_AnchorMax: {x: 1, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: -16.4047}
|
||||
m_SizeDelta: {x: -5.3337, y: 7.7047}
|
||||
m_Pivot: {x: 0, y: 0}
|
||||
--- !u!222 &8588795156627840589
|
||||
CanvasRenderer:
|
||||
@@ -1335,7 +1488,7 @@ MonoBehaviour:
|
||||
m_FillClockwise: 1
|
||||
m_FillOrigin: 0
|
||||
m_UseSpriteMesh: 0
|
||||
m_PixelsPerUnitMultiplier: 1
|
||||
m_PixelsPerUnitMultiplier: 2
|
||||
--- !u!114 &6921668007247776155
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
|
||||
@@ -18,13 +18,15 @@ MonoBehaviour:
|
||||
isUnlocked: 1
|
||||
allyType: 0
|
||||
obsessionTag: "\u9898\u6D77\u6218\u672F"
|
||||
ally_heroImage: {fileID: 21300000, guid: 991800b03b1fd7f44ad3b3e8eb63d7e0, type: 3}
|
||||
ally_heroImage: {fileID: 21300000, guid: f27046c99a6d3964bb9c8be75c7a7be8, type: 3}
|
||||
ally_heroProfile: {fileID: 21300000, guid: f27046c99a6d3964bb9c8be75c7a7be8, type: 3}
|
||||
ally_heroSelectIcon: {fileID: 21300000, guid: a993087d325aff74383e7a39ed17df56, type: 3}
|
||||
ally_heroSelectIcon: {fileID: 21300000, guid: 84c4e31237139e440bf0276479c3a98b, type: 3}
|
||||
ally_heroIcon: {fileID: 0}
|
||||
ally_heroPoster: {fileID: 21300000, guid: 6476853d10206a745a4342d139ab925b, type: 3}
|
||||
ally_heroPoster: {fileID: 21300000, guid: 90019cc9485e83d44a0715d3b03bad22, type: 3}
|
||||
ally_hero_HD_image: {fileID: 21300000, guid: 5996ae5f53736de4ba099829b80bfe29, type: 3}
|
||||
ally_hero_squareProfile: {fileID: 21300000, guid: eec334d03c52af847bfa12dc839ac536, type: 3}
|
||||
ally_heroSpineData: {fileID: 0}
|
||||
selectedSkinId:
|
||||
ally_heroThemeColor: {r: 0.14901961, g: 0.15686275, b: 0.27450982, a: 1}
|
||||
ally_heroDescription: "\u9065\u96EA\u97F3\uFF0C\u9898\u6D77\u6218\u672F\u7C7B\u6267\u5FF5\u5076\u50CF\u3002\u5728\u590D\u6F14\u6218\u6597\u4E2D\uFF0C\u867D\u7136\u5979\u6709\u6062\u590D\u751F\u547D\u503C\u7684\u624B\u6BB5\uFF0C\u4F46\u4FDD\u6301\u5065\u5EB7\u7684\u751F\u547D\u503C\u4EE5\u7EF4\u6301\u8F83\u9AD8\u7684\u653B\u51FB\u529B\u4F1A\u66F4\u9002\u5408\u5979\uFF0C\u9664\u6B64\u4E4B\u5916\uFF0C\u5979\u4E5F\u80FD\u901A\u8FC7\u81EA\u8EAB\u5FEB\u901F\u8865\u5145\u6CD5\u529B\u503C\uFF0C\u6765\u9891\u7E41\u91CA\u653E\u6CD5\u529B\u503C\u6280\u80FD\uFF0C\u4EE5\u6B64\u83B7\u53D6\u5206\u6570\u3002\u603B\u4E4B\uFF0C\u662F\u4E00\u4E2A\u76F8\u5F53\u5E38\u89C4\u4E14\u6709\u8F93\u51FA\uFF0C\u6709\u63D0\u5206\u624B\u6BB5\uFF0C\u4E5F\u6709\u751F\u5B58\u80FD\u529B\u7684\u9898\u6D77\u6218\u672F\u7C7B\u6267\u5FF5\u5076\u50CF\u3002\n\n\u4E0D\u8FC7\uFF0C\u5BF9\u4E8E\u5979\u7684\u6545\u4E8B\u3002\u7D22\u5C3C\u5A05\uFF0C\u6211\u4EEC\u9700\u7EE7\u7EED\u6DF1\u5165\uFF0C\u5BFB\u627E\u5230\u66F4\u591A\u4EE5\u8BC1\u660E\u4ED6\u4EEC\u5B58\u5728\u8FC7\u7684\u201C\u8BB0\u5FC6\u788E\u7247\u201D\uFF0C\u624D\u53EF\u4E86\u89E3\u5979\u7684\u8EAB\u4E16\u5168\u8C8C......\n\n\u8BE5\u89D2\u8272\u7684\u6267\u5FF5\u6743\u91CD\uFF1A\n\u9898\u6D77\u6218\u672F\uFF1A\u8F83\u4F4E\n\u8BDB\u9504\u5F02\u5DF1\uFF1A\u4E00\u65F6\u8FC7\u8651\n\u9038\u4E50\u5171\u8C0B\uFF1A\u4E00\u65F6\u8FC7\u8651\n\u8FF7\u832B\u6216\u51E1\u60F3\uFF1A\u9AD8"
|
||||
levelStats:
|
||||
@@ -99,8 +101,8 @@ MonoBehaviour:
|
||||
ally_currentEXP: 0
|
||||
ally_growthUnlockedTierIndex: 0
|
||||
ally_autoBreakthroughEnabled: 0
|
||||
ally_battleDeployCount: 13
|
||||
ally_finishCount: 13
|
||||
ally_battleDeployCount: 0
|
||||
ally_finishCount: 0
|
||||
ally_mvpCount: 0
|
||||
ally_joinDateUtcTicks: 0
|
||||
behaviourAxes:
|
||||
@@ -252,6 +254,6 @@ MonoBehaviour:
|
||||
skillDescriptionsText: "\u6D88\u8017\u5168\u90E8\u7684\u6CD5\u529B\u503C\u65F6\uFF0C\u83B7\u5F97\u201C\u4EA4\u7ED9\u6211\uFF01\u201D\u3002\n\n\u201C\u4EA4\u7ED9\u6211\uFF01\u201D\uFF1A\u4EE3\u66FF\u76F8\u90BB\u5076\u50CF\u4E4B\u4E00(\u4F18\u5148\u9009\u62E9\u643A\u5E26BUFF\u8F83\u5C11\u8005)\u627F\u53D7\u4E0B\u6B21\u4F24\u5BB3\u3002"
|
||||
thisSkill_levelLimit: 4
|
||||
isSpecialSkill: 0
|
||||
equippedSkillGroupIDs: a9d4cc01
|
||||
equippedEquipment: {fileID: 11400000, guid: b1ce03696d19c5d4db1e10afc7f79a56, type: 2}
|
||||
equippedSkillGroupIDs: aad4cc01
|
||||
equippedEquipment: {fileID: 0}
|
||||
equippedEquipmentId: type0_20260325_00000009
|
||||
|
||||
@@ -18,13 +18,15 @@ MonoBehaviour:
|
||||
isUnlocked: 1
|
||||
allyType: 0
|
||||
obsessionTag: "\u9038\u4E50\u5171\u8C0B"
|
||||
ally_heroImage: {fileID: 21300000, guid: 5f93d010e49316d4594c1065ce5c6d85, type: 3}
|
||||
ally_heroImage: {fileID: 21300000, guid: 4a9d5fee387d44d4eb60620f41c40178, type: 3}
|
||||
ally_heroProfile: {fileID: 21300000, guid: 4a9d5fee387d44d4eb60620f41c40178, type: 3}
|
||||
ally_heroSelectIcon: {fileID: 21300000, guid: a1dae3698f08f314fb44b43933d63665, type: 3}
|
||||
ally_heroSelectIcon: {fileID: 21300000, guid: 15f33b7e6f83da6478fcb753b032b635, type: 3}
|
||||
ally_heroIcon: {fileID: 0}
|
||||
ally_heroPoster: {fileID: 21300000, guid: 7c696ed76f3742e45be19411f45fff5c, type: 3}
|
||||
ally_heroPoster: {fileID: 21300000, guid: 5e0d5a484df6f5c47915c3411819dff6, type: 3}
|
||||
ally_hero_HD_image: {fileID: 21300000, guid: 52da56d8cea342347a2ce77fa59a8238, type: 3}
|
||||
ally_hero_squareProfile: {fileID: 21300000, guid: 088ee68aa14a6db40b3794a0a8b70d82, type: 3}
|
||||
ally_heroSpineData: {fileID: 0}
|
||||
selectedSkinId:
|
||||
ally_heroThemeColor: {r: 0.8679245, g: 0.06959773, b: 0.20629776, a: 1}
|
||||
ally_heroDescription: "\u8DC3\u6843\uFF0C\u9038\u4E50\u5171\u8C0B\u7C7B\u6267\u5FF5\u5076\u50CF\u3002\u5728\u590D\u6F14\u6218\u6597\u4E2D\uFF0C\u6211\u65F6\u5E38\u80FD\u611F\u53D7\u5230\u5979\u5728\u884C\u52A8\u4E0A\u4F1A\u6709\u81EA\u5DF1\u7684\u60F3\u6CD5\uFF0C\u8FD9\u6709\u65F6\u5019\u4F1A\u7ED9\u6211\u5E26\u6765\u4E9B\u9EBB\u70E6\uFF0C\u4E0D\u8FC7\u65F6\u5E38\u5BF9\u5979\u7684\u590D\u6F14\u5DE5\u4F5C\u800C\u8A00\u4E5F\u7B97\u662F\u597D\u4E8B\uFF0C\u597D\u6BD4\u662F\u6709\u65F6\u5019\u4F1A\u60F3\u7ED9\u81EA\u5DF1\u4E0A\u70B9\u201C\u96BE\u5EA6\u201D\uFF0C\u867D\u7136\u4EE4\u6211\u4EEC\u5BF9\u5979\u7684\u8868\u73B0\u6709\u66F4\u9AD8\u7684\u8BC4\u4EF7\uFF0C\u4F46\u603B\u662F\u4F1A\u4EE4\u81EA\u5DF1\u9677\u5165\u56F0\u5883\u4E4B\u4E2D\u3002\u5979\u4E5F\u662F\u4E2A\u5927\u597D\u559C\u529F\u7684\u5973\u5B69\uFF0C\u5728\u53D6\u80DC\u4E4B\u540E\uFF0C\u4F1A\u66F4\u52A0\u81EA\u7136\u5730\u8212\u5C55\u62F3\u811A\u3002\u603B\u800C\u8A00\u4E4B\uFF0C\u662F\u4E00\u4E2A\u575A\u5F3A\uFF0C\u65E0\u60E7\u654C\u9669\u7684\u9038\u4E50\u5171\u8C0B\u7C7B\u5076\u50CF\uFF0C\u8FD9\u4E9B\u7279\u8D28\u4E5F\u5F80\u5F80\u53EF\u4EE5\u4E3A\u5979\u5E26\u6765\u66F4\u591A\u7684\u8868\u73B0\u5206\u503C\u3002\n\n\u4E0D\u8FC7\uFF0C\u5BF9\u4E8E\u5979\u7684\u6545\u4E8B\u3002\u7D22\u5C3C\u5A05\uFF0C\u6211\u4EEC\u9700\u7EE7\u7EED\u6DF1\u5165\uFF0C\u5BFB\u627E\u5230\u66F4\u591A\u4EE5\u8BC1\u660E\u4ED6\u4EEC\u5B58\u5728\u8FC7\u7684\u201C\u8BB0\u5FC6\u788E\u7247\u201D\uFF0C\u624D\u53EF\u4E86\u89E3\u5979\u7684\u8EAB\u4E16\u5168\u8C8C......\n\n\u8BE5\u89D2\u8272\u7684\u6267\u5FF5\u6743\u91CD\uFF1A\n\u9038\u4E50\u5171\u8C0B\uFF1A\u9AD8\n\u8FF7\u832B\u6216\u51E1\u60F3\uFF1A\u8F83\u4F4E"
|
||||
levelStats:
|
||||
@@ -96,9 +98,9 @@ MonoBehaviour:
|
||||
damageMultiplierGreat: 1
|
||||
damageMultiplierPerfect: 1.1
|
||||
missHpLossBase: 10
|
||||
ally_currentEXP: 520
|
||||
ally_growthUnlockedTierIndex: 2
|
||||
ally_autoBreakthroughEnabled: 1
|
||||
ally_currentEXP: 0
|
||||
ally_growthUnlockedTierIndex: 0
|
||||
ally_autoBreakthroughEnabled: 0
|
||||
ally_battleDeployCount: 0
|
||||
ally_finishCount: 0
|
||||
ally_mvpCount: 0
|
||||
@@ -229,6 +231,6 @@ MonoBehaviour:
|
||||
skillDescriptionsText: "\u3010\u7ECA\u594F\xB7\u5411\u5F80\u3011\u6D88\u8017\u5168\u90E8\u7684\u6CD5\u529B\u503C\u65F6\uFF0C\u6D88\u8017\u81EA\u8EAB\u751F\u547D\u503C\u4E0A\u96503%\u7684\u751F\u547D\u503C\uFF08\u65E0\u6CD5\u964D\u81F3\u4E3A\u751F\u547D\u503C\u4E0A\u9650\u768420%\u53CA\u4EE5\u4E0B\uFF09\uFF0C\u5BF9\u654C\u4EBA\u9020\u6210\u4E00\u6B21\u91CD\u51FB\uFF08\u4F24\u5BB3\u503C\u7B49\u540C\u4E8E\u751F\u547D\u503C\u88AB\u6D88\u8017\u503C+\u89D2\u8272\u653B\u51FB\u529B10%\uFF09\u4F24\u5BB3\u3002"
|
||||
thisSkill_levelLimit: 4
|
||||
isSpecialSkill: 0
|
||||
equippedSkillGroupIDs: 95d8cc01
|
||||
equippedEquipment: {fileID: 11400000, guid: 959aeb3b0e2a4b64a919837c789b4a4a, type: 2}
|
||||
equippedSkillGroupIDs:
|
||||
equippedEquipment: {fileID: 0}
|
||||
equippedEquipmentId: type0_20260325_00000012
|
||||
|
||||
@@ -18,13 +18,15 @@ MonoBehaviour:
|
||||
isUnlocked: 1
|
||||
allyType: 0
|
||||
obsessionTag: "\u4F17\u5FD7\u6210\u57CE"
|
||||
ally_heroImage: {fileID: 21300000, guid: 893e9ceec19c4cc4d9d0326a6a48e2bd, type: 3}
|
||||
ally_heroImage: {fileID: 21300000, guid: 84bb7e199b99f9c499193b9d45d3c246, type: 3}
|
||||
ally_heroProfile: {fileID: 21300000, guid: 84bb7e199b99f9c499193b9d45d3c246, type: 3}
|
||||
ally_heroSelectIcon: {fileID: 21300000, guid: c42ce7fbbee4c9b44abfba00300ed031, type: 3}
|
||||
ally_heroSelectIcon: {fileID: 21300000, guid: 3e7442e3c57b384478a09c6113d83e11, type: 3}
|
||||
ally_heroIcon: {fileID: 0}
|
||||
ally_heroPoster: {fileID: 21300000, guid: 25ab31db07f3cd148ad02160d7fac8e2, type: 3}
|
||||
ally_heroPoster: {fileID: 21300000, guid: 95acbc39c1cfda94e94e07b82236c145, type: 3}
|
||||
ally_hero_HD_image: {fileID: 21300000, guid: 38eccadd530da15419ed0edecaf75e9a, type: 3}
|
||||
ally_hero_squareProfile: {fileID: 21300000, guid: 2bc924133035d0c43a1f2abbecf93ac5, type: 3}
|
||||
ally_heroSpineData: {fileID: 0}
|
||||
selectedSkinId:
|
||||
ally_heroThemeColor: {r: 0.6074226, g: 0.6105376, b: 0.6603774, a: 1}
|
||||
ally_heroDescription: "\u58A8\u5F69\u79BB\uFF0C\u4F17\u5FD7\u6210\u57CE\u7C7B\u6267\u5FF5\u5076\u50CF\u3002\u5728\u590D\u6F14\u6218\u6597\u4E2D\uFF0C\u5979\u53EF\u4EE5\u901A\u8FC7\u81EA\u5DF1\u7684\u5FC3\u58F0\u80FD\u529B\u6765\u6D1E\u6089\u654C\u65B9\u7684\u6218\u672F\uFF0C\u4ECE\u800C\u964D\u4F4E\u654C\u65B9\u5BF9\u540C\u4F34\u7684\u653B\u51FB\u529B\u3002\u540C\u65F6\uFF0C\u5979\u8FD8\u5177\u5907\u8F83\u5F3A\u7684\u56DE\u590D\u81EA\u8EAB\u4E0E\u76F8\u90BB\u5076\u50CF\u6CD5\u529B\u503C\u7684\u80FD\u529B\uFF0C\u4E5F\u53EF\u4EE5\u901A\u8FC7\u81EA\u8EAB\u7684\u6CD5\u529B\u503C\u5145\u80FD\uFF0C\u6765\u4F7F\u76F8\u90BB\u5076\u50CF\u7684\u6CD5\u529B\u503C\u5F97\u5230\u6D88\u8017\uFF0C\u4ECE\u800C\u89E6\u53D1\u76F8\u90BB\u5076\u50CF\u7684\u6CD5\u529B\u503C\u6D88\u8017\u7C7B\u51B3\u7B56\u3002\n\n\u4E0D\u8FC7\uFF0C\u5BF9\u4E8E\u5979\u7684\u6545\u4E8B\u3002\u7D22\u5C3C\u5A05\uFF0C\u6211\u4EEC\u9700\u7EE7\u7EED\u6DF1\u5165\uFF0C\u5BFB\u627E\u5230\u66F4\u591A\u4EE5\u8BC1\u660E\u4ED6\u4EEC\u5B58\u5728\u8FC7\u7684\u201C\u8BB0\u5FC6\u788E\u7247\u201D\uFF0C\u624D\u53EF\u4E86\u89E3\u5979\u7684\u8EAB\u4E16\u5168\u8C8C......\n\n\u8BE5\u89D2\u8272\u7684\u6267\u5FF5\u6743\u91CD\uFF1A\n\u4F17\u5FD7\u6210\u57CE\uFF1A\u9AD8\n\u5B8C\u7F8E\u81F3\u4E0A\uFF1A\u4E00\u65F6\u8FC7\u8651\n\u9898\u6D77\u6218\u672F\uFF1A\u4E00\u65F6\u8FC7\u8651\n\u8BDB\u9504\u5F02\u5DF1\uFF1A\u4E00\u65F6\u8FC7\u8651\n\u8FF7\u832B\u6216\u51E1\u60F3\uFF1A\u8F83\u9AD8"
|
||||
levelStats:
|
||||
@@ -271,6 +273,6 @@ MonoBehaviour:
|
||||
skillDescriptionsText: "\u51FB\u8D25\u5168\u90E8\u654C\u4EBA\u65F6\uFF0C\u76F8\u90BB\u5076\u50CF\u7684\u5F97\u5206\u6548\u7387\u589E\u52A00.08\u3002"
|
||||
thisSkill_levelLimit: 4
|
||||
isSpecialSkill: 0
|
||||
equippedSkillGroupIDs:
|
||||
equippedSkillGroupIDs: 79dccc01
|
||||
equippedEquipment: {fileID: 0}
|
||||
equippedEquipmentId:
|
||||
|
||||
@@ -18,13 +18,15 @@ MonoBehaviour:
|
||||
isUnlocked: 1
|
||||
allyType: 0
|
||||
obsessionTag: "\u8FC7\u6FC0\u884C\u4E3A"
|
||||
ally_heroImage: {fileID: 21300000, guid: 76c21cd5ddf49f14286f14aae71c0053, type: 3}
|
||||
ally_heroImage: {fileID: 21300000, guid: fa69f284f28193840826d323711b2ce1, type: 3}
|
||||
ally_heroProfile: {fileID: 21300000, guid: fa69f284f28193840826d323711b2ce1, type: 3}
|
||||
ally_heroSelectIcon: {fileID: 21300000, guid: 5780fe6bc6ba1d84ba49fe8a7e2a58fb, type: 3}
|
||||
ally_heroSelectIcon: {fileID: 21300000, guid: b10782ed7cd519a408bcb7b8b4dfc884, type: 3}
|
||||
ally_heroIcon: {fileID: 0}
|
||||
ally_heroPoster: {fileID: 21300000, guid: c789f3f762cd4444688a6f59bc0aa150, type: 3}
|
||||
ally_heroPoster: {fileID: 21300000, guid: 64d978f672317b14e9b21f7f6a555f0e, type: 3}
|
||||
ally_hero_HD_image: {fileID: 21300000, guid: f27edc042c98f264492ea474acb525e8, type: 3}
|
||||
ally_hero_squareProfile: {fileID: 21300000, guid: 47e3bed563854b248b684b071ccafe38, type: 3}
|
||||
ally_heroSpineData: {fileID: 0}
|
||||
selectedSkinId:
|
||||
ally_heroThemeColor: {r: 0.10980393, g: 0.10588236, b: 0.1254902, a: 1}
|
||||
ally_heroDescription: "\u6D1B\u514B\uFF0C\u8FC7\u6FC0\u884C\u4E3A\u7C7B\u6267\u5FF5\u5076\u50CF\u3002\u4ED6\u7684\u6CD5\u529B\u503C\u4E0A\u9650\u76F8\u5F53\u4E4B\u9AD8\uFF0C\u53EF\u5176\u5145\u6EE1\u540E\u91CA\u653E\u7684\u6548\u679C\u76F8\u5F53\u53EF\u89C2\uFF0C\u56E0\u4E3A\u662F\u8FC7\u6FC0\u884C\u4E3A\u7C7B\u6267\u5FF5\uFF0C\u4ED6\u53EF\u4EE5\u5BF9\u540C\u4F34\u4E0B\u624B\uFF0C\u901A\u8FC7\u6D88\u8017\u4ED6\u4EEC\u7684\u751F\u547D\u503C\u4E0E\u6CD5\u529B\u503C\u6765\u63D0\u5347\u81EA\u8EAB\u7684\u5F97\u5206\u6548\u7387\u3002\n\n\u4E0D\u8FC7\uFF0C\u5BF9\u4E8E\u4ED6\u7684\u6545\u4E8B\u3002\u7D22\u5C3C\u5A05\uFF0C\u6211\u4EEC\u9700\u7EE7\u7EED\u6DF1\u5165\uFF0C\u5BFB\u627E\u5230\u66F4\u591A\u4EE5\u8BC1\u660E\u4ED6\u4EEC\u5B58\u5728\u8FC7\u7684\u201C\u8BB0\u5FC6\u788E\u7247\u201D\uFF0C\u624D\u53EF\u4E86\u89E3\u4ED6\u7684\u8EAB\u4E16\u5168\u8C8C......\n\n\u8BE5\u89D2\u8272\u7684\u6267\u5FF5\u6743\u91CD\uFF1A\n\u8FC7\u6FC0\u884C\u4E3A\uFF1A\u8F83\u4F4E\n\u8FF7\u832B\u6216\u51E1\u60F3\uFF1A\u7EDD\u5BF9\u56FA\u6267"
|
||||
levelStats:
|
||||
@@ -245,6 +247,6 @@ MonoBehaviour:
|
||||
skillDescriptionsText: "\u3010\u4F60\u4EEC\u5747\u662F\u201C\u5E2E\u51F6\u201D\u3011\u6D88\u8017\u5168\u90E8\u6CD5\u529B\u503C\u65F6\uFF0C\u81EA\u8EAB\u83B7\u5F97\u201C\u4F24\u5BB3\u6297\u6027\u63D0\u5347\u201D\uFF0C\u63D0\u9AD80.14\uFF0C\u6301\u7EED6\u79D2\uFF1B\u81EA\u8EAB\u83B7\u5F97\u201C\u90FD\u7ED9\u4F60\uFF01\u201D\u3002\n\n\u201C\u4F24\u5BB3\u6297\u6027\u63D0\u5347\u201D\uFF1A\u4F24\u5BB3\u6297\u6027\u63D0\u9AD8\uFF0C\u751F\u6548\u671F\u95F4\u53D7\u5230\u7684\u4F24\u5BB3\u964D\u4F4E\u3002\n\u201C\u90FD\u7ED9\u4F60\uFF01\u201D\uFF1A\u5C06\u81EA\u8EAB\u4E0B\u4E00\u6B21\u53D7\u5230\u7684\u4F24\u5BB3\u6216\u83B7\u5F97\u7684\u589E\u76CA\u8F6C\u79FB\u7ED9\u76F8\u90BB\u5076\u50CF\u3002"
|
||||
thisSkill_levelLimit: 4
|
||||
isSpecialSkill: 0
|
||||
equippedSkillGroupIDs:
|
||||
equippedSkillGroupIDs: 62e0cc01
|
||||
equippedEquipment: {fileID: 0}
|
||||
equippedEquipmentId:
|
||||
|
||||
@@ -18,13 +18,15 @@ MonoBehaviour:
|
||||
isUnlocked: 1
|
||||
allyType: 0
|
||||
obsessionTag: "\u9898\u6D77\u6218\u672F"
|
||||
ally_heroImage: {fileID: 21300000, guid: 37d714dfd7a21f44982af7f86853fa04, type: 3}
|
||||
ally_heroImage: {fileID: 21300000, guid: 020978e2a1e2a9f4f99531aa424d1c9c, type: 3}
|
||||
ally_heroProfile: {fileID: 21300000, guid: 020978e2a1e2a9f4f99531aa424d1c9c, type: 3}
|
||||
ally_heroSelectIcon: {fileID: 21300000, guid: 036e42c18f21faa45975ec21640c76c4, type: 3}
|
||||
ally_heroSelectIcon: {fileID: 21300000, guid: d7a0c040fbb447a49a2c77b9d75d024d, type: 3}
|
||||
ally_heroIcon: {fileID: 0}
|
||||
ally_heroPoster: {fileID: 21300000, guid: dc861da924f0f73428f76cc277071711, type: 3}
|
||||
ally_heroPoster: {fileID: 21300000, guid: 002d0a9177c24084bb8b5d5e095c481b, type: 3}
|
||||
ally_hero_HD_image: {fileID: 21300000, guid: 27674f87fe8456249889decddd506e19, type: 3}
|
||||
ally_hero_squareProfile: {fileID: 21300000, guid: 0d8f9374f5f4bc84699bfd32abc1e538, type: 3}
|
||||
ally_heroSpineData: {fileID: 0}
|
||||
selectedSkinId:
|
||||
ally_heroThemeColor: {r: 0.6021716, g: 0.6021716, b: 0.6415094, a: 1}
|
||||
ally_heroDescription: "\u6E29\u59AE\uFF0C\u9898\u6D77\u6218\u672F\u7C7B\u6267\u5FF5\u5076\u50CF\u3002\u5728\u590D\u6F14\u6218\u6597\u8FC7\u7A0B\u4E2D\uFF0C\u5979\u6BCF\u4E00\u6B21\u5145\u6EE1\u6CD5\u529B\u503C\u5E76\u8FDB\u884C\u6D88\u8017\u540E\u90FD\u53EF\u4EE5\u9009\u62E9\u662F\u52A0\u5927\u4E0A\u9650\u6216\u964D\u4F4E\u4E0A\u9650\uFF0C\u4EE5\u53EF\u4EE5\u5728\u590D\u6F14\u5DE5\u4F5C\u524D\u6839\u636E\u654C\u4EBA\u4E0E\u6218\u672F\u6765\u81EA\u7531\u5730\u6539\u53D8\u5979\u7684\u6253\u6CD5\uFF0C\u4E0D\u8FC7\u8FD9\u4E9B\u7684\u6700\u7EC8\u76EE\u7684\u8FD8\u662F\u4EE5\u63D0\u9AD8\u5206\u503C\u4E3A\u4E3B\uFF0C\u7F3A\u70B9\u662F\u81EA\u8EAB\u7F3A\u4E4F\u4E00\u5B9A\u7684\u751F\u5B58\u80FD\u529B\u3002\n\n\u4E0D\u8FC7\uFF0C\u5BF9\u4E8E\u5979\u7684\u6545\u4E8B\u3002\u7D22\u5C3C\u5A05\uFF0C\u6211\u4EEC\u9700\u7EE7\u7EED\u6DF1\u5165\uFF0C\u5BFB\u627E\u5230\u66F4\u591A\u4EE5\u8BC1\u660E\u4ED6\u4EEC\u5B58\u5728\u8FC7\u7684\u201C\u8BB0\u5FC6\u788E\u7247\u201D\uFF0C\u624D\u53EF\u4E86\u89E3\u5979\u7684\u8EAB\u4E16\u5168\u8C8C......\n\n\u8BE5\u89D2\u8272\u7684\u6267\u5FF5\u6743\u91CD\uFF1A\n\u9898\u6D77\u6218\u672F\uFF1A\u4F4E\n\u8FF7\u832B\u6216\u51E1\u60F3\uFF1A\u7EDD\u5BF9\u56FA\u6267"
|
||||
levelStats:
|
||||
@@ -253,6 +255,6 @@ MonoBehaviour:
|
||||
skillDescriptionsText: "\u3010\u8D70\u5411\u672B\u8DEF\u3011\u6D88\u8017\u6CD5\u529B\u503C\u65F6\uFF0C\u83B7\u53D6\u7B49\u540C\u4E8E\u81EA\u8EAB\u6CD5\u529B\u503C\u4E0A\u9650100%\u7684\u5076\u50CF\u5206\u6570\uFF1B\u6D88\u8017\u5168\u90E8\u7684\u6CD5\u529B\u503C\u65F6\uFF0C\u989D\u5916\u83B7\u5F97200%\u3002"
|
||||
thisSkill_levelLimit: 4
|
||||
isSpecialSkill: 0
|
||||
equippedSkillGroupIDs:
|
||||
equippedSkillGroupIDs: 4ae4cc01
|
||||
equippedEquipment: {fileID: 0}
|
||||
equippedEquipmentId:
|
||||
|
||||
@@ -18,13 +18,15 @@ MonoBehaviour:
|
||||
isUnlocked: 0
|
||||
allyType: 0
|
||||
obsessionTag: "\u9898\u6D77\u6218\u672F"
|
||||
ally_heroImage: {fileID: 21300000, guid: b00fdd5328fcc314088a1c0481cea979, type: 3}
|
||||
ally_heroProfile: {fileID: 21300000, guid: b00fdd5328fcc314088a1c0481cea979, type: 3}
|
||||
ally_heroSelectIcon: {fileID: 21300000, guid: 8ec62ab8ffad7644fa1b78bb4b8a273d, type: 3}
|
||||
ally_heroImage: {fileID: 21300000, guid: 6fc190983329ff94bbc57da124144a25, type: 3}
|
||||
ally_heroProfile: {fileID: 21300000, guid: 6fc190983329ff94bbc57da124144a25, type: 3}
|
||||
ally_heroSelectIcon: {fileID: 21300000, guid: de8218d6b3882874f9ef628b364db638, type: 3}
|
||||
ally_heroIcon: {fileID: 0}
|
||||
ally_heroPoster: {fileID: 21300000, guid: a8bab1769ab84b74089227edc611840e, type: 3}
|
||||
ally_heroPoster: {fileID: 21300000, guid: 686269cdfb8d8974a9a78b052960de44, type: 3}
|
||||
ally_hero_HD_image: {fileID: 21300000, guid: fb192fc3071c95b4a9514f331a9ffa28, type: 3}
|
||||
ally_hero_squareProfile: {fileID: 21300000, guid: a2753bc864b1ff84093beb30d9d04892, type: 3}
|
||||
ally_heroSpineData: {fileID: 0}
|
||||
selectedSkinId:
|
||||
ally_heroThemeColor: {r: 0.20000002, g: 0.53333336, b: 0.77647066, a: 1}
|
||||
ally_heroDescription: "\u7231\u7433\u8FBE\u96C5\uFF0C\u9898\u6D77\u6218\u672F\u7C7B\u6267\u5FF5\u5076\u50CF\u3002\u76EE\u524D\u5DF2\u77E5\u7684\u5979\u4F5C\u4E3A\u884C\u5546\u4E4B\u5973\uFF0C\u4ECE\u5176\u7236\u4EB2\u90A3\u5B66\u5230\u4E86\u4E0D\u5C11\u7ECF\u5546\u672C\u9886\uFF0C\u56E0\u6B64\u5979\u6562\u4E8E\u5C06\u597D\u4E0D\u5BB9\u6613\u4E89\u53D6\u5230\u7684\u5076\u50CF\u5206\u6570\u518D\u4E00\u6B21\u201C\u6295\u8D44\u201D\u5230\u6218\u6597\u4E4B\u4E2D\uFF0C\u5E76\u5C1D\u8BD5\u5728\u6D88\u8017\u5168\u90E8\u6CD5\u529B\u503C\u65F6\u4E00\u6B21\u6027\u6323\u4E2A\u76C6\u6EE1\u94B5\u6EE1\uFF0C\u5E76\u7EE7\u7EED\u5979\u7684\u4E0B\u4E00\u6B21\u201C\u5E02\u573A\u64CD\u7EB5\u201D\u3002\n\n\u4E0D\u8FC7\uFF0C\u5BF9\u4E8E\u5979\u7684\u6545\u4E8B\u3002\u7D22\u5C3C\u5A05\uFF0C\u6211\u4EEC\u9700\u7EE7\u7EED\u6DF1\u5165\uFF0C\u5BFB\u627E\u5230\u66F4\u591A\u4EE5\u8BC1\u660E\u4ED6\u4EEC\u5B58\u5728\u8FC7\u7684\u201C\u8BB0\u5FC6\u788E\u7247\u201D\uFF0C\u624D\u53EF\u4E86\u89E3\u5979\u7684\u8EAB\u4E16\u5168\u8C8C......\n\n\u8BE5\u89D2\u8272\u7684\u6267\u5FF5\u6743\u91CD\uFF1A\n\u9898\u6D77\u6218\u672F\uFF1A\u4F4E\n\u5B8C\u7F8E\u81F3\u4E0A\uFF1A\u4F4E\n\u8BDB\u9504\u5F02\u5DF1\uFF1A\u4E00\u65F6\u8FC7\u8651\n\u4F17\u5FD7\u6210\u57CE\uFF1A\u4E00\u65F6\u8FC7\u8651\n\u8FF7\u832B\u6216\u51E1\u60F3\uFF1A\u9AD8"
|
||||
levelStats:
|
||||
@@ -99,9 +101,9 @@ MonoBehaviour:
|
||||
ally_currentEXP: 0
|
||||
ally_growthUnlockedTierIndex: 0
|
||||
ally_autoBreakthroughEnabled: 0
|
||||
ally_battleDeployCount: 41
|
||||
ally_finishCount: 35
|
||||
ally_mvpCount: 3
|
||||
ally_battleDeployCount: 0
|
||||
ally_finishCount: 0
|
||||
ally_mvpCount: 0
|
||||
ally_joinDateUtcTicks: 0
|
||||
behaviourAxes:
|
||||
- axisName: "\u9898\u6D77\u6218\u672F"
|
||||
@@ -254,5 +256,5 @@ MonoBehaviour:
|
||||
thisSkill_levelLimit: 4
|
||||
isSpecialSkill: 0
|
||||
equippedSkillGroupIDs:
|
||||
equippedEquipment: {fileID: 11400000, guid: c312f0ebe2d6f1e4397eaadb11256a6b, type: 2}
|
||||
equippedEquipment: {fileID: 0}
|
||||
equippedEquipmentId: type0_20260325_00000008
|
||||
|
||||
@@ -13,8 +13,8 @@ MonoBehaviour:
|
||||
m_Name: 77000_defaultItem
|
||||
m_EditorClassIdentifier:
|
||||
itemName: GlassyHeart
|
||||
itemIcon: {fileID: 21300000, guid: 1a62adf36834dd04181a6dd61344f8b8, type: 3}
|
||||
itemRarity: 0
|
||||
itemIcon: {fileID: 21300000, guid: f1392c20b42a21e41ab24d4e22013c24, type: 3}
|
||||
itemRarity: 1
|
||||
itemID: 77000
|
||||
itemSinglePurchaseQty: 1
|
||||
itemPurchaseQuota: -1
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 77001_30206
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "\u5076\u50CF\u6863\u6848-\u7231\u7433\u8FBE\u96C5"
|
||||
itemIcon: {fileID: 21300000, guid: a2753bc864b1ff84093beb30d9d04892, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: b00a4fab6dbe2e442877acadc8e65e4e, type: 3}
|
||||
itemRarity: 6
|
||||
itemID: 77001
|
||||
itemSinglePurchaseQty: 1
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 77003_song1
|
||||
m_EditorClassIdentifier:
|
||||
itemName: Life is PIANO
|
||||
itemIcon: {fileID: 21300000, guid: ff6528bfadcf6e948b39b207f5213c2d, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: 9aa8ac4273d6bc44fa1244489b9ad46b, type: 3}
|
||||
itemRarity: 3
|
||||
itemID: 77003
|
||||
itemSinglePurchaseQty: 1
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 77004_song2
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "\u5B54\u5609\u5F6C\u7684\u6B4C"
|
||||
itemIcon: {fileID: 21300000, guid: 1e53d2b4456d0704f8db855e5c0e0081, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: b15df52129af26540ab2c94faa3104fb, type: 3}
|
||||
itemRarity: 3
|
||||
itemID: 77004
|
||||
itemSinglePurchaseQty: 1
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78000_emperorXPb
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "\u7687\u5E1D\u7684\u590D\u6F14\u5355\u5143"
|
||||
itemIcon: {fileID: 21300000, guid: b4bacb7037660594e988bcb14294f656, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: 2d15d170b5423f84fa6f464c1648f954, type: 3}
|
||||
itemRarity: 7
|
||||
itemID: 78000
|
||||
itemSinglePurchaseQty: 1
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78001_normalXPb
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "<color=#5F9B6B>\u5165\u95E8\u590D\u6F14\u5355\u5143</color>"
|
||||
itemIcon: {fileID: 21300000, guid: d9aecb29877912e468fff6e3d69cdde1, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: 10de1d7090f6d9a4c964b586ea9cb287, type: 3}
|
||||
itemRarity: 1
|
||||
itemID: 78001
|
||||
itemSinglePurchaseQty: 1
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78002_mediumXPb
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "<color=#4A86B8>\u7ADE\u8D5B\u590D\u6F14\u5355\u5143</color>"
|
||||
itemIcon: {fileID: 21300000, guid: 44c1abe7153739d429315227c0f3493d, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: dcd83e8a72bc0d440abc1a45fcaa6f2b, type: 3}
|
||||
itemRarity: 2
|
||||
itemID: 78002
|
||||
itemSinglePurchaseQty: 1
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78003_superiorXPb
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "<color=#6A4C9C>\u8054\u8D5B\u590D\u6F14\u5355\u5143</color>"
|
||||
itemIcon: {fileID: 21300000, guid: 0a7c3c46f2eb6ec4188b6622b03c296a, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: 13dccfed270ea314baacb469c81b4a32, type: 3}
|
||||
itemRarity: 3
|
||||
itemID: 78003
|
||||
itemSinglePurchaseQty: 1
|
||||
@@ -39,4 +39,4 @@ MonoBehaviour:
|
||||
- currencyType: 0
|
||||
amount: 5
|
||||
unlockRequirements: []
|
||||
purchasedCount: 502
|
||||
purchasedCount: 503
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78004_supremeXPb
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "<color=#B88645>\u673A\u6784\u590D\u6F14\u5355\u5143</color>"
|
||||
itemIcon: {fileID: 21300000, guid: 42ec6fdae47e3474783bdbc659fdcd5b, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: ba4af38dbec3f8443ba4ea3bc9830874, type: 3}
|
||||
itemRarity: 4
|
||||
itemID: 78004
|
||||
itemSinglePurchaseQty: 1
|
||||
@@ -39,4 +39,4 @@ MonoBehaviour:
|
||||
- currencyType: 0
|
||||
amount: 6
|
||||
unlockRequirements: []
|
||||
purchasedCount: 507
|
||||
purchasedCount: 508
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78005_extraordinaryXPb
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "<color=#B84C4C>\u96C6\u56E2\u590D\u6F14\u5355\u5143</color>"
|
||||
itemIcon: {fileID: 21300000, guid: 07a61fc4925744345829ebecc8ec2d65, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: a2add83e82c6ae04b814ed8adea43785, type: 3}
|
||||
itemRarity: 5
|
||||
itemID: 78005
|
||||
itemSinglePurchaseQty: 1
|
||||
@@ -39,4 +39,4 @@ MonoBehaviour:
|
||||
- currencyType: 0
|
||||
amount: 7
|
||||
unlockRequirements: []
|
||||
purchasedCount: 506
|
||||
purchasedCount: 510
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78006_celestialXPb
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "<color=#D96C9E>\u51A0\u519B\u590D\u6F14\u5355\u5143</color>"
|
||||
itemIcon: {fileID: 21300000, guid: 24c71fb1f433cc046b33fd3a2cbb28f6, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: b9cf7968f27804d49ba9d37de9b93046, type: 3}
|
||||
itemRarity: 6
|
||||
itemID: 78006
|
||||
itemSinglePurchaseQty: 1
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78011_therainXPb
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "<color=#4A86B8>\u5171\u4EAB\u5355\u5143</color> "
|
||||
itemIcon: {fileID: 21300000, guid: 119d6caf259b1564c95cf54f5ccf5d24, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: 03010783427589943a986fe133eb2c40, type: 3}
|
||||
itemRarity: 3
|
||||
itemID: 78011
|
||||
itemSinglePurchaseQty: 1
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78012_senior_therainXPb
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "<color=#6A4C9C>\u9AD8\u7EA7\u5171\u4EAB\u5355\u5143</color>"
|
||||
itemIcon: {fileID: 21300000, guid: e270aad0cf285c04dac5a6758b069e63, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: 60bec71a4803ef142996f604e9cceefa, type: 3}
|
||||
itemRarity: 4
|
||||
itemID: 78012
|
||||
itemSinglePurchaseQty: 1
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78013_super_therainXPb
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "<color=#B88645>\u8D85\u7EA7\u5171\u4EAB\u5355\u5143</color>"
|
||||
itemIcon: {fileID: 21300000, guid: e74de04611dd13249901884ca82ba46c, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: 02bda42f9d3e8d44fbdc71f16f7f5d46, type: 3}
|
||||
itemRarity: 5
|
||||
itemID: 78013
|
||||
itemSinglePurchaseQty: 1
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78021_dush_normal
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "<color=#4A86B8>\u4E09\u7EA7\u5F52\u6863\u5408\u7EA6</color>"
|
||||
itemIcon: {fileID: 21300000, guid: 26b4d8692c5e74d17bd9dc28bcbe961b, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: 1d7736a1cf9771648937563b3a46692b, type: 3}
|
||||
itemRarity: 2
|
||||
itemID: 78021
|
||||
itemSinglePurchaseQty: 1
|
||||
@@ -39,4 +39,4 @@ MonoBehaviour:
|
||||
- currencyType: 0
|
||||
amount: 1
|
||||
unlockRequirements: []
|
||||
purchasedCount: 1320
|
||||
purchasedCount: 1321
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78022_dush_medium
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "<color=#6A4C9C>\u4E8C\u7EA7\u5F52\u6863\u5408\u7EA6</color>"
|
||||
itemIcon: {fileID: 21300000, guid: b83080d92786f42589381bbe09110c3c, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: c127de0638777b44abde4d860bd00436, type: 3}
|
||||
itemRarity: 3
|
||||
itemID: 78022
|
||||
itemSinglePurchaseQty: 1
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78023_dush_super
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "<color=#B88645>\u4E00\u7EA7\u5F52\u6863\u5408\u7EA6</color>"
|
||||
itemIcon: {fileID: 21300000, guid: 6fc31519aded24a839c1af9e163b6c01, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: ff5a196ca29ac7940b52badef5f6cc9a, type: 3}
|
||||
itemRarity: 4
|
||||
itemID: 78023
|
||||
itemSinglePurchaseQty: 1
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78024_dush_superior
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "<color=#B84C4C>\u7EC8\u6781\u5F52\u6863\u5408\u7EA6</color>"
|
||||
itemIcon: {fileID: 21300000, guid: b72023ef6c5c54ebb94ee8c520cfe2e9, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: 6c859c4435743da4da5fa9039a885d17, type: 3}
|
||||
itemRarity: 5
|
||||
itemID: 78024
|
||||
itemSinglePurchaseQty: 1
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78101_eqp_upgrade_material
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "<color=#6A4C9C>\u7F8E\u5473\u5C0F\u86CB\u7CD5</color>"
|
||||
itemIcon: {fileID: 21300000, guid: 2cc4c147b6b7649d6ac98a928018c544, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: 636f729e43ab20a4e8c3db14ea2e839d, type: 3}
|
||||
itemRarity: 2
|
||||
itemID: 78101
|
||||
itemSinglePurchaseQty: 1
|
||||
@@ -39,4 +39,4 @@ MonoBehaviour:
|
||||
- currencyType: 0
|
||||
amount: 1
|
||||
unlockRequirements: []
|
||||
purchasedCount: 100001
|
||||
purchasedCount: 200101
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78111_eqp_breakthrough_material
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "<color=#B84C4C>\u5927\u578B\u70ED\u91CF\u70B8\u5F39</color>"
|
||||
itemIcon: {fileID: 21300000, guid: 5e0181b769b64401bac538a3310aa847, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: 16ae7ec655cacbf4792dd84fb264f560, type: 3}
|
||||
itemRarity: 3
|
||||
itemID: 78111
|
||||
itemSinglePurchaseQty: 1
|
||||
@@ -39,4 +39,4 @@ MonoBehaviour:
|
||||
- currencyType: 0
|
||||
amount: 1
|
||||
unlockRequirements: []
|
||||
purchasedCount: 1001005
|
||||
purchasedCount: 1101113
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78121_eqp_transfer_material
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "\u524D\u5C18\u4F59\u97F5\u6E90\u6676"
|
||||
itemIcon: {fileID: 21300000, guid: a470194d6b54e8848b0b338c688da9ed, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: abf84675d0fe674478e2994c05c85e5a, type: 3}
|
||||
itemRarity: 4
|
||||
itemID: 78121
|
||||
itemSinglePurchaseQty: 1
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78131_eqp_final_material
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "\u68A6\u9192\u6743\u9650"
|
||||
itemIcon: {fileID: 21300000, guid: b744ed0c702d8994982728691f19e3ed, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: 74e8a6162cf9a9f4fb524a1200191a3f, type: 3}
|
||||
itemRarity: 7
|
||||
itemID: 78131
|
||||
itemSinglePurchaseQty: 1
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78141_random_memory_shop
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "\u968F\u673A\u8BB0\u5FC6"
|
||||
itemIcon: {fileID: 21300000, guid: 6fd4dd33d986d824d95f7b01579acc4d, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: 8aebe6a55e9b58944ad4f020b937e83a, type: 3}
|
||||
itemRarity: 3
|
||||
itemID: 78141
|
||||
itemSinglePurchaseQty: 1
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78142_selfchosen_memory_shop
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "\u81EA\u9009\u8BB0\u5FC6"
|
||||
itemIcon: {fileID: 21300000, guid: 6fd4dd33d986d824d95f7b01579acc4d, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: fc75ff0c317d08b4695b8b06166918c6, type: 3}
|
||||
itemRarity: 4
|
||||
itemID: 78142
|
||||
itemSinglePurchaseQty: 1
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78143_hightalent_memory_shop
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "\u81EA\u9009\u9AD8\u5929\u8D4B\u8BB0\u5FC6"
|
||||
itemIcon: {fileID: 21300000, guid: 6fd4dd33d986d824d95f7b01579acc4d, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: 2d331079aaba28e4eab026bfa85be114, type: 3}
|
||||
itemRarity: 5
|
||||
itemID: 78143
|
||||
itemSinglePurchaseQty: 1
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78144_treasure_memory_shop
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "\u81EA\u9009\u73CD\u85CF\u8BB0\u5FC6"
|
||||
itemIcon: {fileID: 21300000, guid: 6fd4dd33d986d824d95f7b01579acc4d, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: 9fd4045ab291c16408f6af9eb70e690a, type: 3}
|
||||
itemRarity: 6
|
||||
itemID: 78144
|
||||
itemSinglePurchaseQty: 1
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78145_supreme_memory_shop
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "\u81EA\u9009\u81F3\u81FB\u8BB0\u5FC6"
|
||||
itemIcon: {fileID: 21300000, guid: 6fd4dd33d986d824d95f7b01579acc4d, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: 692e3a802204f384f97c8686b43b5e6a, type: 3}
|
||||
itemRarity: 7
|
||||
itemID: 78145
|
||||
itemSinglePurchaseQty: 1
|
||||
|
||||
@@ -13,7 +13,7 @@ MonoBehaviour:
|
||||
m_Name: 78146_engraved_memory_shop
|
||||
m_EditorClassIdentifier:
|
||||
itemName: "\u81EA\u9009\u523B\u9AA8\u94ED\u5FC3\u8BB0\u5FC6"
|
||||
itemIcon: {fileID: 21300000, guid: 6fd4dd33d986d824d95f7b01579acc4d, type: 3}
|
||||
itemIcon: {fileID: 21300000, guid: 591ac44a4230f6240aebb73adbd23b6d, type: 3}
|
||||
itemRarity: 7
|
||||
itemID: 78146
|
||||
itemSinglePurchaseQty: 1
|
||||
|
||||
@@ -155,7 +155,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 50, y: 50}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &11017484
|
||||
@@ -230,7 +230,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -10}
|
||||
m_AnchoredPosition: {x: 9, y: -10}
|
||||
m_SizeDelta: {x: 18, y: 18}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &29960259
|
||||
@@ -380,7 +380,7 @@ RectTransform:
|
||||
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: NaN, y: -176.71}
|
||||
m_AnchoredPosition: {x: 0, y: -176.71}
|
||||
m_SizeDelta: {x: 1000, y: 30}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &73146556
|
||||
@@ -459,7 +459,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -47.5}
|
||||
m_AnchoredPosition: {x: 592, y: -47.5}
|
||||
m_SizeDelta: {x: 220, y: 75}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &75133059
|
||||
@@ -542,7 +542,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 1920, y: 1080}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &92875214
|
||||
@@ -663,7 +663,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -10}
|
||||
m_AnchoredPosition: {x: 507.5, y: -10}
|
||||
m_SizeDelta: {x: 95, y: 20}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &153489586
|
||||
@@ -741,7 +741,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -10}
|
||||
m_AnchoredPosition: {x: 57.5, y: -10}
|
||||
m_SizeDelta: {x: 75, y: 15}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &172244362
|
||||
@@ -835,7 +835,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -5}
|
||||
m_AnchoredPosition: {x: 37, y: -5}
|
||||
m_SizeDelta: {x: 50, y: 15}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &173751377
|
||||
@@ -930,7 +930,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 1920, y: 1080}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &182328456
|
||||
@@ -1006,7 +1006,7 @@ RectTransform:
|
||||
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: NaN, y: 80}
|
||||
m_AnchoredPosition: {x: 150.47, y: 80}
|
||||
m_SizeDelta: {x: 707.51, y: 34.88}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &222246893
|
||||
@@ -1183,7 +1183,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 64.98, y: 0}
|
||||
m_SizeDelta: {x: 114, y: 21.44}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &241537470
|
||||
@@ -1262,7 +1262,7 @@ RectTransform:
|
||||
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: NaN, y: -25.66}
|
||||
m_AnchoredPosition: {x: 0, y: -25.66}
|
||||
m_SizeDelta: {x: 21, y: 18}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &300644029
|
||||
@@ -1339,7 +1339,7 @@ RectTransform:
|
||||
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: NaN, y: -510.8}
|
||||
m_AnchoredPosition: {x: -869.7, y: -510.8}
|
||||
m_SizeDelta: {x: 160.01, y: 25}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &308199597
|
||||
@@ -1430,7 +1430,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 0}
|
||||
m_AnchorMax: {x: 1, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: -5.3, y: 0}
|
||||
m_Pivot: {x: 0, y: 1}
|
||||
--- !u!114 &309034178
|
||||
@@ -1520,7 +1520,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 1, y: 0}
|
||||
m_AnchorMax: {x: 1, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 8.3, y: 0}
|
||||
m_Pivot: {x: 1, y: 1}
|
||||
--- !u!114 &320662314
|
||||
@@ -1644,7 +1644,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -10}
|
||||
m_AnchoredPosition: {x: 9, y: -10}
|
||||
m_SizeDelta: {x: 18, y: 18}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &349804032
|
||||
@@ -1721,7 +1721,7 @@ RectTransform:
|
||||
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: NaN, y: -283.27}
|
||||
m_AnchoredPosition: {x: 0, y: -283.27}
|
||||
m_SizeDelta: {x: 507.33, y: 55.83}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &382755580
|
||||
@@ -1845,7 +1845,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 64.98, y: 0}
|
||||
m_SizeDelta: {x: 114, y: 21.44}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &396104346
|
||||
@@ -1924,7 +1924,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 0}
|
||||
m_AnchorMax: {x: 1, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 0, y: 0}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &413848941
|
||||
@@ -2003,7 +2003,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: -100, y: 0}
|
||||
m_SizeDelta: {x: 20, y: 20}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &419430411
|
||||
@@ -2079,7 +2079,7 @@ RectTransform:
|
||||
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: NaN, y: -12.75}
|
||||
m_AnchoredPosition: {x: 3.46, y: -12.75}
|
||||
m_SizeDelta: {x: 511.67, y: 61.84}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &426625533
|
||||
@@ -2199,7 +2199,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 220, y: 75}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &436240114
|
||||
@@ -2276,7 +2276,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 50, y: 50}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &462683875
|
||||
@@ -2353,7 +2353,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 50, y: 50}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &486109077
|
||||
@@ -2493,9 +2493,9 @@ Camera:
|
||||
m_LensShift: {x: 0, y: 0}
|
||||
m_NormalizedViewPortRect:
|
||||
serializedVersion: 2
|
||||
x: 0.00010344386
|
||||
x: 0
|
||||
y: 0
|
||||
width: 0.9997931
|
||||
width: 1
|
||||
height: 1
|
||||
near clip plane: 0.3
|
||||
far clip plane: 1000
|
||||
@@ -2579,7 +2579,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 100, y: 0}
|
||||
m_SizeDelta: {x: 20, y: 20}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &542355809
|
||||
@@ -2654,7 +2654,7 @@ RectTransform:
|
||||
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: NaN, y: -100}
|
||||
m_AnchoredPosition: {x: 0, y: -100}
|
||||
m_SizeDelta: {x: 450, y: 300}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!1 &619394800
|
||||
@@ -2775,7 +2775,7 @@ RectTransform:
|
||||
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: NaN, y: -384}
|
||||
m_AnchoredPosition: {x: 354.7, y: -384}
|
||||
m_SizeDelta: {x: 497.7007, y: 140.77}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &623677387
|
||||
@@ -2903,7 +2903,7 @@ RectTransform:
|
||||
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: NaN, y: 5.43}
|
||||
m_AnchoredPosition: {x: 0, y: 5.43}
|
||||
m_SizeDelta: {x: 710, y: 351.19}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &668859141
|
||||
@@ -3010,7 +3010,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 1920, y: 1080}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &719193752
|
||||
@@ -3131,7 +3131,7 @@ RectTransform:
|
||||
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: NaN, y: -332.9}
|
||||
m_AnchoredPosition: {x: 0, y: -332.9}
|
||||
m_SizeDelta: {x: 160, y: 30}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &726773050
|
||||
@@ -3267,7 +3267,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: -265.5, y: 0}
|
||||
m_SizeDelta: {x: 97.78, y: 17.74}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &727006824
|
||||
@@ -3559,7 +3559,7 @@ RectTransform:
|
||||
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: NaN, y: 503.9}
|
||||
m_AnchoredPosition: {x: -490.64, y: 503.9}
|
||||
m_SizeDelta: {x: 0, y: 15}
|
||||
m_Pivot: {x: 0, y: 0.5}
|
||||
--- !u!222 &769974829
|
||||
@@ -3794,7 +3794,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 0}
|
||||
m_AnchorMax: {x: 1, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: -20, y: -20}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!1 &816275736
|
||||
@@ -3831,7 +3831,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 10000, y: 10000}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &816275738
|
||||
@@ -3906,7 +3906,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 1920, y: 1080}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &816404957
|
||||
@@ -3980,7 +3980,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -10}
|
||||
m_AnchoredPosition: {x: 277.5, y: -10}
|
||||
m_SizeDelta: {x: 95, y: 20}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &836142892
|
||||
@@ -4175,7 +4175,7 @@ RectTransform:
|
||||
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: NaN, y: 12.02}
|
||||
m_AnchoredPosition: {x: 100.01, y: 12.02}
|
||||
m_SizeDelta: {x: 131.2, y: 22}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &876984646
|
||||
@@ -4255,7 +4255,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: -72, y: 0}
|
||||
m_SizeDelta: {x: 53, y: 53}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &914685785
|
||||
@@ -4405,7 +4405,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 1920, y: 1080}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &969599517
|
||||
@@ -4583,7 +4583,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 670.49, y: 1006}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1013082824
|
||||
@@ -4660,7 +4660,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 0}
|
||||
m_AnchorMax: {x: 1, y: 0}
|
||||
m_AnchoredPosition: {x: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: -5.3, y: 20}
|
||||
m_Pivot: {x: 0, y: 0}
|
||||
--- !u!114 &1018220681
|
||||
@@ -4784,7 +4784,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -47.5}
|
||||
m_AnchoredPosition: {x: 356, y: -47.5}
|
||||
m_SizeDelta: {x: 220, y: 75}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1031085825
|
||||
@@ -4867,7 +4867,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 0, y: 61.84}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1046117482
|
||||
@@ -4945,7 +4945,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 220, y: 75}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1114498345
|
||||
@@ -5020,7 +5020,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 0}
|
||||
m_AnchorMax: {x: 0, y: 0}
|
||||
m_AnchoredPosition: {x: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 20, y: 20}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1115940613
|
||||
@@ -5096,7 +5096,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -10}
|
||||
m_AnchoredPosition: {x: 57.5, y: -10}
|
||||
m_SizeDelta: {x: 75, y: 15}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1122772965
|
||||
@@ -5342,7 +5342,7 @@ RectTransform:
|
||||
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: NaN, y: -482.3}
|
||||
m_AnchoredPosition: {x: -869.7, y: -482.3}
|
||||
m_SizeDelta: {x: 160, y: 30}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1169972663
|
||||
@@ -5563,7 +5563,7 @@ RectTransform:
|
||||
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: NaN, y: 12.02}
|
||||
m_AnchoredPosition: {x: 100.01, y: 12.02}
|
||||
m_SizeDelta: {x: 131.2, y: 22}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1191644179
|
||||
@@ -5784,7 +5784,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 1, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 6.43, y: 300}
|
||||
m_Pivot: {x: 0, y: 1}
|
||||
--- !u!114 &1216424340
|
||||
@@ -5845,7 +5845,7 @@ RectTransform:
|
||||
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: NaN, y: 1.35}
|
||||
m_AnchoredPosition: {x: 0, y: 1.35}
|
||||
m_SizeDelta: {x: 274.5, y: 63.4}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1231263763
|
||||
@@ -5920,7 +5920,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 1920, y: 1080}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1274601004
|
||||
@@ -5991,7 +5991,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 0}
|
||||
m_AnchorMax: {x: 1, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: -20, y: -20}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!1 &1364307995
|
||||
@@ -6029,7 +6029,7 @@ RectTransform:
|
||||
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: NaN, y: 501}
|
||||
m_AnchoredPosition: {x: -946.705, y: 501}
|
||||
m_SizeDelta: {x: 0, y: 10}
|
||||
m_Pivot: {x: 0, y: 0.5}
|
||||
--- !u!114 &1364307997
|
||||
@@ -6121,7 +6121,7 @@ RectTransform:
|
||||
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: NaN, y: -20}
|
||||
m_AnchoredPosition: {x: 0, y: -20}
|
||||
m_SizeDelta: {x: 710, y: 331.38}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!1 &1401636779
|
||||
@@ -6158,7 +6158,7 @@ RectTransform:
|
||||
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: NaN, y: -384}
|
||||
m_AnchoredPosition: {x: -336.98, y: -384}
|
||||
m_SizeDelta: {x: 497.7007, y: 140.77}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1401636781
|
||||
@@ -6237,7 +6237,7 @@ RectTransform:
|
||||
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: NaN, y: -408.32}
|
||||
m_AnchoredPosition: {x: 0, y: -408.32}
|
||||
m_SizeDelta: {x: 1192, y: 12}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1419788766
|
||||
@@ -6313,7 +6313,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -10}
|
||||
m_AnchoredPosition: {x: 57.5, y: -10}
|
||||
m_SizeDelta: {x: 75, y: 15}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1509234226
|
||||
@@ -6406,7 +6406,7 @@ RectTransform:
|
||||
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: NaN, y: 12.02}
|
||||
m_AnchoredPosition: {x: 100.01, y: 12.02}
|
||||
m_SizeDelta: {x: 131.2, y: 22}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1511374138
|
||||
@@ -6560,7 +6560,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -10}
|
||||
m_AnchoredPosition: {x: 9, y: -10}
|
||||
m_SizeDelta: {x: 18, y: 18}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1568914996
|
||||
@@ -6635,7 +6635,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: -64.4, y: 0}
|
||||
m_SizeDelta: {x: 21, y: 18}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1585865817
|
||||
@@ -6817,7 +6817,7 @@ RectTransform:
|
||||
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: NaN, y: 79.01}
|
||||
m_AnchoredPosition: {x: 0, y: 79.01}
|
||||
m_SizeDelta: {x: 740, y: 458.01}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1666387302
|
||||
@@ -6970,7 +6970,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 100, y: 100}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!1 &1702962928
|
||||
@@ -7007,7 +7007,7 @@ RectTransform:
|
||||
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: NaN, y: -492.9}
|
||||
m_AnchoredPosition: {x: 918.2, y: -492.9}
|
||||
m_SizeDelta: {x: 51.3, y: 42.78}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1702962930
|
||||
@@ -7162,7 +7162,7 @@ RectTransform:
|
||||
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: NaN, y: -12.8}
|
||||
m_AnchoredPosition: {x: 41.6, y: -12.8}
|
||||
m_SizeDelta: {x: 13.72, y: 13.88}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1744768939
|
||||
@@ -7237,7 +7237,7 @@ RectTransform:
|
||||
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: NaN, y: 39.01}
|
||||
m_AnchoredPosition: {x: 0, y: 39.01}
|
||||
m_SizeDelta: {x: 254, y: 103}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1746241771
|
||||
@@ -7312,7 +7312,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -47.5}
|
||||
m_AnchoredPosition: {x: 120, y: -47.5}
|
||||
m_SizeDelta: {x: 220, y: 75}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1797413298
|
||||
@@ -7395,7 +7395,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -5}
|
||||
m_AnchoredPosition: {x: 317.8, y: -5}
|
||||
m_SizeDelta: {x: 62, y: 20}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1801654481
|
||||
@@ -7575,7 +7575,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: -72, y: 0}
|
||||
m_SizeDelta: {x: 53, y: 53}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1827420123
|
||||
@@ -7650,7 +7650,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 64.98, y: 0}
|
||||
m_SizeDelta: {x: 114, y: 21.44}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1843095586
|
||||
@@ -7731,7 +7731,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -10}
|
||||
m_AnchoredPosition: {x: 392.5, y: -10}
|
||||
m_SizeDelta: {x: 95, y: 20}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1852679804
|
||||
@@ -7809,7 +7809,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -10}
|
||||
m_AnchoredPosition: {x: 57.5, y: -10}
|
||||
m_SizeDelta: {x: 75, y: 15}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1862734562
|
||||
@@ -7903,7 +7903,7 @@ RectTransform:
|
||||
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: NaN, y: 15.3}
|
||||
m_AnchoredPosition: {x: -455.17, y: 15.3}
|
||||
m_SizeDelta: {x: 626, y: 256}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1864583771
|
||||
@@ -7978,7 +7978,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 765, y: 638}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1872466269
|
||||
@@ -8054,7 +8054,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: -72, y: 0}
|
||||
m_SizeDelta: {x: 53, y: 53}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1873734190
|
||||
@@ -8129,7 +8129,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -15}
|
||||
m_AnchoredPosition: {x: 50, y: -15}
|
||||
m_SizeDelta: {x: 100, y: 30}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1890512551
|
||||
@@ -8210,7 +8210,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 1920, y: 1080}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1901335930
|
||||
@@ -8443,7 +8443,7 @@ RectTransform:
|
||||
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: NaN, y: -510.7}
|
||||
m_AnchoredPosition: {x: 0, y: -510.7}
|
||||
m_SizeDelta: {x: 235.4, y: 50}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1919403222
|
||||
@@ -8579,7 +8579,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 0}
|
||||
m_AnchorMax: {x: 0, y: 0}
|
||||
m_AnchoredPosition: {x: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 20, y: 20}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1926565056
|
||||
@@ -8770,7 +8770,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 220, y: 75}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1936846764
|
||||
@@ -8846,7 +8846,7 @@ RectTransform:
|
||||
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: NaN, y: -12.8}
|
||||
m_AnchoredPosition: {x: 41.6, y: -12.8}
|
||||
m_SizeDelta: {x: 13.72, y: 13.88}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1951402403
|
||||
@@ -8921,7 +8921,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -10}
|
||||
m_AnchoredPosition: {x: 9, y: -10}
|
||||
m_SizeDelta: {x: 18, y: 18}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1957232312
|
||||
@@ -8997,7 +8997,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -10}
|
||||
m_AnchoredPosition: {x: 57.5, y: -10}
|
||||
m_SizeDelta: {x: 75, y: 15}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1959088984
|
||||
@@ -9092,7 +9092,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -10}
|
||||
m_AnchoredPosition: {x: 47.5, y: -10}
|
||||
m_SizeDelta: {x: 95, y: 20}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1965076613
|
||||
@@ -9170,8 +9170,8 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: 115.97242, y: -30.92}
|
||||
m_SizeDelta: {x: 151.94484, y: 40}
|
||||
m_AnchoredPosition: {x: 119.75, y: -30.92}
|
||||
m_SizeDelta: {x: 159.5, y: 40}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1984783865
|
||||
MonoBehaviour:
|
||||
@@ -9263,7 +9263,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 0}
|
||||
m_AnchorMax: {x: 1, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0.8499985, y: 0}
|
||||
m_SizeDelta: {x: -75.65, y: 0}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1985249276
|
||||
@@ -9342,7 +9342,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: -64, y: 0}
|
||||
m_SizeDelta: {x: 19, y: 22}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1988493176
|
||||
@@ -9417,7 +9417,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -5}
|
||||
m_AnchoredPosition: {x: 5, y: -5}
|
||||
m_SizeDelta: {x: 18, y: 18}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &1991515895
|
||||
@@ -9494,7 +9494,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -10}
|
||||
m_AnchoredPosition: {x: 162.5, y: -10}
|
||||
m_SizeDelta: {x: 95, y: 20}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &2046736305
|
||||
@@ -9577,7 +9577,7 @@ RectTransform:
|
||||
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: NaN, y: -209.8}
|
||||
m_AnchoredPosition: {x: 0, y: -209.8}
|
||||
m_SizeDelta: {x: 555, y: 20}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &2059840867
|
||||
@@ -9655,7 +9655,7 @@ RectTransform:
|
||||
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: NaN, y: -12.8}
|
||||
m_AnchoredPosition: {x: 41.6, y: -12.8}
|
||||
m_SizeDelta: {x: 13.72, y: 13.88}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &2081306665
|
||||
@@ -9730,7 +9730,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 1920, y: 1080}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &2086875086
|
||||
@@ -9806,7 +9806,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 3840, y: 2160}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &2088886066
|
||||
@@ -9925,7 +9925,7 @@ RectTransform:
|
||||
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: NaN, y: 110}
|
||||
m_AnchoredPosition: {x: 0, y: 110}
|
||||
m_SizeDelta: {x: 400, y: 30}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &2091703209
|
||||
@@ -10056,7 +10056,7 @@ RectTransform:
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 1}
|
||||
m_AnchorMax: {x: 0, y: 1}
|
||||
m_AnchoredPosition: {x: NaN, y: -10}
|
||||
m_AnchoredPosition: {x: 9, y: -10}
|
||||
m_SizeDelta: {x: 18, y: 18}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &2105151251
|
||||
@@ -10133,7 +10133,7 @@ RectTransform:
|
||||
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: NaN, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 121, y: 36}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!114 &2132023161
|
||||
@@ -10203,7 +10203,7 @@ MonoBehaviour:
|
||||
m_Script: {fileID: 11500000, guid: ef4bffeda13d7a748973ff9204401c07, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
enableSteamVerification: 0
|
||||
enableSteamVerification: 1
|
||||
--- !u!4 &9100000001003
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
|
||||
@@ -4236,6 +4236,51 @@ Transform:
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!1 &9100000011001
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 9100000011003}
|
||||
- component: {fileID: 9100000011002}
|
||||
m_Layer: 0
|
||||
m_Name: SteamManager
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!114 &9100000011002
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 9100000011001}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: ef4bffeda13d7a748973ff9204401c07, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
enableSteamVerification: 1
|
||||
--- !u!4 &9100000011003
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 9100000011001}
|
||||
serializedVersion: 2
|
||||
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: 0}
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
--- !u!1660057539 &9223372036854775807
|
||||
SceneRoots:
|
||||
m_ObjectHideFlags: 0
|
||||
@@ -4244,3 +4289,4 @@ SceneRoots:
|
||||
- {fileID: 1034838009}
|
||||
- {fileID: 2104985012}
|
||||
- {fileID: 791668104}
|
||||
- {fileID: 9100000011003}
|
||||
|
||||
@@ -0,0 +1,180 @@
|
||||
Shader "UI/Soft Shadow"
|
||||
{
|
||||
Properties
|
||||
{
|
||||
[PerRendererData] _MainTex ("Sprite Texture", 2D) = "white" {}
|
||||
_Color ("Tint", Color) = (1,1,1,1)
|
||||
|
||||
_ShadowColor ("Shadow Color", Color) = (0,0,0,0.65)
|
||||
_ShadowOffset ("Shadow Offset (Pixels)", Vector) = (6,-6,0,0)
|
||||
_ShadowBlur ("Shadow Blur", Range(0,8)) = 2
|
||||
_ShadowStrength ("Shadow Strength", Range(0,2)) = 1
|
||||
_InsetPadding ("Extra Safe Inset", Range(0,0.25)) = 0.02
|
||||
|
||||
_StencilComp ("Stencil Comparison", Float) = 8
|
||||
_Stencil ("Stencil ID", Float) = 0
|
||||
_StencilOp ("Stencil Operation", Float) = 0
|
||||
_StencilWriteMask ("Stencil Write Mask", Float) = 255
|
||||
_StencilReadMask ("Stencil Read Mask", Float) = 255
|
||||
_ColorMask ("Color Mask", Float) = 15
|
||||
[Toggle(UNITY_UI_ALPHACLIP)] _UseUIAlphaClip ("Use Alpha Clip", Float) = 0
|
||||
}
|
||||
|
||||
SubShader
|
||||
{
|
||||
Tags
|
||||
{
|
||||
"Queue"="Transparent"
|
||||
"IgnoreProjector"="True"
|
||||
"RenderType"="Transparent"
|
||||
"PreviewType"="Plane"
|
||||
"CanUseSpriteAtlas"="True"
|
||||
}
|
||||
|
||||
Stencil
|
||||
{
|
||||
Ref [_Stencil]
|
||||
ReadMask [_StencilReadMask]
|
||||
WriteMask [_StencilWriteMask]
|
||||
Comp [_StencilComp]
|
||||
Pass [_StencilOp]
|
||||
}
|
||||
|
||||
Cull Off
|
||||
Lighting Off
|
||||
ZWrite Off
|
||||
ZTest [unity_GUIZTestMode]
|
||||
Blend One OneMinusSrcAlpha
|
||||
ColorMask [_ColorMask]
|
||||
|
||||
Pass
|
||||
{
|
||||
Name "Default"
|
||||
|
||||
HLSLPROGRAM
|
||||
#pragma vertex vert
|
||||
#pragma fragment frag
|
||||
#pragma target 2.0
|
||||
|
||||
#include "UnityCG.cginc"
|
||||
#include "UnityUI.cginc"
|
||||
|
||||
#pragma multi_compile_local _ UNITY_UI_CLIP_RECT
|
||||
#pragma multi_compile_local _ UNITY_UI_ALPHACLIP
|
||||
|
||||
struct appdata_t
|
||||
{
|
||||
float4 vertex : POSITION;
|
||||
float4 color : COLOR;
|
||||
float2 texcoord : TEXCOORD0;
|
||||
UNITY_VERTEX_INPUT_INSTANCE_ID
|
||||
};
|
||||
|
||||
struct v2f
|
||||
{
|
||||
float4 vertex : SV_POSITION;
|
||||
fixed4 color : COLOR;
|
||||
float2 texcoord : TEXCOORD0;
|
||||
float4 worldPosition : TEXCOORD1;
|
||||
UNITY_VERTEX_OUTPUT_STEREO
|
||||
};
|
||||
|
||||
sampler2D _MainTex;
|
||||
float4 _MainTex_TexelSize;
|
||||
fixed4 _Color;
|
||||
fixed4 _TextureSampleAdd;
|
||||
float4 _ClipRect;
|
||||
|
||||
fixed4 _ShadowColor;
|
||||
float4 _ShadowOffset;
|
||||
float _ShadowBlur;
|
||||
float _ShadowStrength;
|
||||
float _InsetPadding;
|
||||
|
||||
v2f vert(appdata_t IN)
|
||||
{
|
||||
v2f OUT;
|
||||
UNITY_SETUP_INSTANCE_ID(IN);
|
||||
UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(OUT);
|
||||
|
||||
OUT.worldPosition = IN.vertex;
|
||||
OUT.vertex = UnityObjectToClipPos(OUT.worldPosition);
|
||||
OUT.texcoord = IN.texcoord;
|
||||
OUT.color = IN.color * _Color;
|
||||
return OUT;
|
||||
}
|
||||
|
||||
float2 GetContentPad()
|
||||
{
|
||||
float2 autoPad = abs(_ShadowOffset.xy) * _MainTex_TexelSize.xy;
|
||||
autoPad += (_MainTex_TexelSize.xy * _ShadowBlur * 2.5);
|
||||
autoPad += _InsetPadding.xx;
|
||||
return clamp(autoPad, 0.0, 0.45);
|
||||
}
|
||||
|
||||
float2 RemapUvToContent(float2 uv, float2 pad)
|
||||
{
|
||||
float2 denom = max(1e-5.xx, 1.0.xx - pad * 2.0);
|
||||
return (uv - pad) / denom;
|
||||
}
|
||||
|
||||
fixed4 SampleSprite(float2 uv, fixed4 tint)
|
||||
{
|
||||
float inside = step(0.0, uv.x) * step(0.0, uv.y) * step(uv.x, 1.0) * step(uv.y, 1.0);
|
||||
if (inside < 0.5)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
fixed4 c = (tex2D(_MainTex, uv) + _TextureSampleAdd) * tint;
|
||||
c.rgb *= c.a;
|
||||
return c;
|
||||
}
|
||||
|
||||
float SampleShadowAlpha(float2 uv, fixed alphaTint)
|
||||
{
|
||||
float2 offsetUv = uv + (_MainTex_TexelSize.xy * _ShadowOffset.xy);
|
||||
float2 blurUv = _MainTex_TexelSize.xy * _ShadowBlur;
|
||||
|
||||
float a = 0.0;
|
||||
a += tex2D(_MainTex, offsetUv).a * 0.22702703;
|
||||
a += tex2D(_MainTex, offsetUv + float2( blurUv.x, 0)).a * 0.19459459;
|
||||
a += tex2D(_MainTex, offsetUv + float2(-blurUv.x, 0)).a * 0.19459459;
|
||||
a += tex2D(_MainTex, offsetUv + float2(0, blurUv.y)).a * 0.19459459;
|
||||
a += tex2D(_MainTex, offsetUv + float2(0, -blurUv.y)).a * 0.19459459;
|
||||
a += tex2D(_MainTex, offsetUv + float2( blurUv.x, blurUv.y)).a * 0.12162162;
|
||||
a += tex2D(_MainTex, offsetUv + float2(-blurUv.x, blurUv.y)).a * 0.12162162;
|
||||
a += tex2D(_MainTex, offsetUv + float2( blurUv.x, -blurUv.y)).a * 0.12162162;
|
||||
a += tex2D(_MainTex, offsetUv + float2(-blurUv.x, -blurUv.y)).a * 0.12162162;
|
||||
|
||||
return saturate(a * alphaTint * _ShadowStrength);
|
||||
}
|
||||
|
||||
fixed4 frag(v2f IN) : SV_Target
|
||||
{
|
||||
float2 pad = GetContentPad();
|
||||
float2 contentUv = RemapUvToContent(IN.texcoord, pad);
|
||||
|
||||
fixed4 src = SampleSprite(contentUv, IN.color);
|
||||
|
||||
float shadowAlpha = SampleShadowAlpha(contentUv, IN.color.a) * _ShadowColor.a;
|
||||
fixed3 shadowRgb = _ShadowColor.rgb * shadowAlpha;
|
||||
|
||||
fixed4 col;
|
||||
col.a = src.a + shadowAlpha * (1.0 - src.a);
|
||||
col.rgb = src.rgb + shadowRgb * (1.0 - src.a);
|
||||
|
||||
#ifdef UNITY_UI_CLIP_RECT
|
||||
col *= UnityGet2DClipping(IN.worldPosition.xy, _ClipRect);
|
||||
#endif
|
||||
|
||||
#ifdef UNITY_UI_ALPHACLIP
|
||||
clip(col.a - 0.001);
|
||||
#endif
|
||||
|
||||
return col;
|
||||
}
|
||||
ENDHLSL
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4627f9f3a5ab4c6f8c0b1d2e3f4a5b6c
|
||||
ShaderImporter:
|
||||
externalObjects: {}
|
||||
defaultTextures: []
|
||||
nonModifiableTextures: []
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -147,8 +147,7 @@ TextureImporter:
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
"\u80CC\u5305-\u5168\u90E8\u7269\u54C1_0": -6739640804442112823
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
||||
@@ -147,8 +147,7 @@ TextureImporter:
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
"\u80CC\u5305-\u5168\u90E8\u7269\u54C1_\u6807\u6CE8_0": 9083328121675508069
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e2ffd0ad8b5b00144bc6fe195b0ce30e
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7bb6e8375828d4e4e969cfe56a568ddb
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 7.4 KiB |
@@ -0,0 +1,156 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0edbf3fabc7d78e43b1c48516f08667a
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: 4254439551782311341
|
||||
second: iconbox_1_0
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
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
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 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: 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: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 4
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites:
|
||||
- serializedVersion: 2
|
||||
name: iconbox_1_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 112
|
||||
height: 112
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: da55b5a3b3eca0b30800000000000000
|
||||
internalID: 4254439551782311341
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
iconbox_1_0: 4254439551782311341
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 6.6 KiB |
@@ -0,0 +1,156 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d878370cc5eb0cb409882bb8e6fd7537
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: -6541950700227768498
|
||||
second: iconbox_2_0
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
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
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 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: 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: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 4
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites:
|
||||
- serializedVersion: 2
|
||||
name: iconbox_2_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 112
|
||||
height: 112
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: e4f4ec6bf725635a0800000000000000
|
||||
internalID: -6541950700227768498
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
iconbox_2_0: -6541950700227768498
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 6.8 KiB |
@@ -0,0 +1,156 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3ce075becece84045b16ac2fe217f415
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: 8250291598399754181
|
||||
second: iconbox_3_0
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
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
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 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: 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: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 4
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites:
|
||||
- serializedVersion: 2
|
||||
name: iconbox_3_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 112
|
||||
height: 112
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 5cfc1003f7cee7270800000000000000
|
||||
internalID: 8250291598399754181
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
iconbox_3_0: 8250291598399754181
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 8.7 KiB |
@@ -0,0 +1,156 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0eab00cf603f6694c89603352de122e6
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: 6331511651349203064
|
||||
second: iconbox_4_0
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
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
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 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: 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: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 4
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites:
|
||||
- serializedVersion: 2
|
||||
name: iconbox_4_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 112
|
||||
height: 112
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 8788ae51d4c0ed750800000000000000
|
||||
internalID: 6331511651349203064
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
iconbox_4_0: 6331511651349203064
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 8.5 KiB |
@@ -0,0 +1,156 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5ce43da28e0e4464a8a3bd79cfdd18de
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: 4295631976772495481
|
||||
second: iconbox_5_0
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
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
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 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: 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: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 4
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites:
|
||||
- serializedVersion: 2
|
||||
name: iconbox_5_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 112
|
||||
height: 112
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 978655d06862d9b30800000000000000
|
||||
internalID: 4295631976772495481
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
iconbox_5_0: 4295631976772495481
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 6.4 KiB |
@@ -0,0 +1,156 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 01f1bbba4db2f5042b08ca58ec475d34
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: 2775984631972900379
|
||||
second: iconbox_7_0
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
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
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 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: 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: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 4
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites:
|
||||
- serializedVersion: 2
|
||||
name: iconbox_7_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 112
|
||||
height: 112
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: b1e20b2a057468620800000000000000
|
||||
internalID: 2775984631972900379
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
iconbox_7_0: 2775984631972900379
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 6.9 KiB |
@@ -0,0 +1,156 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3c5a917f2e9787643a2bfc1c8f394784
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: -5042189469996018207
|
||||
second: iconbox_6_0
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
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
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 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: 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: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 4
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites:
|
||||
- serializedVersion: 2
|
||||
name: iconbox_6_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 112
|
||||
height: 112
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 1e51ca6446b860ab0800000000000000
|
||||
internalID: -5042189469996018207
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
iconbox_6_0: -5042189469996018207
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 8.2 KiB |
@@ -0,0 +1,156 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c1d3013bdbb080f4f8806bc4d6c58db2
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: -8178890008044055121
|
||||
second: iconbox_8_0
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
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
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 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: 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: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 4
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites:
|
||||
- serializedVersion: 2
|
||||
name: iconbox_8_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 112
|
||||
height: 112
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: fa5da8d0fdebe7e80800000000000000
|
||||
internalID: -8178890008044055121
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
iconbox_8_0: -8178890008044055121
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,156 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f77d9538b2d74c74ca24ca3a2bc9160b
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: -264061976520891484
|
||||
second: option_iconbox_0
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
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
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 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: 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: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 4
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites:
|
||||
- serializedVersion: 2
|
||||
name: option_iconbox_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 120
|
||||
height: 120
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 4a3e8ca080dd55cf0800000000000000
|
||||
internalID: -264061976520891484
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
option_iconbox_0: -264061976520891484
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,182 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c6eb5c80d9614044eb82e3fec0f47ae5
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: 385878239175028013
|
||||
second: picture_iconbox_0
|
||||
- first:
|
||||
213: 1554618879117398882
|
||||
second: picture_iconbox_1
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
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
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 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: 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: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 4
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites:
|
||||
- serializedVersion: 2
|
||||
name: picture_iconbox_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 87
|
||||
height: 27
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: d2da49cc63aea5500800000000000000
|
||||
internalID: 385878239175028013
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
- serializedVersion: 2
|
||||
name: picture_iconbox_1
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 20
|
||||
y: 23
|
||||
width: 51
|
||||
height: 61
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 26398e242ad139510800000000000000
|
||||
internalID: 1554618879117398882
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
picture_iconbox_0: 385878239175028013
|
||||
picture_iconbox_1: 1554618879117398882
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 7.8 KiB |
@@ -0,0 +1,155 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4d89274201ca6654c8d39aa999491023
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: -7670485267309540912
|
||||
second: lock_0
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
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
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 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: 1
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 2
|
||||
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: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 4
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites:
|
||||
- serializedVersion: 2
|
||||
name: lock_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 220
|
||||
y: 234
|
||||
width: 65
|
||||
height: 54
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 0d9c5231a46fc8590800000000000000
|
||||
internalID: -7670485267309540912
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -147,8 +147,7 @@ TextureImporter:
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
1_0: -855298285791758126
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
||||
@@ -147,8 +147,7 @@ TextureImporter:
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
2_0: 6937817954938267909
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
||||
@@ -147,8 +147,7 @@ TextureImporter:
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
3_0: -6470460504253458178
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
||||
@@ -147,8 +147,7 @@ TextureImporter:
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
4_0: -4178046375966092550
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
||||
@@ -147,8 +147,7 @@ TextureImporter:
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
"\u6807\u6CE81_0": 1251916328967902805
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
||||
@@ -147,8 +147,7 @@ TextureImporter:
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
"\u6807\u6CE82_0": 4235466915289920305
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
||||
@@ -147,8 +147,7 @@ TextureImporter:
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
"\u6807\u6CE83_0": -1281132539360723129
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
||||
@@ -147,8 +147,7 @@ TextureImporter:
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
"\u6807\u6CE84_0": -6626536238312780826
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a070585a01656f04b864f11c15176ec8
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 186 KiB |
@@ -0,0 +1,156 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6fcf93f840f58a241a183b97bc400f82
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: -7709914215239739405
|
||||
second: ui_frame_backpack_details_blue_0
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
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
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 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: 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: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 4
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites:
|
||||
- serializedVersion: 2
|
||||
name: ui_frame_backpack_details_blue_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 545
|
||||
height: 730
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 3f796efbed1e00590800000000000000
|
||||
internalID: -7709914215239739405
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
ui_frame_backpack_details_blue_0: -7709914215239739405
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 186 KiB |
@@ -0,0 +1,156 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0ad15dba14007f749a2bcccfee35b84e
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: 7183301096937768582
|
||||
second: ui_frame_backpack_details_powper_0
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
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
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 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: 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: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 4
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites:
|
||||
- serializedVersion: 2
|
||||
name: ui_frame_backpack_details_powper_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 545
|
||||
height: 730
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 68646a5f94630b360800000000000000
|
||||
internalID: 7183301096937768582
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
ui_frame_backpack_details_powper_0: 7183301096937768582
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 217 KiB |
@@ -0,0 +1,156 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1bc472a05d615ee438fb65f8181f7967
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: -8378759202108790838
|
||||
second: ui_frame_backpack_details_yellow_0
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
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
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 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: 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: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 4
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites:
|
||||
- serializedVersion: 2
|
||||
name: ui_frame_backpack_details_yellow_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 545
|
||||
height: 730
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: ac725c3f5eaa8bb80800000000000000
|
||||
internalID: -8378759202108790838
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
ui_frame_backpack_details_yellow_0: -8378759202108790838
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 214 KiB |
@@ -0,0 +1,156 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2cb1f343a95e38f4a9fdfcbd891aec16
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: 1798155485387249853
|
||||
second: ui_frame_backpack_details_gray_0
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
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
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 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: 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: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 4
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites:
|
||||
- serializedVersion: 2
|
||||
name: ui_frame_backpack_details_gray_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 545
|
||||
height: 730
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: db85d6d03e454f810800000000000000
|
||||
internalID: 1798155485387249853
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
ui_frame_backpack_details_gray_0: 1798155485387249853
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 189 KiB |
@@ -0,0 +1,156 @@
|
||||
fileFormatVersion: 2
|
||||
guid: af5e7472a89c07a48b141903c6b975a2
|
||||
TextureImporter:
|
||||
internalIDToNameTable:
|
||||
- first:
|
||||
213: 2909596778748054983
|
||||
second: ui_frame_backpack_details_green_0
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
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
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 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: 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: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 4
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites:
|
||||
- serializedVersion: 2
|
||||
name: ui_frame_backpack_details_green_0
|
||||
rect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 545
|
||||
height: 730
|
||||
alignment: 0
|
||||
pivot: {x: 0, y: 0}
|
||||
border: {x: 0, y: 0, z: 0, w: 0}
|
||||
customData:
|
||||
outline: []
|
||||
physicsShape: []
|
||||
tessellationDetail: -1
|
||||
bones: []
|
||||
spriteID: 7cd06e4cad6f06820800000000000000
|
||||
internalID: 2909596778748054983
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable:
|
||||
ui_frame_backpack_details_green_0: 2909596778748054983
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||