Helpshift - Customer Support
Helpshift is a tool for handling support tickets.
Setup
Go to LionStudios→Settings Manager in Unity menu
Switch to the Helpshift tab
Click on the Install Helpshift Button

Make sure the “Enable auto-initialization” checkbox is checked

Usage
Use the following method to show the Helpshift screen:
HelpshiftSdk.GetInstance().ShowConversation(Dictionary<string, object> configMap = null);Example:
private void AssignButtonEvent()
{
GetComponent<Button>().onClick.AddListener(OnFeedbackButtonClick);
}
private async void OnFeedbackButtonClick()
{
// Can pass optional player info to this method
HelpshiftSdk.GetInstance().ShowConversation(Dictionary<string, object> configMap = null);
}Last updated
Was this helpful?