diff --git a/Assets/Scripts/Editor/BuildScript.cs b/Assets/Scripts/Editor/BuildScript.cs index f9effd0..db6c801 100644 --- a/Assets/Scripts/Editor/BuildScript.cs +++ b/Assets/Scripts/Editor/BuildScript.cs @@ -34,5 +34,7 @@ public static class BuildScript { throw new Exception($"{buildTarget} build had errors"); } + + Debug.Log($"{buildTarget} build completed successfully at {DateTime.Now:HH:mm:ss}, duration: {report.summary.totalTime.TotalSeconds:0.0} seconds"); } } diff --git a/Assets/Scripts/EpicVoiceChatTest.cs b/Assets/Scripts/EpicVoiceChatTest.cs index e6ffc8d..bfd83e3 100644 --- a/Assets/Scripts/EpicVoiceChatTest.cs +++ b/Assets/Scripts/EpicVoiceChatTest.cs @@ -214,6 +214,9 @@ public class EpicVoiceChatTest : MonoBehaviour Debug.Log("EOS platform interface successfully created!"); status.AppendLine("EOS platform interface created"); + platformInterface.SetNetworkStatus(NetworkStatus.Online); + platformInterface.SetApplicationStatus(ApplicationStatus.Foreground); + authInterface = platformInterface.GetAuthInterface(); status.AppendLine("Auth interface: " + authInterface);