com.typhoon.unitysdk 1.0.77 → 1.0.79

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/CHANGELOG.md CHANGED
@@ -1,7 +1,19 @@
1
1
  # 更新日志
2
+ ## [1.0.79] - 2024-01-02
3
+
4
+ ### 新增
5
+ * 新增侧边栏UI素材生成工具,入口:TyphoonSDK/工具箱/抖音侧边栏UI素材生成器
6
+
7
+
8
+ ## [1.0.78] - 2023-12-30
9
+
10
+ ### 其它
11
+ * 更换插件安装包到新的Cdn地址
12
+
13
+
2
14
  ## [1.0.77] - 2023-12-27
3
15
 
4
- ### 修复
16
+ ### 修复
5
17
  * SDKHttpClient某些渠道出错问题
6
18
 
7
19
 
@@ -56,14 +56,16 @@ namespace TyphoonUnitySDK
56
56
  var url = "https://bytedance.feishu.cn/docx/doxcnTTjZHp8J6HzdrSbWu1aK5b";
57
57
  GUIDrawer.DrawUrlLink($" [官方说明] {url}", () => Application.OpenURL(url));
58
58
  GUIDrawer.DrawKeynotes("②webgl不支持多线程,修改代码进行适配 (只发Android可忽略)");
59
- GUIDrawer.DrawKeynotes("③录屏分享(必须接入)");
59
+ GUIDrawer.DrawKeynotes("③录屏分享(必须接入!)");
60
60
  url = "https://auffm1e1gb.feishu.cn/docx/QiGldaOsWom8p4xGjchcTpm5nmh#R5wFdxUELo22n7xbg7jcmI53n0f";
61
61
  GUIDrawer.DrawUrlLink($" [API文档] {url}", () => Application.OpenURL(url));
62
62
  GUIDrawer.DrawKeynotes("④使用指定广告图标,注意广告规范");
63
63
  url = "https://developer.open-douyin.com/docs/resource/zh-CN/mini-game/operation1/advertise/norms";
64
64
  GUIDrawer.DrawUrlLink($" [官方说明] {url}", () => Application.OpenURL(url));
65
- GUIDrawer.DrawKeynotes("⑤侧边栏复访(必须接入)");
66
- url = "https://developer.open-douyin.com/docs/resource/zh-CN/mini-game/operation1/ability/-retention/sidebar#c6ed8ce0";
65
+ GUIDrawer.DrawKeynotes("⑤侧边栏复访(必须接入!)(本工具内置侧边栏UI素材生成器,从下方打开)");
66
+ GUIDrawer.DrawUrlLink($" [打开内置工具]-抖音侧边栏UI素材生成器", SidebarGuidImageCreator.Open);
67
+ url =
68
+ "https://developer.open-douyin.com/docs/resource/zh-CN/mini-game/operation1/ability/-retention/sidebar#c6ed8ce0";
67
69
  GUIDrawer.DrawUrlLink($" [官方说明] {url}", () => Application.OpenURL(url));
68
70
  url = "https://auffm1e1gb.feishu.cn/docx/QiGldaOsWom8p4xGjchcTpm5nmh#K322dje8YoJ6psxM7XkcGs5zn6f";
69
71
  GUIDrawer.DrawUrlLink($" [API文档] {url}", () => Application.OpenURL(url));
@@ -52,19 +52,19 @@ namespace TyphoonUnitySDK
52
52
  // 插件清单
53
53
  public static PluginInfo[] PluginsManifest = new PluginInfo[]
54
54
  {
55
- new PluginInfo(PluginNames.NodeJsV10_13, "https://mecha.nthreecats.com/plugins/node-v10.13.0.zip",
55
+ new PluginInfo(PluginNames.NodeJsV10_13, "https://cdn.youshengxplay.com/plugins/node-v10.13.0.zip",
56
56
  "4fec379039bda31dd4f5d7dee27c8f84", "node-v10.13.0"),
57
- new PluginInfo(PluginNames.NodeJsV15, "https://mecha.nthreecats.com/plugins/node-v15.14.0-win-x64.zip",
57
+ new PluginInfo(PluginNames.NodeJsV15, "https://cdn.youshengxplay.com/plugins/node-v15.14.0-win-x64.zip",
58
58
  "40d03c7c1eed5c6943cc618086adfdf6", "node-v15.14.0-win-x64"),
59
- new PluginInfo(PluginNames.Openssl, "https://mecha.nthreecats.com/plugins/openssl.zip",
59
+ new PluginInfo(PluginNames.Openssl, "https://cdn.youshengxplay.com/plugins/openssl.zip",
60
60
  "bfeb2896c357fdeea87a16ee913e8a65", "openssl"),
61
- new PluginInfo(PluginNames.QGToolKit, "https://mecha.nthreecats.com/plugins/quickgame-toolkit-unity.zip",
61
+ new PluginInfo(PluginNames.QGToolKit, "https://cdn.youshengxplay.com/plugins/quickgame-toolkit-unity.zip",
62
62
  "a11318f47be10876439a88baf2776b78", "quickgame-toolkit-unity"),
63
63
  new PluginInfo(PluginNames.VivoNodeModule,
64
- "https://mecha.nthreecats.com/plugins/vivo_node_modules_v1.zip",
64
+ "https://cdn.youshengxplay.com/plugins/vivo_node_modules_v1.zip",
65
65
  "c6ee54d0fa3dae6eca0ad6613f6c15e0", "vivo_node_modules"),
66
66
  new PluginInfo(PluginNames.OppoMiniGameCli,
67
- "https://mecha.nthreecats.com/plugins/oppo-minigame-v231212.zip",
67
+ "https://cdn.youshengxplay.com/plugins/oppo-minigame-v231212.zip",
68
68
  "3b9458fd745a4425506bd3bcf34fd8d5", "oppo-minigame-v231212"),
69
69
  };
70
70
 
@@ -0,0 +1,206 @@
1
+ using System;
2
+ using System.IO;
3
+ using PNGCompression;
4
+ using UnityEditor;
5
+ using UnityEngine;
6
+
7
+ namespace TyphoonUnitySDK
8
+ {
9
+ public class SidebarGuidImageCreator : EditorWindow
10
+ {
11
+ [MenuItem("TyphoonSDK/工具箱/抖音侧边栏UI素材生成器")]
12
+ public static void Open()
13
+ {
14
+ var win = GetWindow<SidebarGuidImageCreator>();
15
+ win.minSize = new Vector2(266, 160);
16
+ win.titleContent = new GUIContent("抖音侧边栏UI素材生成器");
17
+ win.Show();
18
+ }
19
+
20
+
21
+ private Texture _icon;
22
+
23
+ private void OnGUI()
24
+ {
25
+ var area = new Rect(Vector2.zero, position.size);
26
+ var center = area.center;
27
+ area.width -= 16;
28
+ area.height -= 16;
29
+ area.center = center;
30
+ GUILayout.BeginArea(area);
31
+ GUIDrawer.DrawKeynotes("请放入游戏ICON图片,一键生成侧边栏UI资源");
32
+ GUILayout.Space(10);
33
+ _icon = EditorGUILayout.ObjectField(_icon, typeof(Texture)) as Texture;
34
+ if (GUILayout.Button("生成素材"))
35
+ {
36
+ if (_icon == null)
37
+ {
38
+ Debug.Log("需要指定一张icon");
39
+ EditorUtility.DisplayDialog("提示", "需要指定一张ICON图片", "好的");
40
+ return;
41
+ }
42
+
43
+
44
+ var step1 = $"{UniEditor.PathRoot}/Editor/Texture/sidebar_1.png";
45
+ var step1Output =
46
+ $"Assets/Typhoon_Gen/TyphoonSDK/_Temp/sidebar_step_1.png";
47
+
48
+ File.Copy(step1, step1Output, true);
49
+ Debug.Log($"生成完毕:{step1Output}");
50
+ var bg = $"{UniEditor.PathRoot}/Editor/Texture/sidebar_2.png";
51
+ var icon = AssetDatabase.GetAssetPath(_icon);
52
+ var output =
53
+ $"Assets/Typhoon_Gen/TyphoonSDK/_Temp/sidebar_step_2.png";
54
+ var dir = Path.GetDirectoryName(output);
55
+ if (!Directory.Exists(dir))
56
+ {
57
+ Directory.CreateDirectory(dir);
58
+ AssetDatabase.Refresh();
59
+ }
60
+
61
+ var fullPath = Path.GetFullPath(output);
62
+ fullPath = fullPath.Replace("\\", "/");
63
+ Generate(fullPath, bg, icon);
64
+ Debug.Log($"生成完毕:{output}");
65
+ EditorUtility.RevealInFinder(output);
66
+ AssetDatabase.Refresh();
67
+ try
68
+ {
69
+ EditorApplication.ExecuteMenuItem("Window/General/Project");
70
+ }
71
+ catch (Exception e)
72
+ {
73
+ }
74
+
75
+ EditorGUIUtility.PingObject(AssetDatabase.LoadAssetAtPath<Texture>(step1Output));
76
+ }
77
+
78
+ GUILayout.EndArea();
79
+ }
80
+
81
+ //生成加载背景图
82
+ private void Generate(string output, string imgBg, string imgAge)
83
+ {
84
+ //读取背景图
85
+ var texBg = ReadImage(imgBg);
86
+ var texAge = ReadImage(imgAge);
87
+ var width = texBg.width;
88
+ var height = texBg.height;
89
+ var ageSize = 156;
90
+ var rectBg = new Rect(0, 0, width, height);
91
+ var rectAge = new Rect(0, 0, ageSize, ageSize);
92
+ var rectArea = new Rect(89, 106, 156, 156);
93
+ rectAge.center = rectArea.center;
94
+ var pw = rectAge.width / rectBg.width;
95
+ var ph = rectAge.height / rectBg.height;
96
+ var spx = Mathf.InverseLerp(0, rectBg.xMax, rectAge.x);
97
+ var spy = Mathf.InverseLerp(0, rectBg.yMax, rectAge.y);
98
+ var tex = FillImageTo(texBg, texAge, spx, spy, pw, ph);
99
+ //覆盖多一层bg
100
+ tex = FillImageTo(tex, texBg, 0, 0, 1, 1);
101
+ var data = tex.EncodeToPNG();
102
+ File.WriteAllBytes(output, data);
103
+ CompressPng(output);
104
+ }
105
+
106
+
107
+ //压缩图片
108
+ private static void CompressPng(string path)
109
+ {
110
+ var pngCompressor = new PNGCompressor();
111
+ Debug.Log($"压缩:{path}");
112
+ var tmp = $"{path}.tmp";
113
+ File.Copy(path, tmp, true);
114
+ pngCompressor.CompressImageLossy(tmp, path);
115
+ File.Delete(tmp);
116
+ Debug.Log($"压缩:{path} [完毕]");
117
+ }
118
+
119
+
120
+ private static Texture2D ReadImage(string file)
121
+ {
122
+ var tex = AssetDatabase.LoadAssetAtPath<Texture2D>(file);
123
+ var bytes = File.ReadAllBytes(file);
124
+ var img = new Texture2D(tex.width, tex.height);
125
+ img.alphaIsTransparency = true;
126
+ img.LoadImage(bytes);
127
+ img.Apply();
128
+ return img;
129
+ }
130
+
131
+ private static Color[] RemapImageTo(Texture2D sourceImage, int width, int height)
132
+ {
133
+ // 计算图片的采样比例
134
+ float widthRatio = (float)width / sourceImage.width;
135
+ float heightRatio = (float)height / sourceImage.height;
136
+ var colors = new Color[width * height];
137
+ // 遍历目标图片的像素,并根据采样比例从源图片中采样颜色
138
+ var index = 0;
139
+ for (int y = 0; y < height; y++)
140
+ {
141
+ for (int x = 0; x < width; x++)
142
+ {
143
+ int sourceX = Mathf.RoundToInt(x / widthRatio);
144
+ int sourceY = Mathf.RoundToInt(y / heightRatio);
145
+ Color sourceColor = sourceImage.GetPixel(sourceX, sourceY);
146
+ colors[index] = sourceColor;
147
+ index += 1;
148
+ }
149
+ }
150
+
151
+ return colors;
152
+ }
153
+
154
+ //颜色融合
155
+ public static Color[] BlendColorsWithAlpha(Color[] colorArrayA, Color[] colorArrayB)
156
+ {
157
+ int length = colorArrayA.Length;
158
+ Color[] blendedColors = new Color[length];
159
+
160
+ for (int i = 0; i < length; i++)
161
+ {
162
+ Color colorA = colorArrayA[i];
163
+ Color colorB = colorArrayB[i];
164
+
165
+ if (colorB.a == 0)
166
+ {
167
+ blendedColors[i] = colorA;
168
+ }
169
+ else
170
+ {
171
+ Color blendedColor = new Color(
172
+ (colorA.r * (1 - colorB.a)) + (colorB.r * colorB.a),
173
+ (colorA.g * (1 - colorB.a)) + (colorB.g * colorB.a),
174
+ (colorA.b * (1 - colorB.a)) + (colorB.b * colorB.a),
175
+ (colorA.a * (1 - colorB.a)) + (colorB.a * colorB.a)
176
+ );
177
+
178
+ blendedColors[i] = blendedColor;
179
+ }
180
+ }
181
+
182
+ return blendedColors;
183
+ }
184
+
185
+
186
+ //填充图片A到B指定区域
187
+ private static Texture2D FillImageTo(Texture2D sourceImage, Texture2D fillImage, float spx, float spy, float pw,
188
+ float ph)
189
+ {
190
+ Texture2D result = new Texture2D(sourceImage.width, sourceImage.height);
191
+ result.SetPixels(sourceImage.GetPixels());
192
+ result.alphaIsTransparency = true;
193
+ var pixelX = (int)(Mathf.Lerp(0, sourceImage.width, spx));
194
+ var pixelY = (int)(Mathf.Lerp(0, sourceImage.height, spy));
195
+ var fillWidth = (int)(pw * sourceImage.width);
196
+ var fillHeight = (int)(ph * sourceImage.height);
197
+ var colors = RemapImageTo(fillImage, fillWidth, fillHeight);
198
+ //剔除alpha
199
+ var original = result.GetPixels(pixelX, pixelY, fillWidth, fillHeight);
200
+ var blendColors = BlendColorsWithAlpha(original, colors);
201
+ result.SetPixels(pixelX, pixelY, fillWidth, fillHeight, blendColors);
202
+ result.Apply();
203
+ return result;
204
+ }
205
+ }
206
+ }
@@ -0,0 +1,11 @@
1
+ fileFormatVersion: 2
2
+ guid: 3e6fd66916179b14bae70d6de5bf2349
3
+ MonoImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ defaultReferences: []
7
+ executionOrder: 0
8
+ icon: {instanceID: 0}
9
+ userData:
10
+ assetBundleName:
11
+ assetBundleVariant:
Binary file
@@ -0,0 +1,144 @@
1
+ fileFormatVersion: 2
2
+ guid: 40991b7c352b1634f86ef515207adc02
3
+ TextureImporter:
4
+ internalIDToNameTable: []
5
+ externalObjects: {}
6
+ serializedVersion: 11
7
+ mipmaps:
8
+ mipMapMode: 0
9
+ enableMipMap: 1
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
+ vTOnly: 0
27
+ grayScaleToAlpha: 0
28
+ generateCubemap: 6
29
+ cubemapConvolution: 0
30
+ seamlessCubemap: 0
31
+ textureFormat: 1
32
+ maxTextureSize: 2048
33
+ textureSettings:
34
+ serializedVersion: 2
35
+ filterMode: 1
36
+ aniso: 1
37
+ mipBias: 0
38
+ wrapU: 0
39
+ wrapV: 0
40
+ wrapW: 0
41
+ nPOTScale: 0
42
+ lightmap: 0
43
+ compressionQuality: 50
44
+ spriteMode: 0
45
+ spriteExtrude: 1
46
+ spriteMeshType: 1
47
+ alignment: 0
48
+ spritePivot: {x: 0.5, y: 0.5}
49
+ spritePixelsToUnits: 100
50
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
51
+ spriteGenerateFallbackPhysicsShape: 1
52
+ alphaUsage: 1
53
+ alphaIsTransparency: 1
54
+ spriteTessellationDetail: -1
55
+ textureType: 0
56
+ textureShape: 1
57
+ singleChannelComponent: 0
58
+ flipbookRows: 1
59
+ flipbookColumns: 1
60
+ maxTextureSizeSet: 0
61
+ compressionQualitySet: 0
62
+ textureFormatSet: 0
63
+ ignorePngGamma: 0
64
+ applyGammaDecoding: 0
65
+ platformSettings:
66
+ - serializedVersion: 3
67
+ buildTarget: DefaultTexturePlatform
68
+ maxTextureSize: 2048
69
+ resizeAlgorithm: 0
70
+ textureFormat: -1
71
+ textureCompression: 1
72
+ compressionQuality: 50
73
+ crunchedCompression: 0
74
+ allowsAlphaSplitting: 0
75
+ overridden: 0
76
+ androidETC2FallbackOverride: 0
77
+ forceMaximumCompressionQuality_BC6H_BC7: 0
78
+ - serializedVersion: 3
79
+ buildTarget: Standalone
80
+ maxTextureSize: 2048
81
+ resizeAlgorithm: 0
82
+ textureFormat: -1
83
+ textureCompression: 1
84
+ compressionQuality: 50
85
+ crunchedCompression: 0
86
+ allowsAlphaSplitting: 0
87
+ overridden: 0
88
+ androidETC2FallbackOverride: 0
89
+ forceMaximumCompressionQuality_BC6H_BC7: 0
90
+ - serializedVersion: 3
91
+ buildTarget: iPhone
92
+ maxTextureSize: 2048
93
+ resizeAlgorithm: 0
94
+ textureFormat: -1
95
+ textureCompression: 1
96
+ compressionQuality: 50
97
+ crunchedCompression: 0
98
+ allowsAlphaSplitting: 0
99
+ overridden: 0
100
+ androidETC2FallbackOverride: 0
101
+ forceMaximumCompressionQuality_BC6H_BC7: 0
102
+ - serializedVersion: 3
103
+ buildTarget: WebGL
104
+ maxTextureSize: 2048
105
+ resizeAlgorithm: 0
106
+ textureFormat: -1
107
+ textureCompression: 1
108
+ compressionQuality: 50
109
+ crunchedCompression: 0
110
+ allowsAlphaSplitting: 0
111
+ overridden: 0
112
+ androidETC2FallbackOverride: 0
113
+ forceMaximumCompressionQuality_BC6H_BC7: 0
114
+ - serializedVersion: 3
115
+ buildTarget: Android
116
+ maxTextureSize: 2048
117
+ resizeAlgorithm: 0
118
+ textureFormat: -1
119
+ textureCompression: 1
120
+ compressionQuality: 50
121
+ crunchedCompression: 0
122
+ allowsAlphaSplitting: 0
123
+ overridden: 0
124
+ androidETC2FallbackOverride: 0
125
+ forceMaximumCompressionQuality_BC6H_BC7: 0
126
+ spriteSheet:
127
+ serializedVersion: 2
128
+ sprites: []
129
+ outline: []
130
+ physicsShape: []
131
+ bones: []
132
+ spriteID:
133
+ internalID: 0
134
+ vertices: []
135
+ indices:
136
+ edges: []
137
+ weights: []
138
+ secondaryTextures: []
139
+ spritePackingTag:
140
+ pSDRemoveMatte: 0
141
+ pSDShowRemoveMatteOption: 0
142
+ userData:
143
+ assetBundleName:
144
+ assetBundleVariant:
Binary file
@@ -0,0 +1,144 @@
1
+ fileFormatVersion: 2
2
+ guid: 39564ec81ebe1a2459883012310b50be
3
+ TextureImporter:
4
+ internalIDToNameTable: []
5
+ externalObjects: {}
6
+ serializedVersion: 11
7
+ mipmaps:
8
+ mipMapMode: 0
9
+ enableMipMap: 1
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
+ vTOnly: 0
27
+ grayScaleToAlpha: 0
28
+ generateCubemap: 6
29
+ cubemapConvolution: 0
30
+ seamlessCubemap: 0
31
+ textureFormat: 1
32
+ maxTextureSize: 2048
33
+ textureSettings:
34
+ serializedVersion: 2
35
+ filterMode: 1
36
+ aniso: 1
37
+ mipBias: 0
38
+ wrapU: 0
39
+ wrapV: 0
40
+ wrapW: 0
41
+ nPOTScale: 0
42
+ lightmap: 0
43
+ compressionQuality: 50
44
+ spriteMode: 0
45
+ spriteExtrude: 1
46
+ spriteMeshType: 1
47
+ alignment: 0
48
+ spritePivot: {x: 0.5, y: 0.5}
49
+ spritePixelsToUnits: 100
50
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
51
+ spriteGenerateFallbackPhysicsShape: 1
52
+ alphaUsage: 1
53
+ alphaIsTransparency: 1
54
+ spriteTessellationDetail: -1
55
+ textureType: 0
56
+ textureShape: 1
57
+ singleChannelComponent: 0
58
+ flipbookRows: 1
59
+ flipbookColumns: 1
60
+ maxTextureSizeSet: 0
61
+ compressionQualitySet: 0
62
+ textureFormatSet: 0
63
+ ignorePngGamma: 0
64
+ applyGammaDecoding: 0
65
+ platformSettings:
66
+ - serializedVersion: 3
67
+ buildTarget: DefaultTexturePlatform
68
+ maxTextureSize: 2048
69
+ resizeAlgorithm: 0
70
+ textureFormat: -1
71
+ textureCompression: 1
72
+ compressionQuality: 50
73
+ crunchedCompression: 0
74
+ allowsAlphaSplitting: 0
75
+ overridden: 0
76
+ androidETC2FallbackOverride: 0
77
+ forceMaximumCompressionQuality_BC6H_BC7: 0
78
+ - serializedVersion: 3
79
+ buildTarget: Standalone
80
+ maxTextureSize: 2048
81
+ resizeAlgorithm: 0
82
+ textureFormat: -1
83
+ textureCompression: 1
84
+ compressionQuality: 50
85
+ crunchedCompression: 0
86
+ allowsAlphaSplitting: 0
87
+ overridden: 0
88
+ androidETC2FallbackOverride: 0
89
+ forceMaximumCompressionQuality_BC6H_BC7: 0
90
+ - serializedVersion: 3
91
+ buildTarget: iPhone
92
+ maxTextureSize: 2048
93
+ resizeAlgorithm: 0
94
+ textureFormat: -1
95
+ textureCompression: 1
96
+ compressionQuality: 50
97
+ crunchedCompression: 0
98
+ allowsAlphaSplitting: 0
99
+ overridden: 0
100
+ androidETC2FallbackOverride: 0
101
+ forceMaximumCompressionQuality_BC6H_BC7: 0
102
+ - serializedVersion: 3
103
+ buildTarget: WebGL
104
+ maxTextureSize: 2048
105
+ resizeAlgorithm: 0
106
+ textureFormat: -1
107
+ textureCompression: 1
108
+ compressionQuality: 50
109
+ crunchedCompression: 0
110
+ allowsAlphaSplitting: 0
111
+ overridden: 0
112
+ androidETC2FallbackOverride: 0
113
+ forceMaximumCompressionQuality_BC6H_BC7: 0
114
+ - serializedVersion: 3
115
+ buildTarget: Android
116
+ maxTextureSize: 2048
117
+ resizeAlgorithm: 0
118
+ textureFormat: -1
119
+ textureCompression: 1
120
+ compressionQuality: 50
121
+ crunchedCompression: 0
122
+ allowsAlphaSplitting: 0
123
+ overridden: 0
124
+ androidETC2FallbackOverride: 0
125
+ forceMaximumCompressionQuality_BC6H_BC7: 0
126
+ spriteSheet:
127
+ serializedVersion: 2
128
+ sprites: []
129
+ outline: []
130
+ physicsShape: []
131
+ bones: []
132
+ spriteID:
133
+ internalID: 0
134
+ vertices: []
135
+ indices:
136
+ edges: []
137
+ weights: []
138
+ secondaryTextures: []
139
+ spritePackingTag:
140
+ pSDRemoveMatte: 0
141
+ pSDShowRemoveMatteOption: 0
142
+ userData:
143
+ assetBundleName:
144
+ assetBundleVariant:
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"com.typhoon.unitysdk","displayName":"typhoon unity sdk","version":"1.0.77","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"}],"version_log":"## [1.0.77] - 2023-12-27\r\n\r\n### 修复\n* SDKHttpClient某些渠道出错问题\r\n\r\n","major_flag":false,"write_time_stamp":1703653541000,"others":{"items":[]},"dependencies":{"com.unity.nuget.newtonsoft-json":"2.0.0"}}
1
+ {"name":"com.typhoon.unitysdk","displayName":"typhoon unity sdk","version":"1.0.79","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"}],"version_log":"## [1.0.79] - 2024-01-02\r\n\r\n### 新增\n* 新增侧边栏UI素材生成工具,入口:TyphoonSDK/工具箱/抖音侧边栏UI素材生成器\r\n\r\n","major_flag":false,"write_time_stamp":1704129825000,"others":{"items":[]},"dependencies":{"com.unity.nuget.newtonsoft-json":"2.0.0"}}