release: 1.0.13

This commit is contained in:
2026-04-22 20:58:58 +08:00
parent cef923c0b7
commit a2969c34ff
3 changed files with 11 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
# [1.0.13]
### 修复
* 修复插屏成功关闭时误触发 `GLOBAL_ShowAwardVideoComplete` 全局奖励视频完成事件的问题。
# [1.0.12]
### 新增

View File

@@ -131,7 +131,10 @@ namespace Runtime.ADAggregator
this.overHandler?.Kill();
this.overHandler = ADManager.Instance.CreateTimer(0.05f, () =>
{
ADManager.Instance.OnVideoComplete(obj);
if (_adPlayer != null && _adPlayer.ADType == AD_Type.AwardVideo)
{
ADManager.Instance.OnVideoComplete(obj);
}
_callback?.Invoke(obj);
Clear();
});

View File

@@ -2,7 +2,7 @@
"name": "com.foldcc.cc-framework.commercialization",
"displayName": "CC-Framework.commercialization",
"description": "商业化sdk通用组件包含广告、内购、用户统计、归因统计等",
"version": "1.0.12",
"version": "1.0.13",
"unity": "2021.1",
"license": "MIT",
"repository": {