Game
Unity API
7 years ago

GameJoltDotNet


Hello there!
I just wanted to let you know, that I’ve published a first beta version of another GameJolt API client, which can be used without Unity.
It is called GameJoltDotNet and it is based on .NET Standard 1.3 and therefore you can basically use it on any .NET platform.
Of course I will continue working on both APIs, so don’t worry :D

The new library is heavily based on the wonderful async/await mechanism to implement a simple and yet powerful asynchronous workflow.

Example

First of all you have to create a new api instance:

		
			var api = new GameJoltApi(gameId, privateKey);
		
	

Afterwards you can directly use the different GameJolt features.

		
			// by using async/await:
var response = await api.Scores.FetchAsync();
if(response.Success) {
    // response.Data contains the list of scores
}

// or by using the callback mechanism:
api.Scores.Fetch(callback: response => {
    if(response.Success) {
        // response.Data contains the list of scores
    }
});
		
	

So feel free to try it out :)



0 comments

Loading...

Next up

Fan art for Foolish I'm feeling kinda better so I drew this

Here's a peaceful little forest scene for this #screenshotsaturday, from the beginning of the game.

Shadow The Hedgehog X pixel art

Today I tackled drawing different variations of facial expressions for one of the main characters in Eden. What do you think of it? :) Eden: https://gamejolt.com/games/Eden/592698

Explosive domino effect

OK, this starts to be too tricky puzzle already :D

#platformer #indiegame #puzzle

Development of my game Juno. This is the rune equipment system.

Usually update over on twitter: https://twitter.com/synrec_kaisyl

Our Japanese themed game released yesterday on Gamejolt + Itch io if anyone would like to check it out! :) You play as a spirit of a japanese wolf.

💛 Passion project of two friends and IT geeks. 🕹️ We love trains and programming. We wanted to create something unique.

🚂 Rail Route is a management/tycoon/puzzle game based on railroad dispatching. #MadeInUnity [a few Steam demo keys in comments]

We have already completed an hour of the game and now we are putting together the first build in order to see the bugs, make adjustments to some mechanics, to the placement of cameras.