By the way I have never succeeded in getting a pointer to the OnlineSubsystem, so I hope that is not the recommended solution to my IP question ![]()
I’ve been having ongoing discussion with Dmitry and Josh about it and we concluded to wait till Beta5
Some other way to get IP please?
(here’s my code as a reference to what I mean about OnlineSubsystem being Null)
IOnlineSubsystem* OnlineSub = IOnlineSubsystem::Get();
if (OnlineSub)
{
IOnlineSessionPtr Sessions = OnlineSub->GetSessionInterface();
if (Sessions.IsValid())
{
Optimize("onlinesubsys was found!!!! yay!!");
}
else Optimize(" IOnlineSessionPtr not found, did you change config to enable steam?");
}
else Optimize("onlinesubsys not found, did you change config to enable steam?");