You've already forked CC-Framework.Commercialization
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4a813fa481 | |||
| e154b3ef17 | |||
| bb0939fd98 | |||
| 082e6770aa |
@@ -48,15 +48,20 @@ namespace Runtime.ADAggregator
|
|||||||
|
|
||||||
private AsyncAdPlayer _curAsyncPlayer;
|
private AsyncAdPlayer _curAsyncPlayer;
|
||||||
|
|
||||||
|
private string _userId;
|
||||||
|
|
||||||
|
public string UserId => _userId;
|
||||||
|
|
||||||
#pragma warning disable CS0414
|
#pragma warning disable CS0414
|
||||||
private bool _isInit = false;
|
private bool _isInit = false;
|
||||||
#pragma warning restore CS0414
|
#pragma warning restore CS0414
|
||||||
|
|
||||||
public void Init(Action onCallback , ADConfig adConfig , IAdController controller , params object[] args)
|
public void Init(Action onCallback , string userId, ADConfig adConfig , IAdController controller , params object[] args)
|
||||||
{
|
{
|
||||||
_isInit = true;
|
_isInit = true;
|
||||||
_instance.name = "[GameUpdater] <color=green>Init<color>";
|
_instance.name = "[GameUpdater] <color=green>Init<color>";
|
||||||
AD_Dicts = new Dictionary<AD_Type, ADPlayer>();
|
AD_Dicts = new Dictionary<AD_Type, ADPlayer>();
|
||||||
|
_userId = userId;
|
||||||
#if UNITY_EDITOR
|
#if UNITY_EDITOR
|
||||||
onCallback?.Invoke();
|
onCallback?.Invoke();
|
||||||
#else
|
#else
|
||||||
|
|||||||
@@ -30,7 +30,12 @@ namespace Runtime.ADAggregator
|
|||||||
}
|
}
|
||||||
|
|
||||||
public abstract void ShowAD(Action onClose, Action<bool> onVideoComplete);
|
public abstract void ShowAD(Action onClose, Action<bool> onVideoComplete);
|
||||||
public abstract bool IsReadly();
|
|
||||||
|
public virtual bool IsReadly()
|
||||||
|
{
|
||||||
|
return this.curState == 2;
|
||||||
|
}
|
||||||
|
|
||||||
public abstract void LoadAD();
|
public abstract void LoadAD();
|
||||||
|
|
||||||
public virtual void OnInit()
|
public virtual void OnInit()
|
||||||
@@ -43,5 +48,12 @@ namespace Runtime.ADAggregator
|
|||||||
public virtual void CloseAD()
|
public virtual void CloseAD()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void OnError(object code, string message)
|
||||||
|
{
|
||||||
|
this.OnErrorAction?.Invoke();
|
||||||
|
this.OnErrorAction = null;
|
||||||
|
curState = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 131a6b21c8605f84396be9f6751fb6e3
|
guid: 094f67b7dbe0a8d4bb32d358c57004c6
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
@@ -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.0",
|
"version": "1.0.3",
|
||||||
"unity": "2021.1",
|
"unity": "2021.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|||||||
Reference in New Issue
Block a user