com.typhoon.unitysdk 1.0.37 → 1.0.39
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/DouyinConfig.cs +3 -0
- package/Editor/PublishSetting.cs +2 -2
- package/Editor/ToolBox/CompressTextureTool/XCompressTool.cs +2849 -0
- package/Editor/ToolBox/CompressTextureTool/XCompressTool.cs.meta +11 -0
- package/Editor/ToolBox/CompressTextureTool.meta +8 -0
- package/Editor/ToolBox.meta +8 -0
- package/Editor/UniEditor.cs +1 -1
- package/Editor/VivoMiniConfig.cs +3 -3
- package/Runtime/BaseSdk.cs +39 -4
- package/Runtime/Interface.cs +44 -9
- package/Runtime/LabelOverride.cs +62 -0
- package/Runtime/LabelOverride.cs.meta +11 -0
- package/Runtime/SdkTestInUnity.cs +15 -6
- package/Runtime/SimulateRecordGame.cs +6 -0
- package/Runtime/Toast.cs +108 -0
- package/Runtime/Toast.cs.meta +11 -0
- package/Runtime/TyphoonSdk.cs +179 -24
- package/Sources~/Package/Douyin.unitypackage +0 -0
- package/Sources~/Package//345/270/270/347/224/250/346/211/223/345/214/205/351/205/215/347/275/256.unitypackage +0 -0
- package/package.json +1 -1
package/Editor/DouyinConfig.cs
CHANGED
|
@@ -60,6 +60,9 @@ namespace TyphoonUnitySDK
|
|
|
60
60
|
GUIDrawer.DrawKeynotes("③使用指定广告图标,链接如下:");
|
|
61
61
|
url = "https://developer.open-douyin.com/docs/resource/zh-CN/mini-game/operation1/advertise/norms";
|
|
62
62
|
GUIDrawer.DrawUrlLink($" {url}", () => Application.OpenURL(url));
|
|
63
|
+
GUIDrawer.DrawKeynotes("④需要接入侧边栏复访");
|
|
64
|
+
url = "https://developer.open-douyin.com/docs/resource/zh-CN/mini-game/operation1/ability/-retention/sidebar#c6ed8ce0";
|
|
65
|
+
GUIDrawer.DrawUrlLink($" {url}", () => Application.OpenURL(url));
|
|
63
66
|
GUILayout.Space(6);
|
|
64
67
|
GUI.enabled = tmpEnable;
|
|
65
68
|
return true;
|
package/Editor/PublishSetting.cs
CHANGED
|
@@ -45,9 +45,9 @@ namespace TyphoonUnitySDK
|
|
|
45
45
|
public ScriptingImplementation ScriptingImplementation = ScriptingImplementation.IL2CPP;
|
|
46
46
|
|
|
47
47
|
|
|
48
|
-
public bool StripEngineCode =
|
|
48
|
+
public bool StripEngineCode = true;
|
|
49
49
|
|
|
50
|
-
public ManagedStrippingLevel StrippingLevel = ManagedStrippingLevel.
|
|
50
|
+
public ManagedStrippingLevel StrippingLevel = ManagedStrippingLevel.Low;
|
|
51
51
|
|
|
52
52
|
#if UNITY_2021
|
|
53
53
|
public AndroidSdkVersions MinApiVersion = AndroidSdkVersions.AndroidApiLevel22;
|