The Fab code base is a year old in git hub so I’m hoping someone from Unreal can get this very simple addition added to Fab. I want to be able to popup the FabBrowser given the particular url that represents the asset. (ie https://www.fab.com/plugins/ue5/listings/034fcd08-2e37-407f-9e32-26291a8d18a3)
Within Fab\Public\FabModule.h add:
virtual void OpenURL(const FString& InURL) {};
Within Fab\Private\FabModule.cpp add:
virtual void OpenURL(const FString& InURL) override
{
FFabBrowser::OpenURL(InURL);
}
Thanks,
Jason