Skip to content

Commit

Permalink
Merge pull request #8 from mohsinkhan26/Development
Browse files Browse the repository at this point in the history
string to StringBuilder
  • Loading branch information
mohsinkhan26 authored Jan 4, 2018
2 parents e8c97f2 + 97eff20 commit 8ade951
Show file tree
Hide file tree
Showing 23 changed files with 160 additions and 83 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using UnityEngine.UI;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using UnityEngine.UI;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using UnityEngine.UI;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using UnityEditor;
using UnityEngine;
Expand All @@ -26,7 +26,7 @@ public static void CheckGitHubProfile()
[MenuItem("Tools/MK Assets/BitBucket Profile", false, 50)]
public static void CheckBitBucketProfile()
{
Application.OpenURL("https://bitbucket.org/unbounded-eagle/");
Application.OpenURL("https://bitbucket.org/mohsinkhan26/");
}

[MenuItem("Tools/MK Assets/OpenScene/Sample Scene")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using System;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using System;
using UnityEngine;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using System;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using System;

Expand Down
192 changes: 134 additions & 58 deletions Unity Project/Assets/MK Assets/Common/GameLogger.cs

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using UnityEngine;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using UnityEngine;
using System;
Expand Down
5 changes: 3 additions & 2 deletions Unity Project/Assets/MK Assets/Common/Helpers/WebData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using UnityEngine;
using System;
using System.Collections;
using UnityEngine.Networking;

namespace MK.Common.Helpers
{
Expand All @@ -33,7 +34,7 @@ public static void GetTextFromURL(this MonoBehaviour _mono, string _url, Action<
private static IEnumerator GetTextFromURLCoroutine(this MonoBehaviour _mono, string _url, Action<bool, string> _callback)
{
Debug.Log("GetTextFromURL-URL: <color=blue>" + _url + "</color>\n");
UnityEngine.Networking.UnityWebRequest unityWebRequest = UnityEngine.Networking.UnityWebRequest.Get(_url);
UnityWebRequest unityWebRequest = UnityWebRequest.Get(_url);
yield return unityWebRequest.Send();

if (unityWebRequest.isNetworkError)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using UnityEngine;
using MK.Common.Utilities;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using UnityEngine;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using UnityEngine;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using UnityEngine;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using UnityEngine;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
/*
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using UnityEngine;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using System;
using UnityEngine;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using UnityEngine;
using System.Net.Mail;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using UnityEngine;

Expand Down
2 changes: 1 addition & 1 deletion Unity Project/Assets/MK Assets/Mono Direct/MonoDirect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using UnityEngine;
using System;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Author : Mohsin Khan
* LinkedIn : http://pk.linkedin.com/in/mohsinkhan26/
* Github : https://github.com/mohsinkhan26/
* BitBucket : https://bitbucket.org/unbounded-eagle/
* BitBucket : https://bitbucket.org/mohsinkhan26/
*/
using UnityEngine;
using MK.Direct;
Expand Down

0 comments on commit 8ade951

Please sign in to comment.