release: 1.0.14

This commit is contained in:
2026-04-23 17:14:27 +08:00
parent b56b47912e
commit 915180881d
5 changed files with 136 additions and 52 deletions

View File

@@ -13,6 +13,7 @@ namespace Runtime.ADAggregator
public string AdScene;
protected ADListener adListener;
public Action OnErrorAction;
public Action OnShowStartedAction;
public AD_Type ADType { get; internal set; }
public int State => curState;
@@ -33,6 +34,14 @@ namespace Runtime.ADAggregator
}
}
public virtual float ShowPendingTimeoutSeconds
{
get
{
return 5f;
}
}
public virtual bool AutoPreloadOnInit
{
get
@@ -82,6 +91,11 @@ namespace Runtime.ADAggregator
public virtual void CloseAD()
{
}
protected void NotifyShowStarted()
{
OnShowStartedAction?.Invoke();
}
public void OnError(object code, string message)
{