Compare commits
2 Commits
257f9796a5
...
b3c541cb84
| Author | SHA1 | Date |
|---|---|---|
|
|
b3c541cb84 | |
|
|
ceeeeaf15f |
|
|
@ -497,6 +497,7 @@ namespace Guru.Editor
|
||||||
{
|
{
|
||||||
ReadServiceConfig(); // Read file again
|
ReadServiceConfig(); // Read file again
|
||||||
CheckAllComponents();
|
CheckAllComponents();
|
||||||
|
ExecuteAdditionalCommands();
|
||||||
}, null, GUILayout.Height(btnH));
|
}, null, GUILayout.Height(btnH));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -504,7 +505,14 @@ namespace Guru.Editor
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 执行其他的命令
|
||||||
|
/// </summary>
|
||||||
|
private void ExecuteAdditionalCommands()
|
||||||
|
{
|
||||||
|
// 部署 Adjust Signature V3
|
||||||
|
DeployAdjustSignatureV3Files();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
@ -1245,6 +1253,18 @@ namespace Guru.Editor
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region OtherCommands
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 使用 Adjust 签名 V3 导入项目
|
||||||
|
/// </summary>
|
||||||
|
private void DeployAdjustSignatureV3Files()
|
||||||
|
{
|
||||||
|
AdjustSignatureHelper.DeployFiles();
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,8 @@
|
||||||
"Guru.LitJson",
|
"Guru.LitJson",
|
||||||
"Guru.Runtime",
|
"Guru.Runtime",
|
||||||
"MaxSdk.Scripts.IntegrationManager.Editor",
|
"MaxSdk.Scripts.IntegrationManager.Editor",
|
||||||
"Guru.Editor"
|
"Guru.Editor",
|
||||||
|
"GuruAdjust.Editor"
|
||||||
],
|
],
|
||||||
"includePlatforms": [
|
"includePlatforms": [
|
||||||
"Editor"
|
"Editor"
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@ namespace Guru
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Banner 背景颜色 Hex 值
|
/// Banner 背景颜色 Hex 值
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string BannerBackgroundColor = "#00000000";
|
public string BannerBackgroundColor = "#00000040";
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 已购买去广告道具
|
/// 已购买去广告道具
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue