com.taptap.sdk.core 4.3.10 → 4.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Editor/TapSDKCoreCompile.cs +10 -2
- package/Mobile/Editor/NativeDependencies.xml +14 -20
- package/Resources/TapMessage.prefab +352 -0
- package/Resources/TapMessage.prefab.meta +10 -0
- package/Resources/TapSDKUIRoot.prefab +1 -1
- package/Resources/tap_toast_background.png +0 -0
- package/Resources/tap_toast_background.png.meta +128 -0
- package/Resources/tap_toast_background1.png +0 -0
- package/Resources/tap_toast_background1.png.meta +128 -0
- package/Runtime/Internal/Log/TapLog.cs +1 -1
- package/Runtime/Internal/Platform/PlatformTypeUtils.cs +5 -5
- package/Runtime/Internal/Utils/TapMessage.cs +69 -0
- package/Runtime/Internal/Utils/TapMessage.cs.meta +13 -0
- package/Runtime/Public/TapTapSDK.cs +1 -1
- package/Standalone/Runtime/Internal/Bean/TapGatekeeper.cs +42 -0
- package/Standalone/Runtime/Internal/{Http/TimeUtil.cs.meta → Bean/TapGatekeeper.cs.meta} +1 -1
- package/Standalone/Runtime/Internal/Bean.meta +8 -0
- package/Standalone/Runtime/Internal/Constants.cs +2 -2
- package/Standalone/Runtime/Internal/EventSender.cs +30 -19
- package/Standalone/Runtime/Internal/Http/TapHttp.cs +377 -0
- package/Standalone/Runtime/Internal/Http/{HttpClient.cs.meta → TapHttp.cs.meta} +1 -1
- package/Standalone/Runtime/Internal/Http/TapHttpBuilder.cs +92 -0
- package/Standalone/Runtime/Internal/Http/{NetUtils.cs.meta → TapHttpBuilder.cs.meta} +1 -1
- package/Standalone/Runtime/Internal/Http/TapHttpErrorConstants.cs +114 -0
- package/Standalone/Runtime/Internal/Http/TapHttpErrorConstants.cs.meta +11 -0
- package/Standalone/Runtime/Internal/Http/TapHttpException.cs +71 -0
- package/Standalone/Runtime/Internal/Http/TapHttpException.cs.meta +11 -0
- package/Standalone/Runtime/Internal/Http/TapHttpParser.cs +132 -0
- package/Standalone/Runtime/Internal/Http/TapHttpParser.cs.meta +11 -0
- package/Standalone/Runtime/Internal/Http/TapHttpResponse.cs +37 -0
- package/Standalone/Runtime/Internal/Http/TapHttpResponse.cs.meta +11 -0
- package/Standalone/Runtime/Internal/Http/TapHttpResult.cs +90 -0
- package/Standalone/Runtime/Internal/Http/TapHttpResult.cs.meta +11 -0
- package/Standalone/Runtime/Internal/Http/TapHttpRetryStrategy.cs +237 -0
- package/Standalone/Runtime/Internal/Http/TapHttpRetryStrategy.cs.meta +11 -0
- package/Standalone/Runtime/Internal/Http/TapHttpSign.cs +137 -0
- package/Standalone/Runtime/Internal/Http/TapHttpSign.cs.meta +11 -0
- package/Standalone/Runtime/Internal/Http/TapHttpUtils.cs +166 -0
- package/Standalone/Runtime/Internal/Http/TapHttpUtils.cs.meta +11 -0
- package/Standalone/Runtime/Internal/Openlog/TapOpenlogHttpClient.cs +6 -17
- package/Standalone/Runtime/Internal/Openlog/TapOpenlogQueueBase.cs +1 -1
- package/Standalone/Runtime/Internal/service/ITapLoginService.cs +9 -0
- package/Standalone/Runtime/Internal/service/ITapLoginService.cs.meta +11 -0
- package/Standalone/Runtime/Internal/service.meta +8 -0
- package/Standalone/Runtime/Public/TapCoreStandalone.cs +67 -81
- package/link.xml +4 -0
- package/link.xml.meta +7 -0
- package/package.json +1 -1
- package/Standalone/Runtime/Internal/Http/HttpClient.cs +0 -211
- package/Standalone/Runtime/Internal/Http/NetUtils.cs +0 -48
- package/Standalone/Runtime/Internal/Http/TimeUtil.cs +0 -30
|
@@ -216,10 +216,18 @@ namespace TapSDK.Core.Editor
|
|
|
216
216
|
{
|
|
217
217
|
plistElementList = rootDic.CreateArray("LSApplicationQueriesSchemes");
|
|
218
218
|
}
|
|
219
|
-
|
|
219
|
+
|
|
220
|
+
string listData = "";
|
|
221
|
+
foreach (var item in plistElementList.values) {
|
|
222
|
+
if ( item is PlistElementString ){
|
|
223
|
+
listData += item.AsString() + ";";
|
|
224
|
+
}
|
|
225
|
+
}
|
|
220
226
|
foreach (var t in items)
|
|
221
227
|
{
|
|
222
|
-
|
|
228
|
+
if (!listData.Contains(t + ";")) {
|
|
229
|
+
plistElementList.AddString(t);
|
|
230
|
+
}
|
|
223
231
|
}
|
|
224
232
|
|
|
225
233
|
if (string.IsNullOrEmpty(infoPlistPath)) return false;
|
|
@@ -1,22 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" ?>
|
|
1
2
|
<dependencies>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
</sources>
|
|
16
|
-
|
|
17
|
-
<iosPod name="Protobuf" version="~> 3.0" bitcodeEnabled="false" addToAllTargets="false"/>
|
|
18
|
-
<iosPod name="TapTapCoreSDK" version="~> 4.3.10" bitcodeEnabled="false" addToAllTargets="false"/>
|
|
19
|
-
|
|
20
|
-
</iosPods>
|
|
21
|
-
|
|
3
|
+
<androidPackages>
|
|
4
|
+
<repositories>
|
|
5
|
+
<repository>https://repo.maven.apache.org/maven2</repository>
|
|
6
|
+
</repositories>
|
|
7
|
+
<androidPackage spec="com.taptap.sdk:tap-core-unity:4.4.0"/>
|
|
8
|
+
</androidPackages>
|
|
9
|
+
<iosPods>
|
|
10
|
+
<sources>
|
|
11
|
+
<source>https://github.com/CocoaPods/Specs.git</source>
|
|
12
|
+
</sources>
|
|
13
|
+
<iosPod name="Protobuf" version="~> 3.0" bitcodeEnabled="false" addToAllTargets="false"/>
|
|
14
|
+
<iosPod name="TapTapCoreSDK" version="~> 4.4.0" bitcodeEnabled="false" addToAllTargets="false"/>
|
|
15
|
+
</iosPods>
|
|
22
16
|
</dependencies>
|
|
@@ -0,0 +1,352 @@
|
|
|
1
|
+
%YAML 1.1
|
|
2
|
+
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
+
--- !u!1 &1863032913385268
|
|
4
|
+
GameObject:
|
|
5
|
+
m_ObjectHideFlags: 0
|
|
6
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
+
m_PrefabInstance: {fileID: 0}
|
|
8
|
+
m_PrefabAsset: {fileID: 0}
|
|
9
|
+
serializedVersion: 6
|
|
10
|
+
m_Component:
|
|
11
|
+
- component: {fileID: 224735441970951518}
|
|
12
|
+
- component: {fileID: 223962106893064856}
|
|
13
|
+
- component: {fileID: 114668005265195872}
|
|
14
|
+
- component: {fileID: 114350312650004060}
|
|
15
|
+
m_Layer: 5
|
|
16
|
+
m_Name: TapMessage
|
|
17
|
+
m_TagString: Untagged
|
|
18
|
+
m_Icon: {fileID: 0}
|
|
19
|
+
m_NavMeshLayer: 0
|
|
20
|
+
m_StaticEditorFlags: 0
|
|
21
|
+
m_IsActive: 1
|
|
22
|
+
--- !u!224 &224735441970951518
|
|
23
|
+
RectTransform:
|
|
24
|
+
m_ObjectHideFlags: 0
|
|
25
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
26
|
+
m_PrefabInstance: {fileID: 0}
|
|
27
|
+
m_PrefabAsset: {fileID: 0}
|
|
28
|
+
m_GameObject: {fileID: 1863032913385268}
|
|
29
|
+
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
|
30
|
+
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
31
|
+
m_LocalScale: {x: 0, y: 0, z: 0}
|
|
32
|
+
m_Children:
|
|
33
|
+
- {fileID: 3020249884784984160}
|
|
34
|
+
m_Father: {fileID: 0}
|
|
35
|
+
m_RootOrder: 0
|
|
36
|
+
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
37
|
+
m_AnchorMin: {x: 0, y: 0}
|
|
38
|
+
m_AnchorMax: {x: 0, y: 0}
|
|
39
|
+
m_AnchoredPosition: {x: 0, y: 0}
|
|
40
|
+
m_SizeDelta: {x: 0, y: 0}
|
|
41
|
+
m_Pivot: {x: 0, y: 0}
|
|
42
|
+
--- !u!223 &223962106893064856
|
|
43
|
+
Canvas:
|
|
44
|
+
m_ObjectHideFlags: 0
|
|
45
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
46
|
+
m_PrefabInstance: {fileID: 0}
|
|
47
|
+
m_PrefabAsset: {fileID: 0}
|
|
48
|
+
m_GameObject: {fileID: 1863032913385268}
|
|
49
|
+
m_Enabled: 1
|
|
50
|
+
serializedVersion: 3
|
|
51
|
+
m_RenderMode: 0
|
|
52
|
+
m_Camera: {fileID: 0}
|
|
53
|
+
m_PlaneDistance: 100
|
|
54
|
+
m_PixelPerfect: 0
|
|
55
|
+
m_ReceivesEvents: 1
|
|
56
|
+
m_OverrideSorting: 0
|
|
57
|
+
m_OverridePixelPerfect: 0
|
|
58
|
+
m_SortingBucketNormalizedSize: 0
|
|
59
|
+
m_AdditionalShaderChannelsFlag: 0
|
|
60
|
+
m_SortingLayerID: 0
|
|
61
|
+
m_SortingOrder: 0
|
|
62
|
+
m_TargetDisplay: 0
|
|
63
|
+
--- !u!114 &114668005265195872
|
|
64
|
+
MonoBehaviour:
|
|
65
|
+
m_ObjectHideFlags: 0
|
|
66
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
67
|
+
m_PrefabInstance: {fileID: 0}
|
|
68
|
+
m_PrefabAsset: {fileID: 0}
|
|
69
|
+
m_GameObject: {fileID: 1863032913385268}
|
|
70
|
+
m_Enabled: 1
|
|
71
|
+
m_EditorHideFlags: 0
|
|
72
|
+
m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3}
|
|
73
|
+
m_Name:
|
|
74
|
+
m_EditorClassIdentifier:
|
|
75
|
+
m_UiScaleMode: 1
|
|
76
|
+
m_ReferencePixelsPerUnit: 100
|
|
77
|
+
m_ScaleFactor: 1
|
|
78
|
+
m_ReferenceResolution: {x: 600, y: 600}
|
|
79
|
+
m_ScreenMatchMode: 1
|
|
80
|
+
m_MatchWidthOrHeight: 0
|
|
81
|
+
m_PhysicalUnit: 3
|
|
82
|
+
m_FallbackScreenDPI: 96
|
|
83
|
+
m_DefaultSpriteDPI: 96
|
|
84
|
+
m_DynamicPixelsPerUnit: 1
|
|
85
|
+
--- !u!114 &114350312650004060
|
|
86
|
+
MonoBehaviour:
|
|
87
|
+
m_ObjectHideFlags: 0
|
|
88
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
89
|
+
m_PrefabInstance: {fileID: 0}
|
|
90
|
+
m_PrefabAsset: {fileID: 0}
|
|
91
|
+
m_GameObject: {fileID: 1863032913385268}
|
|
92
|
+
m_Enabled: 1
|
|
93
|
+
m_EditorHideFlags: 0
|
|
94
|
+
m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3}
|
|
95
|
+
m_Name:
|
|
96
|
+
m_EditorClassIdentifier:
|
|
97
|
+
m_IgnoreReversedGraphics: 1
|
|
98
|
+
m_BlockingObjects: 0
|
|
99
|
+
m_BlockingMask:
|
|
100
|
+
serializedVersion: 2
|
|
101
|
+
m_Bits: 4294967295
|
|
102
|
+
--- !u!1 &2683931837221227688
|
|
103
|
+
GameObject:
|
|
104
|
+
m_ObjectHideFlags: 0
|
|
105
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
106
|
+
m_PrefabInstance: {fileID: 0}
|
|
107
|
+
m_PrefabAsset: {fileID: 0}
|
|
108
|
+
serializedVersion: 6
|
|
109
|
+
m_Component:
|
|
110
|
+
- component: {fileID: 3020249884784984160}
|
|
111
|
+
m_Layer: 5
|
|
112
|
+
m_Name: container
|
|
113
|
+
m_TagString: Untagged
|
|
114
|
+
m_Icon: {fileID: 0}
|
|
115
|
+
m_NavMeshLayer: 0
|
|
116
|
+
m_StaticEditorFlags: 0
|
|
117
|
+
m_IsActive: 1
|
|
118
|
+
--- !u!224 &3020249884784984160
|
|
119
|
+
RectTransform:
|
|
120
|
+
m_ObjectHideFlags: 0
|
|
121
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
122
|
+
m_PrefabInstance: {fileID: 0}
|
|
123
|
+
m_PrefabAsset: {fileID: 0}
|
|
124
|
+
m_GameObject: {fileID: 2683931837221227688}
|
|
125
|
+
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
|
126
|
+
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
127
|
+
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
128
|
+
m_Children:
|
|
129
|
+
- {fileID: 7445445916596797054}
|
|
130
|
+
m_Father: {fileID: 224735441970951518}
|
|
131
|
+
m_RootOrder: 0
|
|
132
|
+
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
133
|
+
m_AnchorMin: {x: 0.5, y: 0}
|
|
134
|
+
m_AnchorMax: {x: 0.5, y: 0}
|
|
135
|
+
m_AnchoredPosition: {x: 0.5, y: 100}
|
|
136
|
+
m_SizeDelta: {x: 400, y: 102.44681}
|
|
137
|
+
m_Pivot: {x: 0.5, y: 0.5}
|
|
138
|
+
--- !u!1 &6224477040733538127
|
|
139
|
+
GameObject:
|
|
140
|
+
m_ObjectHideFlags: 0
|
|
141
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
142
|
+
m_PrefabInstance: {fileID: 0}
|
|
143
|
+
m_PrefabAsset: {fileID: 0}
|
|
144
|
+
serializedVersion: 6
|
|
145
|
+
m_Component:
|
|
146
|
+
- component: {fileID: 7445445916596797054}
|
|
147
|
+
- component: {fileID: 6150942826548885810}
|
|
148
|
+
- component: {fileID: 1822422428467713874}
|
|
149
|
+
- component: {fileID: 3902093695152135445}
|
|
150
|
+
- component: {fileID: 8025106749851834532}
|
|
151
|
+
m_Layer: 5
|
|
152
|
+
m_Name: text_background
|
|
153
|
+
m_TagString: Untagged
|
|
154
|
+
m_Icon: {fileID: 0}
|
|
155
|
+
m_NavMeshLayer: 0
|
|
156
|
+
m_StaticEditorFlags: 0
|
|
157
|
+
m_IsActive: 1
|
|
158
|
+
--- !u!224 &7445445916596797054
|
|
159
|
+
RectTransform:
|
|
160
|
+
m_ObjectHideFlags: 0
|
|
161
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
162
|
+
m_PrefabInstance: {fileID: 0}
|
|
163
|
+
m_PrefabAsset: {fileID: 0}
|
|
164
|
+
m_GameObject: {fileID: 6224477040733538127}
|
|
165
|
+
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
|
166
|
+
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
167
|
+
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
168
|
+
m_Children:
|
|
169
|
+
- {fileID: 5268490143839252188}
|
|
170
|
+
m_Father: {fileID: 3020249884784984160}
|
|
171
|
+
m_RootOrder: 0
|
|
172
|
+
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
173
|
+
m_AnchorMin: {x: 0, y: 1}
|
|
174
|
+
m_AnchorMax: {x: 0, y: 1}
|
|
175
|
+
m_AnchoredPosition: {x: 200, y: -51.223404}
|
|
176
|
+
m_SizeDelta: {x: 400, y: 0}
|
|
177
|
+
m_Pivot: {x: 0.5, y: 0.5}
|
|
178
|
+
--- !u!222 &6150942826548885810
|
|
179
|
+
CanvasRenderer:
|
|
180
|
+
m_ObjectHideFlags: 0
|
|
181
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
182
|
+
m_PrefabInstance: {fileID: 0}
|
|
183
|
+
m_PrefabAsset: {fileID: 0}
|
|
184
|
+
m_GameObject: {fileID: 6224477040733538127}
|
|
185
|
+
m_CullTransparentMesh: 0
|
|
186
|
+
--- !u!114 &1822422428467713874
|
|
187
|
+
MonoBehaviour:
|
|
188
|
+
m_ObjectHideFlags: 0
|
|
189
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
190
|
+
m_PrefabInstance: {fileID: 0}
|
|
191
|
+
m_PrefabAsset: {fileID: 0}
|
|
192
|
+
m_GameObject: {fileID: 6224477040733538127}
|
|
193
|
+
m_Enabled: 1
|
|
194
|
+
m_EditorHideFlags: 0
|
|
195
|
+
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
|
|
196
|
+
m_Name:
|
|
197
|
+
m_EditorClassIdentifier:
|
|
198
|
+
m_Material: {fileID: 0}
|
|
199
|
+
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
|
200
|
+
m_RaycastTarget: 1
|
|
201
|
+
m_Maskable: 1
|
|
202
|
+
m_OnCullStateChanged:
|
|
203
|
+
m_PersistentCalls:
|
|
204
|
+
m_Calls: []
|
|
205
|
+
m_Sprite: {fileID: 21300000, guid: 9ab00e50019021946837a0c857f4cc5d, type: 3}
|
|
206
|
+
m_Type: 1
|
|
207
|
+
m_PreserveAspect: 0
|
|
208
|
+
m_FillCenter: 1
|
|
209
|
+
m_FillMethod: 4
|
|
210
|
+
m_FillAmount: 1
|
|
211
|
+
m_FillClockwise: 1
|
|
212
|
+
m_FillOrigin: 0
|
|
213
|
+
m_UseSpriteMesh: 0
|
|
214
|
+
m_PixelsPerUnitMultiplier: 1
|
|
215
|
+
--- !u!114 &3902093695152135445
|
|
216
|
+
MonoBehaviour:
|
|
217
|
+
m_ObjectHideFlags: 0
|
|
218
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
219
|
+
m_PrefabInstance: {fileID: 0}
|
|
220
|
+
m_PrefabAsset: {fileID: 0}
|
|
221
|
+
m_GameObject: {fileID: 6224477040733538127}
|
|
222
|
+
m_Enabled: 1
|
|
223
|
+
m_EditorHideFlags: 0
|
|
224
|
+
m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3}
|
|
225
|
+
m_Name:
|
|
226
|
+
m_EditorClassIdentifier:
|
|
227
|
+
m_Padding:
|
|
228
|
+
m_Left: 25
|
|
229
|
+
m_Right: 25
|
|
230
|
+
m_Top: 10
|
|
231
|
+
m_Bottom: 10
|
|
232
|
+
m_ChildAlignment: 4
|
|
233
|
+
m_Spacing: 0
|
|
234
|
+
m_ChildForceExpandWidth: 0
|
|
235
|
+
m_ChildForceExpandHeight: 0
|
|
236
|
+
m_ChildControlWidth: 1
|
|
237
|
+
m_ChildControlHeight: 1
|
|
238
|
+
m_ChildScaleWidth: 0
|
|
239
|
+
m_ChildScaleHeight: 0
|
|
240
|
+
--- !u!114 &8025106749851834532
|
|
241
|
+
MonoBehaviour:
|
|
242
|
+
m_ObjectHideFlags: 0
|
|
243
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
244
|
+
m_PrefabInstance: {fileID: 0}
|
|
245
|
+
m_PrefabAsset: {fileID: 0}
|
|
246
|
+
m_GameObject: {fileID: 6224477040733538127}
|
|
247
|
+
m_Enabled: 1
|
|
248
|
+
m_EditorHideFlags: 0
|
|
249
|
+
m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3}
|
|
250
|
+
m_Name:
|
|
251
|
+
m_EditorClassIdentifier:
|
|
252
|
+
m_HorizontalFit: 0
|
|
253
|
+
m_VerticalFit: 2
|
|
254
|
+
--- !u!1 &7966388593320536563
|
|
255
|
+
GameObject:
|
|
256
|
+
m_ObjectHideFlags: 0
|
|
257
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
258
|
+
m_PrefabInstance: {fileID: 0}
|
|
259
|
+
m_PrefabAsset: {fileID: 0}
|
|
260
|
+
serializedVersion: 6
|
|
261
|
+
m_Component:
|
|
262
|
+
- component: {fileID: 5268490143839252188}
|
|
263
|
+
- component: {fileID: 6511217540227465427}
|
|
264
|
+
- component: {fileID: 9100911774364350353}
|
|
265
|
+
- component: {fileID: 4527992897410718175}
|
|
266
|
+
m_Layer: 5
|
|
267
|
+
m_Name: Text
|
|
268
|
+
m_TagString: Untagged
|
|
269
|
+
m_Icon: {fileID: 0}
|
|
270
|
+
m_NavMeshLayer: 0
|
|
271
|
+
m_StaticEditorFlags: 0
|
|
272
|
+
m_IsActive: 1
|
|
273
|
+
--- !u!224 &5268490143839252188
|
|
274
|
+
RectTransform:
|
|
275
|
+
m_ObjectHideFlags: 0
|
|
276
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
277
|
+
m_PrefabInstance: {fileID: 0}
|
|
278
|
+
m_PrefabAsset: {fileID: 0}
|
|
279
|
+
m_GameObject: {fileID: 7966388593320536563}
|
|
280
|
+
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
|
281
|
+
m_LocalPosition: {x: 0, y: 0, z: 0}
|
|
282
|
+
m_LocalScale: {x: 1, y: 1, z: 1}
|
|
283
|
+
m_Children: []
|
|
284
|
+
m_Father: {fileID: 7445445916596797054}
|
|
285
|
+
m_RootOrder: 0
|
|
286
|
+
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
|
287
|
+
m_AnchorMin: {x: 0, y: 0}
|
|
288
|
+
m_AnchorMax: {x: 0, y: 0}
|
|
289
|
+
m_AnchoredPosition: {x: 0, y: 0}
|
|
290
|
+
m_SizeDelta: {x: 0, y: 0}
|
|
291
|
+
m_Pivot: {x: 0.5, y: 0.5}
|
|
292
|
+
--- !u!222 &6511217540227465427
|
|
293
|
+
CanvasRenderer:
|
|
294
|
+
m_ObjectHideFlags: 0
|
|
295
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
296
|
+
m_PrefabInstance: {fileID: 0}
|
|
297
|
+
m_PrefabAsset: {fileID: 0}
|
|
298
|
+
m_GameObject: {fileID: 7966388593320536563}
|
|
299
|
+
m_CullTransparentMesh: 0
|
|
300
|
+
--- !u!114 &9100911774364350353
|
|
301
|
+
MonoBehaviour:
|
|
302
|
+
m_ObjectHideFlags: 0
|
|
303
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
304
|
+
m_PrefabInstance: {fileID: 0}
|
|
305
|
+
m_PrefabAsset: {fileID: 0}
|
|
306
|
+
m_GameObject: {fileID: 7966388593320536563}
|
|
307
|
+
m_Enabled: 1
|
|
308
|
+
m_EditorHideFlags: 0
|
|
309
|
+
m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3}
|
|
310
|
+
m_Name:
|
|
311
|
+
m_EditorClassIdentifier:
|
|
312
|
+
m_Material: {fileID: 0}
|
|
313
|
+
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
|
314
|
+
m_RaycastTarget: 1
|
|
315
|
+
m_Maskable: 1
|
|
316
|
+
m_OnCullStateChanged:
|
|
317
|
+
m_PersistentCalls:
|
|
318
|
+
m_Calls: []
|
|
319
|
+
m_FontData:
|
|
320
|
+
m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0}
|
|
321
|
+
m_FontSize: 16
|
|
322
|
+
m_FontStyle: 0
|
|
323
|
+
m_BestFit: 0
|
|
324
|
+
m_MinSize: 0
|
|
325
|
+
m_MaxSize: 180
|
|
326
|
+
m_Alignment: 4
|
|
327
|
+
m_AlignByGeometry: 0
|
|
328
|
+
m_RichText: 1
|
|
329
|
+
m_HorizontalOverflow: 0
|
|
330
|
+
m_VerticalOverflow: 0
|
|
331
|
+
m_LineSpacing: 1
|
|
332
|
+
m_Text: bottombottombotttombottombotttombottombotttombottombotttombottombotttombottombottombottombottombottombottombottombottombottombottombottomb
|
|
333
|
+
--- !u!114 &4527992897410718175
|
|
334
|
+
MonoBehaviour:
|
|
335
|
+
m_ObjectHideFlags: 0
|
|
336
|
+
m_CorrespondingSourceObject: {fileID: 0}
|
|
337
|
+
m_PrefabInstance: {fileID: 0}
|
|
338
|
+
m_PrefabAsset: {fileID: 0}
|
|
339
|
+
m_GameObject: {fileID: 7966388593320536563}
|
|
340
|
+
m_Enabled: 1
|
|
341
|
+
m_EditorHideFlags: 0
|
|
342
|
+
m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
|
|
343
|
+
m_Name:
|
|
344
|
+
m_EditorClassIdentifier:
|
|
345
|
+
m_IgnoreLayout: 0
|
|
346
|
+
m_MinWidth: -1
|
|
347
|
+
m_MinHeight: 60
|
|
348
|
+
m_PreferredWidth: -1
|
|
349
|
+
m_PreferredHeight: 60
|
|
350
|
+
m_FlexibleWidth: -1
|
|
351
|
+
m_FlexibleHeight: -1
|
|
352
|
+
m_LayoutPriority: 1
|
|
Binary file
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 011e7ad965bcfb549aeae5be34bbc0a4
|
|
3
|
+
TextureImporter:
|
|
4
|
+
internalIDToNameTable: []
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
serializedVersion: 11
|
|
7
|
+
mipmaps:
|
|
8
|
+
mipMapMode: 0
|
|
9
|
+
enableMipMap: 0
|
|
10
|
+
sRGBTexture: 1
|
|
11
|
+
linearTexture: 0
|
|
12
|
+
fadeOut: 0
|
|
13
|
+
borderMipMap: 0
|
|
14
|
+
mipMapsPreserveCoverage: 0
|
|
15
|
+
alphaTestReferenceValue: 0.5
|
|
16
|
+
mipMapFadeDistanceStart: 1
|
|
17
|
+
mipMapFadeDistanceEnd: 3
|
|
18
|
+
bumpmap:
|
|
19
|
+
convertToNormalMap: 0
|
|
20
|
+
externalNormalMap: 0
|
|
21
|
+
heightScale: 0.25
|
|
22
|
+
normalMapFilter: 0
|
|
23
|
+
isReadable: 0
|
|
24
|
+
streamingMipmaps: 0
|
|
25
|
+
streamingMipmapsPriority: 0
|
|
26
|
+
grayScaleToAlpha: 0
|
|
27
|
+
generateCubemap: 6
|
|
28
|
+
cubemapConvolution: 0
|
|
29
|
+
seamlessCubemap: 0
|
|
30
|
+
textureFormat: 1
|
|
31
|
+
maxTextureSize: 2048
|
|
32
|
+
textureSettings:
|
|
33
|
+
serializedVersion: 2
|
|
34
|
+
filterMode: 1
|
|
35
|
+
aniso: 1
|
|
36
|
+
mipBias: 0
|
|
37
|
+
wrapU: 1
|
|
38
|
+
wrapV: 1
|
|
39
|
+
wrapW: 1
|
|
40
|
+
nPOTScale: 0
|
|
41
|
+
lightmap: 0
|
|
42
|
+
compressionQuality: 50
|
|
43
|
+
spriteMode: 1
|
|
44
|
+
spriteExtrude: 1
|
|
45
|
+
spriteMeshType: 1
|
|
46
|
+
alignment: 0
|
|
47
|
+
spritePivot: {x: 0.5, y: 0.5}
|
|
48
|
+
spritePixelsToUnits: 100
|
|
49
|
+
spriteBorder: {x: 8, y: 8, z: 8, w: 8}
|
|
50
|
+
spriteGenerateFallbackPhysicsShape: 1
|
|
51
|
+
alphaUsage: 1
|
|
52
|
+
alphaIsTransparency: 1
|
|
53
|
+
spriteTessellationDetail: -1
|
|
54
|
+
textureType: 8
|
|
55
|
+
textureShape: 1
|
|
56
|
+
singleChannelComponent: 0
|
|
57
|
+
maxTextureSizeSet: 0
|
|
58
|
+
compressionQualitySet: 0
|
|
59
|
+
textureFormatSet: 0
|
|
60
|
+
applyGammaDecoding: 1
|
|
61
|
+
platformSettings:
|
|
62
|
+
- serializedVersion: 3
|
|
63
|
+
buildTarget: DefaultTexturePlatform
|
|
64
|
+
maxTextureSize: 2048
|
|
65
|
+
resizeAlgorithm: 0
|
|
66
|
+
textureFormat: -1
|
|
67
|
+
textureCompression: 1
|
|
68
|
+
compressionQuality: 50
|
|
69
|
+
crunchedCompression: 0
|
|
70
|
+
allowsAlphaSplitting: 0
|
|
71
|
+
overridden: 0
|
|
72
|
+
androidETC2FallbackOverride: 0
|
|
73
|
+
forceMaximumCompressionQuality_BC6H_BC7: 1
|
|
74
|
+
- serializedVersion: 3
|
|
75
|
+
buildTarget: Standalone
|
|
76
|
+
maxTextureSize: 2048
|
|
77
|
+
resizeAlgorithm: 0
|
|
78
|
+
textureFormat: -1
|
|
79
|
+
textureCompression: 1
|
|
80
|
+
compressionQuality: 50
|
|
81
|
+
crunchedCompression: 0
|
|
82
|
+
allowsAlphaSplitting: 0
|
|
83
|
+
overridden: 0
|
|
84
|
+
androidETC2FallbackOverride: 0
|
|
85
|
+
forceMaximumCompressionQuality_BC6H_BC7: 1
|
|
86
|
+
- serializedVersion: 3
|
|
87
|
+
buildTarget: iPhone
|
|
88
|
+
maxTextureSize: 256
|
|
89
|
+
resizeAlgorithm: 0
|
|
90
|
+
textureFormat: 33
|
|
91
|
+
textureCompression: 1
|
|
92
|
+
compressionQuality: 50
|
|
93
|
+
crunchedCompression: 0
|
|
94
|
+
allowsAlphaSplitting: 0
|
|
95
|
+
overridden: 1
|
|
96
|
+
androidETC2FallbackOverride: 0
|
|
97
|
+
forceMaximumCompressionQuality_BC6H_BC7: 1
|
|
98
|
+
- serializedVersion: 3
|
|
99
|
+
buildTarget: Android
|
|
100
|
+
maxTextureSize: 256
|
|
101
|
+
resizeAlgorithm: 0
|
|
102
|
+
textureFormat: 47
|
|
103
|
+
textureCompression: 1
|
|
104
|
+
compressionQuality: 50
|
|
105
|
+
crunchedCompression: 0
|
|
106
|
+
allowsAlphaSplitting: 0
|
|
107
|
+
overridden: 1
|
|
108
|
+
androidETC2FallbackOverride: 0
|
|
109
|
+
forceMaximumCompressionQuality_BC6H_BC7: 1
|
|
110
|
+
spriteSheet:
|
|
111
|
+
serializedVersion: 2
|
|
112
|
+
sprites: []
|
|
113
|
+
outline: []
|
|
114
|
+
physicsShape: []
|
|
115
|
+
bones: []
|
|
116
|
+
spriteID: 5e97eb03825dee720800000000000000
|
|
117
|
+
internalID: 0
|
|
118
|
+
vertices: []
|
|
119
|
+
indices:
|
|
120
|
+
edges: []
|
|
121
|
+
weights: []
|
|
122
|
+
secondaryTextures: []
|
|
123
|
+
spritePackingTag:
|
|
124
|
+
pSDRemoveMatte: 0
|
|
125
|
+
pSDShowRemoveMatteOption: 0
|
|
126
|
+
userData:
|
|
127
|
+
assetBundleName:
|
|
128
|
+
assetBundleVariant:
|
|
Binary file
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 9ab00e50019021946837a0c857f4cc5d
|
|
3
|
+
TextureImporter:
|
|
4
|
+
internalIDToNameTable: []
|
|
5
|
+
externalObjects: {}
|
|
6
|
+
serializedVersion: 11
|
|
7
|
+
mipmaps:
|
|
8
|
+
mipMapMode: 0
|
|
9
|
+
enableMipMap: 0
|
|
10
|
+
sRGBTexture: 1
|
|
11
|
+
linearTexture: 0
|
|
12
|
+
fadeOut: 0
|
|
13
|
+
borderMipMap: 0
|
|
14
|
+
mipMapsPreserveCoverage: 0
|
|
15
|
+
alphaTestReferenceValue: 0.5
|
|
16
|
+
mipMapFadeDistanceStart: 1
|
|
17
|
+
mipMapFadeDistanceEnd: 3
|
|
18
|
+
bumpmap:
|
|
19
|
+
convertToNormalMap: 0
|
|
20
|
+
externalNormalMap: 0
|
|
21
|
+
heightScale: 0.25
|
|
22
|
+
normalMapFilter: 0
|
|
23
|
+
isReadable: 0
|
|
24
|
+
streamingMipmaps: 0
|
|
25
|
+
streamingMipmapsPriority: 0
|
|
26
|
+
grayScaleToAlpha: 0
|
|
27
|
+
generateCubemap: 6
|
|
28
|
+
cubemapConvolution: 0
|
|
29
|
+
seamlessCubemap: 0
|
|
30
|
+
textureFormat: 1
|
|
31
|
+
maxTextureSize: 2048
|
|
32
|
+
textureSettings:
|
|
33
|
+
serializedVersion: 2
|
|
34
|
+
filterMode: 1
|
|
35
|
+
aniso: 1
|
|
36
|
+
mipBias: 0
|
|
37
|
+
wrapU: 1
|
|
38
|
+
wrapV: 1
|
|
39
|
+
wrapW: 1
|
|
40
|
+
nPOTScale: 0
|
|
41
|
+
lightmap: 0
|
|
42
|
+
compressionQuality: 50
|
|
43
|
+
spriteMode: 1
|
|
44
|
+
spriteExtrude: 1
|
|
45
|
+
spriteMeshType: 1
|
|
46
|
+
alignment: 0
|
|
47
|
+
spritePivot: {x: 0.5, y: 0.5}
|
|
48
|
+
spritePixelsToUnits: 100
|
|
49
|
+
spriteBorder: {x: 25, y: 26, z: 25, w: 27}
|
|
50
|
+
spriteGenerateFallbackPhysicsShape: 1
|
|
51
|
+
alphaUsage: 1
|
|
52
|
+
alphaIsTransparency: 1
|
|
53
|
+
spriteTessellationDetail: -1
|
|
54
|
+
textureType: 8
|
|
55
|
+
textureShape: 1
|
|
56
|
+
singleChannelComponent: 0
|
|
57
|
+
maxTextureSizeSet: 0
|
|
58
|
+
compressionQualitySet: 0
|
|
59
|
+
textureFormatSet: 0
|
|
60
|
+
applyGammaDecoding: 1
|
|
61
|
+
platformSettings:
|
|
62
|
+
- serializedVersion: 3
|
|
63
|
+
buildTarget: DefaultTexturePlatform
|
|
64
|
+
maxTextureSize: 2048
|
|
65
|
+
resizeAlgorithm: 0
|
|
66
|
+
textureFormat: -1
|
|
67
|
+
textureCompression: 1
|
|
68
|
+
compressionQuality: 50
|
|
69
|
+
crunchedCompression: 0
|
|
70
|
+
allowsAlphaSplitting: 0
|
|
71
|
+
overridden: 0
|
|
72
|
+
androidETC2FallbackOverride: 0
|
|
73
|
+
forceMaximumCompressionQuality_BC6H_BC7: 1
|
|
74
|
+
- serializedVersion: 3
|
|
75
|
+
buildTarget: Standalone
|
|
76
|
+
maxTextureSize: 2048
|
|
77
|
+
resizeAlgorithm: 0
|
|
78
|
+
textureFormat: -1
|
|
79
|
+
textureCompression: 1
|
|
80
|
+
compressionQuality: 50
|
|
81
|
+
crunchedCompression: 0
|
|
82
|
+
allowsAlphaSplitting: 0
|
|
83
|
+
overridden: 0
|
|
84
|
+
androidETC2FallbackOverride: 0
|
|
85
|
+
forceMaximumCompressionQuality_BC6H_BC7: 1
|
|
86
|
+
- serializedVersion: 3
|
|
87
|
+
buildTarget: iPhone
|
|
88
|
+
maxTextureSize: 512
|
|
89
|
+
resizeAlgorithm: 0
|
|
90
|
+
textureFormat: 33
|
|
91
|
+
textureCompression: 1
|
|
92
|
+
compressionQuality: 50
|
|
93
|
+
crunchedCompression: 0
|
|
94
|
+
allowsAlphaSplitting: 0
|
|
95
|
+
overridden: 1
|
|
96
|
+
androidETC2FallbackOverride: 0
|
|
97
|
+
forceMaximumCompressionQuality_BC6H_BC7: 1
|
|
98
|
+
- serializedVersion: 3
|
|
99
|
+
buildTarget: Android
|
|
100
|
+
maxTextureSize: 512
|
|
101
|
+
resizeAlgorithm: 0
|
|
102
|
+
textureFormat: 47
|
|
103
|
+
textureCompression: 1
|
|
104
|
+
compressionQuality: 50
|
|
105
|
+
crunchedCompression: 0
|
|
106
|
+
allowsAlphaSplitting: 0
|
|
107
|
+
overridden: 1
|
|
108
|
+
androidETC2FallbackOverride: 0
|
|
109
|
+
forceMaximumCompressionQuality_BC6H_BC7: 1
|
|
110
|
+
spriteSheet:
|
|
111
|
+
serializedVersion: 2
|
|
112
|
+
sprites: []
|
|
113
|
+
outline: []
|
|
114
|
+
physicsShape: []
|
|
115
|
+
bones: []
|
|
116
|
+
spriteID: 5e97eb03825dee720800000000000000
|
|
117
|
+
internalID: 0
|
|
118
|
+
vertices: []
|
|
119
|
+
indices:
|
|
120
|
+
edges: []
|
|
121
|
+
weights: []
|
|
122
|
+
secondaryTextures: []
|
|
123
|
+
spritePackingTag:
|
|
124
|
+
pSDRemoveMatte: 0
|
|
125
|
+
pSDShowRemoveMatteOption: 0
|
|
126
|
+
userData:
|
|
127
|
+
assetBundleName:
|
|
128
|
+
assetBundleVariant:
|