com.typhoon.unitysdk 1.0.35 → 1.0.37

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.
Files changed (41) hide show
  1. package/Editor/ApplyTool.cs +28 -2
  2. package/Editor/ExportModule.cs +1 -0
  3. package/Editor/GUIDrawer.cs +16 -0
  4. package/Editor/PluginModuleInstaller.cs +36 -16
  5. package/Editor/PreferencesWindow.cs +1 -1
  6. package/Editor/PublishProcess.cs +5 -4
  7. package/Editor/PublishSetting.cs +3 -0
  8. package/Editor/PublishSettingGUIDrawer.cs +27 -1
  9. package/Editor/PublishTool.cs +3 -3
  10. package/Editor/PublishWindow.cs +1 -3
  11. package/Editor/Texture/age_12.png +0 -0
  12. package/Editor/Texture/age_12.png.meta +144 -0
  13. package/Editor/Texture/age_16.png +0 -0
  14. package/Editor/Texture/age_16.png.meta +144 -0
  15. package/Editor/Texture/age_8.png +0 -0
  16. package/Editor/Texture/age_8.png.meta +144 -0
  17. package/Editor/UniEditor.cs +184 -68
  18. package/Editor/VivoMiniConfig.cs +186 -5
  19. package/Editor/WxMiniConfig.cs +5 -3
  20. package/Editor/bats/create-sign.bat +3 -2
  21. package/Editor/dll/AlphaFS.dll +0 -0
  22. package/Editor/dll/AlphaFS.dll.meta +33 -0
  23. package/Editor/dll/PNGCompressor.dll +0 -0
  24. package/Editor/dll/PNGCompressor.dll.meta +33 -0
  25. package/Editor/dll.meta +8 -0
  26. package/Runtime/AgeLevel.cs +12 -0
  27. package/Runtime/AgeLevel.cs.meta +11 -0
  28. package/Runtime/AndroidInstance.cs +1 -1
  29. package/Runtime/Extension.cs +8 -2
  30. package/Runtime/TyphoonSdk.cs +1 -0
  31. package/Runtime/TyphoonSdkCallback.cs +11 -5
  32. package/Sources~/Package/ChinaAndroid.unitypackage +0 -0
  33. package/Sources~/Package/Douyin.unitypackage +0 -0
  34. package/Sources~/Package/GooglePlay.unitypackage +0 -0
  35. package/Sources~/Package/VivoMini.unitypackage +0 -0
  36. package/Sources~/Package/VivoMini.unitypackage.manifest +244 -0
  37. package/Sources~/Package/WxMini.unitypackage +0 -0
  38. package/Sources~/Package//345/270/270/347/224/250/346/211/223/345/214/205/351/205/215/347/275/256.unitypackage +0 -0
  39. package/package.json +1 -1
  40. /package/Editor/{XGameDotNetZip.dll → dll/XGameDotNetZip.dll} +0 -0
  41. /package/Editor/{XGameDotNetZip.dll.meta → dll/XGameDotNetZip.dll.meta} +0 -0
@@ -32,6 +32,17 @@ namespace TyphoonUnitySDK
32
32
  };
33
33
 
34
34
 
35
+ /// <summary>
36
+ /// 保存所有渠道额外配置
37
+ /// </summary>
38
+ public static void SaveAllChannelConfig()
39
+ {
40
+ VivoMiniConfig.Default.Save();
41
+ WxMiniConfig.Default.Save();
42
+ DouyinConfig.Default.Save();
43
+ VariablePreset.Default.Save();
44
+ }
45
+
35
46
  /// <summary>
36
47
  /// 应用配置
37
48
  /// </summary>
@@ -68,8 +79,7 @@ namespace TyphoonUnitySDK
68
79
 
69
80
  //保存所有配置
70
81
  setting.Save();
71
- WxMiniConfig.Default.Save();
72
- DouyinConfig.Default.Save();
82
+ SaveAllChannelConfig();
73
83
  InvokeOnApplyStart(setting);
74
84
  if (!Applies.TryGetValue(setting.Channel, out var match))
75
85
  {
@@ -131,6 +141,8 @@ namespace TyphoonUnitySDK
131
141
  PlayerSettings.Android.minSdkVersion = setting.MinApiVersion;
132
142
  PlayerSettings.Android.targetSdkVersion = setting.TargetApiVersion;
133
143
 
144
+
145
+
134
146
  //覆写GraphicsAPI
135
147
  if (setting.GraphicsAPIs.Length > 0)
136
148
  {
@@ -192,6 +204,9 @@ namespace TyphoonUnitySDK
192
204
  }
193
205
  }
194
206
 
207
+ PlayerSettings.WebGL.exceptionSupport = setting.ExceptionSupport;
208
+ PlayerSettings.WebGL.debugSymbols = setting.WebglDebugSymbols;
209
+
195
210
  //覆写AA参数
196
211
  AddressableSupport.ModifyAAProfileAndVariables(setting);
197
212
  //写入App config
@@ -404,6 +419,7 @@ namespace TyphoonUnitySDK
404
419
  "Assets/WX-WASM-SDK-V2",
405
420
  "Assets/WebGLTemplates",
406
421
  "Assets/Plugins/ByteGame",
422
+ "Assets/VIVO-GAME-SDK",
407
423
  };
408
424
 
409
425
 
@@ -423,6 +439,8 @@ namespace TyphoonUnitySDK
423
439
  ClearFilesInDirectory(folder, manifest);
424
440
  }
425
441
 
442
+ AssetDatabase.ImportAsset($"Assets/Typhoon_Gen/TyphoonSDK/Runtime/ChinaAndroid",
443
+ ImportAssetOptions.ImportRecursive);
426
444
  AssetDatabase.Refresh();
427
445
  }
428
446
  }
@@ -460,6 +478,8 @@ namespace TyphoonUnitySDK
460
478
  ClearFilesInDirectory(folder, manifest);
461
479
  }
462
480
 
481
+ AssetDatabase.ImportAsset($"Assets/Typhoon_Gen/TyphoonSDK/Runtime/WxMini",
482
+ ImportAssetOptions.ImportRecursive);
463
483
  AssetDatabase.Refresh();
464
484
  }
465
485
  }
@@ -480,6 +500,8 @@ namespace TyphoonUnitySDK
480
500
  ClearFilesInDirectory(folder, manifest);
481
501
  }
482
502
 
503
+ AssetDatabase.ImportAsset($"Assets/Typhoon_Gen/TyphoonSDK/Runtime/Douyin",
504
+ ImportAssetOptions.ImportRecursive);
483
505
  AssetDatabase.Refresh();
484
506
  }
485
507
  }
@@ -500,6 +522,8 @@ namespace TyphoonUnitySDK
500
522
  ClearFilesInDirectory(folder, manifest);
501
523
  }
502
524
 
525
+ AssetDatabase.ImportAsset($"Assets/Typhoon_Gen/TyphoonSDK/Runtime/GooglePlay",
526
+ ImportAssetOptions.ImportRecursive);
503
527
  AssetDatabase.Refresh();
504
528
  }
505
529
  }
@@ -522,6 +546,8 @@ namespace TyphoonUnitySDK
522
546
  ClearFilesInDirectory(folder, manifest);
523
547
  }
524
548
 
549
+ AssetDatabase.ImportAsset($"Assets/Typhoon_Gen/TyphoonSDK/Runtime/VivoMini",
550
+ ImportAssetOptions.ImportRecursive);
525
551
  AssetDatabase.Refresh();
526
552
  }
527
553
  }
@@ -109,6 +109,7 @@ namespace TyphoonUnitySDK
109
109
  var manifest = new List<string>()
110
110
  {
111
111
  "Assets/Typhoon_Gen/TyphoonSDK/Runtime/VivoMini",
112
+ "Assets/VIVO-GAME-SDK",
112
113
  };
113
114
  if (!MakeSureExport(manifest))
114
115
  {
@@ -126,6 +126,22 @@ namespace TyphoonUnitySDK
126
126
  }
127
127
  }
128
128
 
129
+ /// <summary>
130
+ /// 绘制单选框
131
+ /// </summary>
132
+ public static void DrawPopUpToggleCustomTxt(bool on, Action<bool> setter, string yesTxt, string noTxt,
133
+ params GUILayoutOption[] option)
134
+ {
135
+ var txt = on ? yesTxt : noTxt;
136
+ if (GUILayout.Button(txt, "PopUp", option))
137
+ {
138
+ var menu = new GenericMenu();
139
+ menu.AddItem(new GUIContent("开"), false, () => setter?.Invoke(true));
140
+ menu.AddItem(new GUIContent("关"), false, () => setter?.Invoke(false));
141
+ menu.ShowAsContext();
142
+ }
143
+ }
144
+
129
145
 
130
146
  private static void ClickOn(ref bool on, bool setter)
131
147
  {
@@ -19,7 +19,7 @@ namespace TyphoonUnitySDK
19
19
  //插件名
20
20
  public enum PluginNames
21
21
  {
22
- NodeJsV13,
22
+ NodeJsV10_13,
23
23
  NodeJsV15,
24
24
  Openssl,
25
25
  QGToolKit, //快应用工具
@@ -51,16 +51,17 @@ namespace TyphoonUnitySDK
51
51
  // 插件清单
52
52
  public static PluginInfo[] PluginsManifest = new PluginInfo[]
53
53
  {
54
- new PluginInfo(PluginNames.NodeJsV13, "https://mecha.nthreecats.com/plugins/node-v10.13.0-win-x64.zip",
55
- "27f3768a492a3e816cb67cff7f38ff12", "node-v10.13.0-win-x64"),
54
+ new PluginInfo(PluginNames.NodeJsV10_13, "https://mecha.nthreecats.com/plugins/node-v10.13.0.zip",
55
+ "4fec379039bda31dd4f5d7dee27c8f84", "node-v10.13.0"),
56
56
  new PluginInfo(PluginNames.NodeJsV15, "https://mecha.nthreecats.com/plugins/node-v15.14.0-win-x64.zip",
57
57
  "40d03c7c1eed5c6943cc618086adfdf6", "node-v15.14.0-win-x64"),
58
58
  new PluginInfo(PluginNames.Openssl, "https://mecha.nthreecats.com/plugins/openssl.zip",
59
59
  "bfeb2896c357fdeea87a16ee913e8a65", "openssl"),
60
60
  new PluginInfo(PluginNames.QGToolKit, "https://mecha.nthreecats.com/plugins/quickgame-toolkit-unity.zip",
61
61
  "a11318f47be10876439a88baf2776b78", ""),
62
- new PluginInfo(PluginNames.VivoNodeModule, "https://mecha.nthreecats.com/plugins/vivo_node_modules.zip",
63
- "d945c1bc9473879fc4a2a3f120ca584e", ""),
62
+ new PluginInfo(PluginNames.VivoNodeModule,
63
+ "https://mecha.nthreecats.com/plugins/vivo_node_modules_v1.zip",
64
+ "c6ee54d0fa3dae6eca0ad6613f6c15e0", "vivo_node_modules"),
64
65
  };
65
66
 
66
67
  //获取插件信息
@@ -77,6 +78,14 @@ namespace TyphoonUnitySDK
77
78
  throw new Exception($"找不到PluginInfo:{pluginName}");
78
79
  }
79
80
 
81
+ /// <summary>
82
+ /// 获取插件根目录
83
+ /// </summary>
84
+ public static string GetPluginRootPath(PluginNames plugin)
85
+ {
86
+ return $"{GetPluginsFolder()}/{GetPluginInfo(plugin).FolderName}";
87
+ }
88
+
80
89
 
81
90
  public static string GetPluginsFolder()
82
91
  {
@@ -88,7 +97,7 @@ namespace TyphoonUnitySDK
88
97
  /// </summary>
89
98
  public static bool IsInstallNodeV13()
90
99
  {
91
- var root = $"{GetPluginsFolder()}/node-v10.13.0-win-x64";
100
+ var root = $"{GetPluginRootPath(PluginNames.NodeJsV10_13)}";
92
101
  var check = new[] { $"{root}/node_modules", $"{root}/node.exe", $"{root}/npm.cmd", };
93
102
  return CheckFilesOrDirectoryExists(check);
94
103
  }
@@ -98,24 +107,17 @@ namespace TyphoonUnitySDK
98
107
  /// </summary>
99
108
  public static async void InstallNodeV13Async(Action complete = null)
100
109
  {
101
- await InstallModule(PluginNames.NodeJsV13, complete);
110
+ await InstallModule(PluginNames.NodeJsV10_13, complete);
102
111
  }
103
112
 
104
- /// <summary>
105
- /// 获取插件根目录
106
- /// </summary>
107
- public static string GetPluginRootPath(PluginNames plugin)
108
- {
109
- return $"{GetPluginsFolder()}/{GetPluginInfo(plugin).FolderName}";
110
- }
111
113
 
112
114
  /// <summary>
113
115
  /// 是否安装openssl
114
116
  /// </summary>
115
117
  public static bool IsInstallOpenssl()
116
118
  {
117
- var info = GetPluginInfo(PluginNames.Openssl);
118
- var check = new[] { $"{GetPluginsFolder()}/{info.FolderName}/bin/openssl.exe" };
119
+ var root = GetPluginRootPath(PluginNames.Openssl);
120
+ var check = new[] { $"{root}/bin/openssl.exe" };
119
121
  return CheckFilesOrDirectoryExists(check);
120
122
  }
121
123
 
@@ -127,6 +129,24 @@ namespace TyphoonUnitySDK
127
129
  await InstallModule(PluginNames.Openssl, complete);
128
130
  }
129
131
 
132
+ /// <summary>
133
+ /// 是否安装了vivo_node_modules
134
+ /// </summary>
135
+ public static bool IsInstallVivoNodeModule()
136
+ {
137
+ var root = $"{GetPluginRootPath(PluginNames.VivoNodeModule)}";
138
+ var check = new[] { $"{root}/node_modules/.bin", $"{root}/node_modules/ylru" };
139
+ return CheckFilesOrDirectoryExists(check);
140
+ }
141
+
142
+ /// <summary>
143
+ /// 安装vivo_node_modules
144
+ /// </summary>
145
+ public static async void InstallVivoNodeModuleAsync(Action complete = null)
146
+ {
147
+ await InstallModule(PluginNames.VivoNodeModule, complete);
148
+ }
149
+
130
150
 
131
151
  public static async Task InstallModule(PluginNames pluginName, Action complete)
132
152
  {
@@ -39,7 +39,7 @@ namespace TyphoonUnitySDK
39
39
  if (GUI.Button(rectSave, new GUIContent("保存配置", EditorIcons.icon_save)))
40
40
  {
41
41
  EditorUtility.SetDirty(Preferences.Default);
42
- WxMiniConfig.Default.Save();
42
+ ApplyTool.SaveAllChannelConfig();
43
43
  AssetDatabase.SaveAssets();
44
44
  Debug.Log("保存完毕");
45
45
  }
@@ -8,10 +8,11 @@ namespace TyphoonUnitySDK
8
8
  Apk,
9
9
  IOS,
10
10
  Webgl,
11
- ChinaAndroidAAR,//国内android
11
+ ChinaAndroidAAR, //国内android
12
12
  WxMini, //微信小游戏
13
- DouyinAndroid,//抖音android
14
- DouyinIOS,//抖音ios
15
- GooglePlay,//google play
13
+ DouyinAndroid, //抖音android
14
+ DouyinIOS, //抖音ios
15
+ GooglePlay, //google play
16
+ VivoMini, //vivo小游戏
16
17
  }
17
18
  }
@@ -76,6 +76,9 @@ public AndroidSdkVersions MinApiVersion = AndroidSdkVersions.AndroidApiLevel22;
76
76
  public WebGlTemplate WebglTemplate = WebGlTemplate.Minimal;
77
77
  public bool OverrideWebglCompressionFormat = false;
78
78
  public WebGLCompressionFormat CompressionFormat = WebGLCompressionFormat.Gzip;
79
+ public WebGLExceptionSupport ExceptionSupport = WebGLExceptionSupport.FullWithoutStacktrace;
80
+ public bool WebglDebugSymbols = false;
81
+
79
82
 
80
83
  [FormerlySerializedAs("EnableAASupport")] [FormerlySerializedAs("EnableAddressableSupport")] [Header("AA相关")]
81
84
  /*AA相关*/
@@ -40,6 +40,10 @@ namespace TyphoonUnitySDK
40
40
  { nameof(PublishSetting.WebglTemplate), DrawProperty_WebglTemplate },
41
41
  { nameof(PublishSetting.OverrideWebglCompressionFormat), DrawProperty_OverrideWebglCompressionFormat },
42
42
  { nameof(PublishSetting.CompressionFormat), DrawProperty_CompressionFormat },
43
+ { nameof(PublishSetting.ExceptionSupport), DrawProperty_ExceptionSupport },
44
+ { nameof(PublishSetting.WebglDebugSymbols), DrawProperty_WebglDebugSymbols },
45
+
46
+
43
47
  { nameof(PublishSetting.ArmV7), DrawProperty_ArmV7 },
44
48
  { nameof(PublishSetting.ArmV64), DrawProperty_ArmV64 },
45
49
  { nameof(PublishSetting.MinApiVersion), DrawProperty_MinApiVersion },
@@ -52,6 +56,28 @@ namespace TyphoonUnitySDK
52
56
  { nameof(PublishSetting.VivoMiniGUIFoldout), DrawProperty_VivoMiniGUIFoldout },
53
57
  };
54
58
 
59
+
60
+ private static bool DrawProperty_ExceptionSupport(PublishSetting arg)
61
+ {
62
+ if (arg.BuildTarget != BuildTarget.WebGL)
63
+ {
64
+ return true;
65
+ }
66
+
67
+ return false;
68
+ }
69
+
70
+ private static bool DrawProperty_WebglDebugSymbols(PublishSetting arg)
71
+ {
72
+ if (arg.BuildTarget != BuildTarget.WebGL)
73
+ {
74
+ return true;
75
+ }
76
+
77
+ return false;
78
+ }
79
+
80
+
55
81
  private static bool DrawProperty_VivoMiniGUIFoldout(PublishSetting arg)
56
82
  {
57
83
  if (arg.Channel != AppChannel.VivoMini)
@@ -528,13 +554,13 @@ namespace TyphoonUnitySDK
528
554
  modify.VariableValue = GUILayout.TextField(modify.VariableValue);
529
555
  if (tem != modify.VariableValue)
530
556
  {
531
- //修改自定义变量
532
557
  VariablePreset.Default.Modify(modify.VariableName, modify.VariableValue);
533
558
  }
534
559
 
535
560
  GUILayout.EndHorizontal();
536
561
  }
537
562
 
563
+
538
564
  /*删除*/
539
565
  if (_cachePresetDelete != null)
540
566
  {
@@ -11,7 +11,7 @@ namespace TyphoonUnitySDK
11
11
  /// </summary>
12
12
  public interface IPublish
13
13
  {
14
- PublishResult Publish(PublishSetting setting);
14
+ void Publish(PublishSetting setting);
15
15
  }
16
16
 
17
17
  public class PublishTool
@@ -25,8 +25,8 @@ namespace TyphoonUnitySDK
25
25
  { PublishProcess.WxMini, "TyphoonUnitySDK.PublishWxMini" },
26
26
  { PublishProcess.DouyinAndroid, "TyphoonUnitySDK.PublishDouyinAndroid" },
27
27
  { PublishProcess.DouyinIOS, "TyphoonUnitySDK.PublishDouyinIOS" },
28
- { PublishProcess.GooglePlay, "TyphoonUnitySDK.PublishGooglePlay" }
29
-
28
+ { PublishProcess.GooglePlay, "TyphoonUnitySDK.PublishGooglePlay" },
29
+ { PublishProcess.VivoMini, "TyphoonUnitySDK.PublishVivoMini" },
30
30
  };
31
31
 
32
32
  /// <summary>
@@ -289,9 +289,7 @@ namespace TyphoonUnitySDK
289
289
  if (GUI.Button(rectSave, new GUIContent("保存配置", EditorIcons.icon_save)))
290
290
  {
291
291
  EditorUtility.SetDirty(_select);
292
- //保存其它配置
293
- WxMiniConfig.Default.Save();
294
- DouyinConfig.Default.Save();
292
+ ApplyTool.SaveAllChannelConfig();
295
293
  AssetDatabase.SaveAssets();
296
294
  }
297
295
 
Binary file
@@ -0,0 +1,144 @@
1
+ fileFormatVersion: 2
2
+ guid: dc3d17ad3f82a494a9c2626cc86c75b0
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: 1
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: d731e6be9bb840742ae89b02aac26ce1
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: 1
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