ShowWithPath() public static method

public static ShowWithPath ( string path ) : void
path string
return void
    //=============================================================================

    public static void ShowHomepageWithPath(string CurPath)
    {
                #if UNITY_IPHONE || UNITY_ANDROID
        if (Everyplay.IsRecordingSupported())
        {
            Everyplay.ShowWithPath(CurPath);
        }
        else
        {
            Debug.Log("Everyplay recording not supported");
        }
                #endif
    }
Beispiel #2
0
 public void OnReplaysBtnClick()
 {
     Everyplay.ShowWithPath("/feed/game");
 }
 public void ShowWithPath(string path)
 {
     Everyplay.ShowWithPath(path);
 }