Game
Unity API
10 years ago

[Archive] Update 1.2.10 & 1.3.0


Since I started working on the version 2 of the API, I didn’t think I would release an update for the version 1 but I really didn’t think I would release two updates!

Update 1.2.10

  • Update GetFromWeb to work with WebGL builds.

  • Fix a bug in GetFromWeb where tokens with colons in them wouldn’t be returned properly.

Update 1.3.0

  • Fix that damn “Some objects were not cleaned up when closing the scene” error! Really!

Why not group them in a single update? Which version to use? MUST READ.

Version 1.3.0 fix that really annoying “Some objects were not cleaned up when closing the scene” bug but will break you code and you’ll have to update it. This is a really small change but if you don’t want to bother right now and only want to be able to publish your game as a WebGL build, update to 1.2.10. Otherwise, update to 1.3.0 and follow the instructions below.

Upgrade guide from 1.2.x to 1.3.x

Whenever you unsubscribe to a callback, you have to check that the instance of the GJAPI is not null.

Before:

void OnDisable () {

  • GJAPI.Users.VerifyCallback -= OnVerifyUser;

  • GJAPI.Trophies.GetOneCallback -= OnGetOneTrophy;
    }

After:

void OnDisable () {
if (GJAPI.Instance != null)
{
GJAPI.Users.VerifyCallback -= OnVerifyUser;

  • GJAPI.Trophies.GetOneCallback -= OnGetOneTrophy;
    }
    }*

  • *



0 comments

Loading...

Next up

art comission.

Successful landing

#screenshotsaturday

Heya! I wanted to show some gameplay progress i made so far. I hope you like it ^^

Spaaaace~

These are background sprites I've created for a game I'm working on at school ^w^ Click on the post to see how the sprites connect. You won't regret it! (personally, I think it's pretty heheh)

Drawn in Piskel using my mouse. Whaddya think?

We're glad to announce that Baby Dino Adventures 🦖 is now available in Early Access here on GameJolt! Link: https://gamejolt.com/games/babydinoadventures/508121 Walk, run, and jump as a baby t-rex in this cute platformer Free demo available #IndieGame | #GameDev | #PixelArt

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

My D&D art for my family so far (WIP if you couldn't tell)

It's now possible to destroy some of the obstacles and gain access to new locations or create shortcuts. #gamedev #indiegame #rpg

Hey you, rookie! Yes, I am talking to you!! Come over here? Relax! Just stick to me and everything will be fine. By the way, my name is James Varhuher, but you can call me Big J. I will bring you up to speed.