You've already forked CC-Framework.Commercialization
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b56b47912e |
@@ -1,3 +1,9 @@
|
|||||||
|
# [1.0.13]
|
||||||
|
|
||||||
|
### 修复
|
||||||
|
|
||||||
|
* 修复插屏成功关闭时误触发 `GLOBAL_ShowAwardVideoComplete` 全局奖励视频完成事件的问题。
|
||||||
|
|
||||||
# [1.0.12]
|
# [1.0.12]
|
||||||
|
|
||||||
### 新增
|
### 新增
|
||||||
|
|||||||
@@ -131,7 +131,10 @@ namespace Runtime.ADAggregator
|
|||||||
this.overHandler?.Kill();
|
this.overHandler?.Kill();
|
||||||
this.overHandler = ADManager.Instance.CreateTimer(0.05f, () =>
|
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);
|
_callback?.Invoke(obj);
|
||||||
Clear();
|
Clear();
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"name": "com.foldcc.cc-framework.commercialization",
|
"name": "com.foldcc.cc-framework.commercialization",
|
||||||
"displayName": "CC-Framework.commercialization",
|
"displayName": "CC-Framework.commercialization",
|
||||||
"description": "商业化sdk通用组件,包含广告、内购、用户统计、归因统计等",
|
"description": "商业化sdk通用组件,包含广告、内购、用户统计、归因统计等",
|
||||||
"version": "1.0.12",
|
"version": "1.0.13",
|
||||||
"unity": "2021.1",
|
"unity": "2021.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|||||||
Reference in New Issue
Block a user