Create UGC Feedback
Prerequisites
Retrieve Category IDs
Find Category ID for UGC Reports
public void RetrieveCategoryIDs()
{
LootLockerSDKManager.ListUGCFeedbackCategories((response) =>
{
if (!response.success)
{
// Replace this with your own error handling
Debug.Log("Could not list UGC related feedback categories");
Debug.Log(response.errorData.ToString());
return;
}
// Replace this section with your own UI to let the player choose the category
foreach (var category in response.categories)
{
Debug.Log(category.name + "\n"
+ category.description + "\n"
+ category.id);
}
});
}Send UGC Report
Conclusion
Last updated
Was this helpful?


