Wednesday 26 July 2017

New Criminal Crime Case Mystery 2017

Download: https://goo.gl/FkVoEW

Spy..!! Ready for to Be a Clever Spy.?? Then Accept this challenge and solve the crimes case and mystery and got the award of great detective. In this criminal case mystery hidden object game you must prove your talent and find the hidden object and be a agent alice, you catch the criminal within the time period. Its a best strategy games and fun to play for kids, youngsters and all ages people.

In criminal case mystery game search the objects in the game and solve the case. Its a one of the killing games for game lovers. Its a one kind of simulation and big adventure game. Its a puzzle game so run your mind fastley and do it.





There are ten mystery scene in this game you have to complete one by one level up to the last. without solving the case or level you cannot goto the next level. you have to complete your task within the time period, if you are not find all the hidden object in the time you lost the level. if you have trouble to find the objects you can use hint, but remember you can use the hint only two times in the one level. so be carefull and prove your talent to solve the mystery. You got the star as per your performance. so be quick and get three star in all the levels

Features
- More than 1000 Hidden objects to find.
- Lovely Addictive graphics.
- Amazing gameplay.
- Use Hint for help to find objects. 
- investigate the case and solve puzzle.
- All ages people like kids, youngsters, elders all can play and fun.
- totally challenging game.
- all the game play is look like 3D environment.
- new concept in the hidden object word.

Download the worlds best game and Have a Fun.!!
Don't Forget to rate us.

Download: https://goo.gl/FkVoEW

Friday 21 July 2017

Saturday 1 July 2017

Json Parsing in unity c#

hey guys, here is the script of JsonParsing in unity with c#, make sure you have to add SimpleJSON.cs and ICSharpCode.SharpZipLib.dll in your plugin folder.


using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using SimpleJSON;

public class SearchFriends : Monobehavior {

public string[] F_ID;
private string GetdataApi="http://yourApiLink";

void GetAllId()
{
JSONNode jsonNode = SimpleJSON.JSONNode.Parse (GetdataApi);
int a = jsonNode.Count;
F_ID = new string[a];
for (int i = 0; i < a; i++)
{
F_ID [i] = jsonNode [i] ["id"].ToString (); // change ["id"] with your DB parameter.
F_ID [i] = F_ID [i].Replace ("\"", "");
}
}

by this you can find all the id from the database. make sure you have to change ["id"] with your database parameter name.

by the similar way you can find all the field of database like "username" , "email", "gender" etc. just you have to change ["id"] by this name.


... Be Happy....:) :)

Thursday 29 June 2017

Facebook Sharing

hey guys, here is the Facebook sharing script, simple way, make sure you have to import Facebook SDK in your unity project,


using UnityEngine;
using UnityEngine.UI;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using Facebook.Unity;


public class Facebookmanager : MonoBehaviour {

//--------- login----------

void Awake()
{
if (!FB.IsInitialized)
{
FB.Init ();
}
else
{
FB.ActivateApp ();
}
}

public void LogIn()
{
FB.LogInWithReadPermissions (callback: OnLogIn);
}

void OnLogIn(ILoginResult result)
{
if (FB.IsLoggedIn)
{
AccessToken token = AccessToken.CurrentAccessToken;
}
else
{
Debug.Log("Canceled Login");
     }
}

//------- login end-----------

//-----sharing start-------

public void Share()
{
FB.ShareLink (

contentTitle: "Mad Drift! Love this game!",
contentURL: new System.Uri ("https://yourlinkwhateveryoushare"),
contentDescription: "Mad Drift! Love this game! Download it rate it",
photoURL: new System.Uri ("https://photourl"),
callback: OnShare);
}

void OnShare (IShareResult result)
{
if (result.Cancelled || !string.IsNullOrEmpty (result.Error))
{
Debug.Log ("ShareLinkError: " + result.Error);
}
else if (!string.IsNullOrEmpty (result.PostId))
{
Debug.Log (result.PostId);
      }
else
{
Debug.Log ("Share success");
  }
}

}