com.typhoon.unitysdk 1.0.27 → 1.0.29
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/ApplyTool.cs +22 -2
- package/Editor/PreferencesWindow.cs +0 -6
- package/Editor/PublishWindow.cs +7 -3
- package/Editor/TempPublish/PublishVivoBatSettingInspector.cs +1 -0
- package/Editor/TempPublish/PublishVivoBatSettingWindow.cs +0 -1
- package/Editor/UniEditor.cs +3 -4
- package/Runtime/BaseSdk.cs +1 -1
- package/Runtime/SDKInteractiveUI.cs +1 -0
- package/Runtime/TestSdk.cs +2 -1
- package/Runtime/TyphoonSdk.cs +31 -10
- package/Runtime/WxMiniTouchInputSupport.cs +1 -0
- package/Sources~/Package/ChinaAndroid.unitypackage +0 -0
- package/Sources~/Package/ChinaAndroid.unitypackage.manifest +0 -3
- package/Sources~/Package/Douyin.unitypackage +0 -0
- package/Sources~/Package/Douyin.unitypackage.manifest +0 -3
- package/Sources~/Package/GooglePlay.unitypackage +0 -0
- package/Sources~/Package/GooglePlay.unitypackage.manifest +0 -3
- package/Sources~/Package/WxMini.unitypackage +0 -0
- package/Sources~/Package/WxMini.unitypackage.manifest +0 -2
- package/package.json +1 -1
- package/Editor/SkinsTexture.asset +0 -133
- package/Editor/SkinsTexture.asset.meta +0 -8
package/Editor/ApplyTool.cs
CHANGED
|
@@ -39,8 +39,6 @@ namespace TyphoonUnitySDK
|
|
|
39
39
|
var done = SwitchPlatformTo(setting.BuildTarget);
|
|
40
40
|
if (done)
|
|
41
41
|
{
|
|
42
|
-
//写入apply 历史
|
|
43
|
-
UniEditor.WriteApplyHistory(setting);
|
|
44
42
|
//修改参数
|
|
45
43
|
switch (setting.BuildTarget)
|
|
46
44
|
{
|
|
@@ -365,6 +363,28 @@ namespace TyphoonUnitySDK
|
|
|
365
363
|
|
|
366
364
|
File.Delete(path);
|
|
367
365
|
}
|
|
366
|
+
|
|
367
|
+
//如果仅存在.meta文件,清理文件夹
|
|
368
|
+
var clearFolder = true;
|
|
369
|
+
var remnant = Directory.GetFiles(folder, "*", SearchOption.AllDirectories);
|
|
370
|
+
foreach (var element in remnant)
|
|
371
|
+
{
|
|
372
|
+
if (!element.EndsWith(".meta"))
|
|
373
|
+
{
|
|
374
|
+
// if (folder == "Assets/Plugins/Android")
|
|
375
|
+
// {
|
|
376
|
+
// Debug.Log(element);
|
|
377
|
+
// }
|
|
378
|
+
clearFolder = false;
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
//删除残余文件夹
|
|
383
|
+
if (clearFolder)
|
|
384
|
+
{
|
|
385
|
+
// Debug.Log($"删除:{folder}");
|
|
386
|
+
Directory.Delete(folder, true);
|
|
387
|
+
}
|
|
368
388
|
}
|
|
369
389
|
}
|
|
370
390
|
|
|
@@ -8,11 +8,6 @@ namespace TyphoonUnitySDK
|
|
|
8
8
|
{
|
|
9
9
|
public class PreferencesWindow : EditorWindow
|
|
10
10
|
{
|
|
11
|
-
private static bool _preferenceFoldout = false;
|
|
12
|
-
|
|
13
|
-
private static bool _wxMiniConfigFoldout = false;
|
|
14
|
-
|
|
15
|
-
|
|
16
11
|
private static Vector2 _scroll;
|
|
17
12
|
|
|
18
13
|
[MenuItem("TyphoonSDK/选项", priority = 10000)]
|
|
@@ -24,7 +19,6 @@ namespace TyphoonUnitySDK
|
|
|
24
19
|
win.Show();
|
|
25
20
|
}
|
|
26
21
|
|
|
27
|
-
|
|
28
22
|
protected void OnGUI()
|
|
29
23
|
{
|
|
30
24
|
var rect = new Rect(0, 0, position.width, position.height);
|
package/Editor/PublishWindow.cs
CHANGED
|
@@ -47,8 +47,6 @@ namespace TyphoonUnitySDK
|
|
|
47
47
|
return EditorIcons.icon_vivo;
|
|
48
48
|
case AppChannel.OppoMini:
|
|
49
49
|
return EditorIcons.icon_oppo;
|
|
50
|
-
default:
|
|
51
|
-
return null;
|
|
52
50
|
}
|
|
53
51
|
|
|
54
52
|
return null;
|
|
@@ -221,7 +219,14 @@ namespace TyphoonUnitySDK
|
|
|
221
219
|
|
|
222
220
|
if (GUI.Button(rectItem, new GUIContent(setting.name, GetLogo(setting.Channel)), style))
|
|
223
221
|
{
|
|
222
|
+
var change = _select != setting;
|
|
224
223
|
_select = setting;
|
|
224
|
+
//写入apply 历史
|
|
225
|
+
if (change)
|
|
226
|
+
{
|
|
227
|
+
// Debug.Log("写入历史");
|
|
228
|
+
UniEditor.WriteApplyHistory(setting);
|
|
229
|
+
}
|
|
225
230
|
}
|
|
226
231
|
|
|
227
232
|
if (_LockChannel.Contains(setting.Channel))
|
|
@@ -335,7 +340,6 @@ namespace TyphoonUnitySDK
|
|
|
335
340
|
rectNextBtn.x -= 2;
|
|
336
341
|
rectNextBtn.x -= rectNextBtn.width;
|
|
337
342
|
bool clickBuildAA = false;
|
|
338
|
-
var index = 0;
|
|
339
343
|
if (UniEditor.HasAddressableSupport())
|
|
340
344
|
{
|
|
341
345
|
clickBuildAA = GUI.Button(rectNextBtn, "构建AA", Styles.rbutton_bold);
|
package/Editor/UniEditor.cs
CHANGED
|
@@ -39,12 +39,11 @@ namespace TyphoonUnitySDK
|
|
|
39
39
|
public static string PackagePath_Douyin = $"{PathRoot}/Sources~/Package/Douyin.unitypackage";
|
|
40
40
|
|
|
41
41
|
|
|
42
|
-
|
|
43
42
|
/// <summary>
|
|
44
43
|
/// google play资源包
|
|
45
44
|
/// </summary>
|
|
46
45
|
public static string PackagePath_GooglePlay = $"{PathRoot}/Sources~/Package/GooglePlay.unitypackage";
|
|
47
|
-
|
|
46
|
+
|
|
48
47
|
/// <summary>
|
|
49
48
|
/// Toast模块
|
|
50
49
|
/// </summary>
|
|
@@ -59,7 +58,7 @@ namespace TyphoonUnitySDK
|
|
|
59
58
|
/// <summary>
|
|
60
59
|
/// apply历史记录
|
|
61
60
|
/// </summary>
|
|
62
|
-
public static readonly string APPLY_HISTORY = "
|
|
61
|
+
public static readonly string APPLY_HISTORY = ".typhoon/typhoon_sdk_apply_history.txt";
|
|
63
62
|
|
|
64
63
|
|
|
65
64
|
/// <summary>
|
|
@@ -405,7 +404,7 @@ namespace TyphoonUnitySDK
|
|
|
405
404
|
sb.Append($".{current}");
|
|
406
405
|
return sb.ToString();
|
|
407
406
|
}
|
|
408
|
-
catch (Exception
|
|
407
|
+
catch (Exception)
|
|
409
408
|
{
|
|
410
409
|
Debug.LogError("无法识别版本号格式");
|
|
411
410
|
}
|
package/Runtime/BaseSdk.cs
CHANGED
package/Runtime/TestSdk.cs
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
using System;
|
|
2
|
+
using UnityEngine.Scripting;
|
|
2
3
|
|
|
3
4
|
namespace TyphoonUnitySDK
|
|
4
5
|
{
|
|
6
|
+
[Preserve]
|
|
5
7
|
public class TestSdk : BaseSdk
|
|
6
8
|
{
|
|
7
9
|
public override void OnCreate()
|
|
8
10
|
{
|
|
9
|
-
DontDestroyOnLoad(gameObject);
|
|
10
11
|
}
|
|
11
12
|
|
|
12
13
|
public override void InitSdk(Action success, Action<string> fail)
|
package/Runtime/TyphoonSdk.cs
CHANGED
|
@@ -13,12 +13,12 @@ namespace TyphoonUnitySDK
|
|
|
13
13
|
/*绑定SDK实例*/
|
|
14
14
|
public static Dictionary<AppChannel, string> SDKBindings = new Dictionary<AppChannel, string>
|
|
15
15
|
{
|
|
16
|
-
{ AppChannel.Test, "
|
|
17
|
-
{ AppChannel.ChinaAndroid, "
|
|
18
|
-
{ AppChannel.WxMini, "
|
|
19
|
-
{ AppChannel.DouyinAndroid, "
|
|
20
|
-
{ AppChannel.DouyinIOS, "
|
|
21
|
-
{ AppChannel.GooglePlay, "
|
|
16
|
+
{ AppChannel.Test, "TyphoonUnitySDK.TestSdk" }, //测试渠道
|
|
17
|
+
{ AppChannel.ChinaAndroid, "TyphoonUnitySDK.ChinaAndroidSdk" }, //国内安卓
|
|
18
|
+
{ AppChannel.WxMini, "TyphoonUnitySDK.WxMiniSdk" }, //微信小游戏
|
|
19
|
+
{ AppChannel.DouyinAndroid, "TyphoonUnitySDK.DouyinSdk" }, //抖音小游戏
|
|
20
|
+
{ AppChannel.DouyinIOS, "TyphoonUnitySDK.DouyinSdk" }, //抖音小游戏
|
|
21
|
+
{ AppChannel.GooglePlay, "TyphoonUnitySDK.GooglePlaySdk" }, //GooglePlay
|
|
22
22
|
};
|
|
23
23
|
|
|
24
24
|
private ISdk _sdk;
|
|
@@ -40,10 +40,14 @@ namespace TyphoonUnitySDK
|
|
|
40
40
|
#endif
|
|
41
41
|
if (SDKBindings.TryGetValue(AppConfig.Channel, out var match))
|
|
42
42
|
{
|
|
43
|
-
var
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
43
|
+
var type = GetType(match);
|
|
44
|
+
if (type == null)
|
|
45
|
+
{
|
|
46
|
+
throw new Exception($"找不到sdk实例type:{match}");
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
var instance = Activator.CreateInstance(type);
|
|
50
|
+
_sdk = instance as ISdk;
|
|
47
51
|
_sdk.OnCreate();
|
|
48
52
|
}
|
|
49
53
|
else
|
|
@@ -52,6 +56,23 @@ namespace TyphoonUnitySDK
|
|
|
52
56
|
}
|
|
53
57
|
}
|
|
54
58
|
|
|
59
|
+
|
|
60
|
+
// 反射获取type
|
|
61
|
+
private Type GetType(string typeName)
|
|
62
|
+
{
|
|
63
|
+
var assemblies = AppDomain.CurrentDomain.GetAssemblies();
|
|
64
|
+
foreach (var assembly in assemblies)
|
|
65
|
+
{
|
|
66
|
+
var type = assembly.GetType(typeName);
|
|
67
|
+
if (type != null)
|
|
68
|
+
{
|
|
69
|
+
return type;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
return null;
|
|
74
|
+
}
|
|
75
|
+
|
|
55
76
|
#endregion
|
|
56
77
|
|
|
57
78
|
#region 初始化SDK
|
|
Binary file
|
|
@@ -6,8 +6,5 @@ Assets/Typhoon_Gen/TyphoonSDK/Runtime/ChinaAndroid
|
|
|
6
6
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/ChinaAndroid/ChinaAndroidSdk.cs
|
|
7
7
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/ChinaAndroid/ChinaAndroidSdk.cs.meta
|
|
8
8
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/ChinaAndroid/Editor.meta
|
|
9
|
-
Assets/Typhoon_Gen/TyphoonSDK/Runtime/ChinaAndroid/Resources.meta
|
|
10
9
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/ChinaAndroid/Editor/PublishChinaAndroidAAR.cs
|
|
11
10
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/ChinaAndroid/Editor/PublishChinaAndroidAAR.cs.meta
|
|
12
|
-
Assets/Typhoon_Gen/TyphoonSDK/Runtime/ChinaAndroid/Resources/TYPHOON_SDK_CHINA_ANDROID.prefab
|
|
13
|
-
Assets/Typhoon_Gen/TyphoonSDK/Runtime/ChinaAndroid/Resources/TYPHOON_SDK_CHINA_ANDROID.prefab.meta
|
|
Binary file
|
|
@@ -94,10 +94,7 @@ Assets/Typhoon_Gen/TyphoonSDK/Runtime/Douyin/DouyinBannerAd.cs.meta
|
|
|
94
94
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/Douyin/DouyinSdk.cs
|
|
95
95
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/Douyin/DouyinSdk.cs.meta
|
|
96
96
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/Douyin/Editor.meta
|
|
97
|
-
Assets/Typhoon_Gen/TyphoonSDK/Runtime/Douyin/Resources.meta
|
|
98
97
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/Douyin/Editor/PublishDouyinAndroid.cs
|
|
99
98
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/Douyin/Editor/PublishDouyinAndroid.cs.meta
|
|
100
99
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/Douyin/Editor/PublishDouyinIOS.cs
|
|
101
100
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/Douyin/Editor/PublishDouyinIOS.cs.meta
|
|
102
|
-
Assets/Typhoon_Gen/TyphoonSDK/Runtime/Douyin/Resources/TYPHOON_SDK_DOUYIN_MINI.prefab
|
|
103
|
-
Assets/Typhoon_Gen/TyphoonSDK/Runtime/Douyin/Resources/TYPHOON_SDK_DOUYIN_MINI.prefab.meta
|
|
Binary file
|
|
@@ -2,8 +2,5 @@ Assets/Typhoon_Gen/TyphoonSDK/Runtime/GooglePlay
|
|
|
2
2
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/GooglePlay/Editor.meta
|
|
3
3
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/GooglePlay/GooglePlaySdk.cs
|
|
4
4
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/GooglePlay/GooglePlaySdk.cs.meta
|
|
5
|
-
Assets/Typhoon_Gen/TyphoonSDK/Runtime/GooglePlay/Resources.meta
|
|
6
5
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/GooglePlay/Editor/PublishGooglePlay.cs
|
|
7
6
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/GooglePlay/Editor/PublishGooglePlay.cs.meta
|
|
8
|
-
Assets/Typhoon_Gen/TyphoonSDK/Runtime/GooglePlay/Resources/TYPHOON_SDK_GOOGLE_PLAY.prefab
|
|
9
|
-
Assets/Typhoon_Gen/TyphoonSDK/Runtime/GooglePlay/Resources/TYPHOON_SDK_GOOGLE_PLAY.prefab.meta
|
|
Binary file
|
|
@@ -391,7 +391,5 @@ Assets/Typhoon_Gen/TyphoonSDK/Runtime/WxMini/Editor/typhoon-unity-wx.js
|
|
|
391
391
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/WxMini/Editor/typhoon-unity-wx.js.meta
|
|
392
392
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/WxMini/Plugins/_unity_js_bridge.jslib
|
|
393
393
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/WxMini/Plugins/_unity_js_bridge.jslib.meta
|
|
394
|
-
Assets/Typhoon_Gen/TyphoonSDK/Runtime/WxMini/Resources/TYPHOON_SDK_WX_MINI.prefab
|
|
395
|
-
Assets/Typhoon_Gen/TyphoonSDK/Runtime/WxMini/Resources/TYPHOON_SDK_WX_MINI.prefab.meta
|
|
396
394
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/WxMini/Resources/WX_TOUCH_INPUT_OVERRIDE.prefab
|
|
397
395
|
Assets/Typhoon_Gen/TyphoonSDK/Runtime/WxMini/Resources/WX_TOUCH_INPUT_OVERRIDE.prefab.meta
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"com.typhoon.unitysdk","displayName":"typhoon unity sdk","version":"1.0.
|
|
1
|
+
{"name":"com.typhoon.unitysdk","displayName":"typhoon unity sdk","version":"1.0.29","description":"","unity":"2018.1","type":"tool","hideInEditor":false,"author":{"name":"Jan Zhang","email":"","url":""},"changelogUrl":"","documentationUrl":"","keywords":["typhoon"],"license":"","licensesUrl":"","customDependencies":[{"PackageName":"com.unity.nuget.newtonsoft-json","Value":"2.0.0"}],"dependencies":{"com.unity.nuget.newtonsoft-json":"2.0.0"}}
|
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
%YAML 1.1
|
|
2
|
-
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
-
--- !u!114 &11400000
|
|
4
|
-
MonoBehaviour:
|
|
5
|
-
m_ObjectHideFlags: 0
|
|
6
|
-
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
-
m_PrefabInstance: {fileID: 0}
|
|
8
|
-
m_PrefabAsset: {fileID: 0}
|
|
9
|
-
m_GameObject: {fileID: 0}
|
|
10
|
-
m_Enabled: 1
|
|
11
|
-
m_EditorHideFlags: 0
|
|
12
|
-
m_Script: {fileID: 11500000, guid: b4b13ba135089db49ac6aa3f0aa8e564, type: 3}
|
|
13
|
-
m_Name: SkinsTexture
|
|
14
|
-
m_EditorClassIdentifier:
|
|
15
|
-
Texture2D:
|
|
16
|
-
- Name: box@2x
|
|
17
|
-
Texture2D: {fileID: 0}
|
|
18
|
-
- Name: btn act@2x
|
|
19
|
-
Texture2D: {fileID: 0}
|
|
20
|
-
- Name: btn on@2x
|
|
21
|
-
Texture2D: {fileID: 0}
|
|
22
|
-
- Name: btn onact@2x
|
|
23
|
-
Texture2D: {fileID: 0}
|
|
24
|
-
- Name: btn@2x
|
|
25
|
-
Texture2D: {fileID: 0}
|
|
26
|
-
- Name: btn_active
|
|
27
|
-
Texture2D: {fileID: 0}
|
|
28
|
-
- Name: btn_blue_active
|
|
29
|
-
Texture2D: {fileID: 0}
|
|
30
|
-
- Name: btn_blue_hover
|
|
31
|
-
Texture2D: {fileID: 0}
|
|
32
|
-
- Name: btn_blue_normal
|
|
33
|
-
Texture2D: {fileID: 0}
|
|
34
|
-
- Name: btn_green_active
|
|
35
|
-
Texture2D: {fileID: 0}
|
|
36
|
-
- Name: btn_green_hover
|
|
37
|
-
Texture2D: {fileID: 0}
|
|
38
|
-
- Name: btn_green_normal
|
|
39
|
-
Texture2D: {fileID: 0}
|
|
40
|
-
- Name: btn_hover
|
|
41
|
-
Texture2D: {fileID: 0}
|
|
42
|
-
- Name: btn_normal
|
|
43
|
-
Texture2D: {fileID: 0}
|
|
44
|
-
- Name: btn_yellow_active
|
|
45
|
-
Texture2D: {fileID: 0}
|
|
46
|
-
- Name: btn_yellow_hover
|
|
47
|
-
Texture2D: {fileID: 0}
|
|
48
|
-
- Name: btn_yellow_normal
|
|
49
|
-
Texture2D: {fileID: 0}
|
|
50
|
-
- Name: buttonpulldown act@2x
|
|
51
|
-
Texture2D: {fileID: 0}
|
|
52
|
-
- Name: buttonpulldown@2x
|
|
53
|
-
Texture2D: {fileID: 0}
|
|
54
|
-
- Name: PopupWindowOff
|
|
55
|
-
Texture2D: {fileID: 0}
|
|
56
|
-
- Name: PopupWindowOff@2x
|
|
57
|
-
Texture2D: {fileID: 0}
|
|
58
|
-
- Name: PopupWindowOn
|
|
59
|
-
Texture2D: {fileID: 0}
|
|
60
|
-
- Name: PopupWindowOn@2x
|
|
61
|
-
Texture2D: {fileID: 0}
|
|
62
|
-
- Name: scroll horiz left act@2x
|
|
63
|
-
Texture2D: {fileID: 0}
|
|
64
|
-
- Name: scroll horiz left@2x
|
|
65
|
-
Texture2D: {fileID: 0}
|
|
66
|
-
- Name: scroll horiz right act@2x
|
|
67
|
-
Texture2D: {fileID: 0}
|
|
68
|
-
- Name: scroll horiz right@2x
|
|
69
|
-
Texture2D: {fileID: 0}
|
|
70
|
-
- Name: scroll horiz thumb@2x
|
|
71
|
-
Texture2D: {fileID: 0}
|
|
72
|
-
- Name: scroll horiz@2x
|
|
73
|
-
Texture2D: {fileID: 0}
|
|
74
|
-
- Name: scroll vert down act@2x
|
|
75
|
-
Texture2D: {fileID: 0}
|
|
76
|
-
- Name: scroll vert down@2x
|
|
77
|
-
Texture2D: {fileID: 0}
|
|
78
|
-
- Name: scroll vert thumb@2x
|
|
79
|
-
Texture2D: {fileID: 0}
|
|
80
|
-
- Name: scroll vert up act@2x
|
|
81
|
-
Texture2D: {fileID: 0}
|
|
82
|
-
- Name: scroll vert up@2x
|
|
83
|
-
Texture2D: {fileID: 0}
|
|
84
|
-
- Name: scroll vert@2x
|
|
85
|
-
Texture2D: {fileID: 0}
|
|
86
|
-
- Name: search focused@2x
|
|
87
|
-
Texture2D: {fileID: 0}
|
|
88
|
-
- Name: search@2x
|
|
89
|
-
Texture2D: {fileID: 0}
|
|
90
|
-
- Name: searchCancelButton@2x
|
|
91
|
-
Texture2D: {fileID: 0}
|
|
92
|
-
- Name: searchCancelButtonActive@2x
|
|
93
|
-
Texture2D: {fileID: 0}
|
|
94
|
-
- Name: searchCancelButtonOff@2x
|
|
95
|
-
Texture2D: {fileID: 0}
|
|
96
|
-
- Name: slider horiz@2x
|
|
97
|
-
Texture2D: {fileID: 0}
|
|
98
|
-
- Name: slider thumb act@2x
|
|
99
|
-
Texture2D: {fileID: 0}
|
|
100
|
-
- Name: slider thumb focus@2x
|
|
101
|
-
Texture2D: {fileID: 0}
|
|
102
|
-
- Name: slider thumb@2x
|
|
103
|
-
Texture2D: {fileID: 0}
|
|
104
|
-
- Name: slider vert@2x
|
|
105
|
-
Texture2D: {fileID: 0}
|
|
106
|
-
- Name: TextField focused@2x
|
|
107
|
-
Texture2D: {fileID: 0}
|
|
108
|
-
- Name: TextField@2x
|
|
109
|
-
Texture2D: {fileID: 0}
|
|
110
|
-
- Name: toggle act@2x
|
|
111
|
-
Texture2D: {fileID: 0}
|
|
112
|
-
- Name: toggle focus@2x
|
|
113
|
-
Texture2D: {fileID: 0}
|
|
114
|
-
- Name: toggle on act@2x
|
|
115
|
-
Texture2D: {fileID: 0}
|
|
116
|
-
- Name: toggle on focus@2x
|
|
117
|
-
Texture2D: {fileID: 0}
|
|
118
|
-
- Name: toggle on@2x
|
|
119
|
-
Texture2D: {fileID: 0}
|
|
120
|
-
- Name: toggle@2x
|
|
121
|
-
Texture2D: {fileID: 0}
|
|
122
|
-
- Name: toolbar button act on@2x
|
|
123
|
-
Texture2D: {fileID: 0}
|
|
124
|
-
- Name: toolbar button act@2x
|
|
125
|
-
Texture2D: {fileID: 0}
|
|
126
|
-
- Name: toolbar button on@2x
|
|
127
|
-
Texture2D: {fileID: 0}
|
|
128
|
-
- Name: toolbar button@2x
|
|
129
|
-
Texture2D: {fileID: 0}
|
|
130
|
-
- Name: toolbar popup@2x
|
|
131
|
-
Texture2D: {fileID: 0}
|
|
132
|
-
- Name: toolbar pulldown@2x
|
|
133
|
-
Texture2D: {fileID: 0}
|