Be a Supporter!
Response to: Newgrounds Api For Unity3d Posted February 23rd, 2014 in Programming

actually I have found some data how to upload a game:

http://www.youtube.com/watch?v=8VZCKF1c9H0

but I still don't know how to access their API to use medals, ...

how to read user data, Unity 3D, C# Posted February 19th, 2014 in Programming

Ok I'm programming with Unity 3D Engine.

and I'd prefer if I'd see in C# code.
as I'm not good in Unity Script Or Boo.

what I want to learn is how to I store AND read:

[CODE]
int userInteger = 0;
string userName = "";
public Start(){
userName = "Whatever is the default User Name on the NewGrounds, ...";
}
public void SomeUserFunction(int Imput){
integer = Imput;
}
[/CODE]

so first time the he logs on the int will be default 0.
but the second time he logs on the default will be whatever the User has had it last time.

I know how to do this ON PC as I can store data on HDD, ...

thanks in advance