extension-fbinstant

Facebook Instant Games extension for the Defold game engine

MIT License

Stars
38

Bot releases are visible (Hide)

extension-fbinstant - Updated to support Defold 1.8.0 Latest Release

Published by AGulev 6 months ago

CHANGE: This version works on Defold 1.8.0 and above

extension-fbinstant - FBInstant 7.0.3

Published by britzl over 3 years ago

NEW: Added ability to mock entry point data while testing locally

extension-fbinstant - FBInstant 7.0.2

Published by britzl over 3 years ago

FIX: Changed the way string allocation works in updated version of emscripten (from Defold 1.2.178)

extension-fbinstant - FBInstant 7.0.1

Published by britzl over 3 years ago

FIX: Issue with fbinstant.get_players()

extension-fbinstant - FBInstant 7.0.0

Published by britzl almost 4 years ago

BREAKING CHANGE: Updated to support latest version of Emscripten, released with Defold 1.2.178

extension-fbinstant - FBInstant 6.1.3

Published by britzl almost 4 years ago

FIX: Change from Pointer_stringify() to UTF8ToString() to comply with Emscripten changes

extension-fbinstant - FBInstant 6.1.2

Published by britzl almost 5 years ago

FIX: The ad id is now nil when the extension fail to get an interstitial or rewarded ad

extension-fbinstant - FBInstant 6.1.1

Published by britzl almost 5 years ago

FIX: Handle if fbinstant.log_event() has nil value for value_to_sum etc

extension-fbinstant - FBInstant 6.1.0

Published by britzl almost 5 years ago

CHANGE: Removed deprecated activity store API

extension-fbinstant - FBInstant 6.0.0

Published by britzl about 5 years ago

This release fixes issues with the HTML5 template in combination with new functionality released in Defold 1.2.162.

BREAKING CHANGE:

  • Remove fb_instant tag from game.project. It is not used anymore. we don’t use it anymore;
  • Reset .html shell to default in game.project. We now merge everything that we need for the FBInstant native extension using the Manifest Merging Tool (if you added something custom, just copy-paste default template and add your custom things);
  • Read the manual about the HTML5 section of the game.project settings
  • Read the HTML5 manual
extension-fbinstant - FBInstant 5.4.1

Published by britzl about 5 years ago

FIX: Updated HTM5 template

extension-fbinstant - FBInstant 5.4.0

Published by britzl about 5 years ago

NEW: fbinstant.check_can_player_match_async(callback)
NEW: fbinstant.match_player(match_tag, switch_context_when_matched, offline_match, callback)

extension-fbinstant - FBInstant 5.3.0

Published by britzl over 5 years ago

CHANGE: Updated to API 6.3
NEW: fbinstant.post_session_score()

extension-fbinstant - FBInstant 5.2.0

Published by britzl over 5 years ago

FIX: Added additional meta-tags to the index.html template to work better on certain mobile browsers

extension-fbinstant - FBInstant 5.1.1

Published by AGulev over 5 years ago

NEW: Added stretch option for the game canvas

extension-fbinstant - FBInstant 5.1.0

Published by britzl over 5 years ago

NEW: fbinstant.get_leaderboard_connected_player_entries(name, count, offset, callback) . Thanks @laltin!

extension-fbinstant - FBInstant 5.0.1

Published by britzl over 5 years ago

FIX: Updated index.html to use new template properties

extension-fbinstant - FBInstant 5.0.0

Published by britzl over 5 years ago

BREAKING CHANGE: The API for interacting with interstitial ads and rewarded videos has changed and is now more in line with the Facebook Instant Games Javascript API provided by Facebook. Showing an ad is now a three step process:

  1. Creating an ad instance for a placement (using a placement id)
    1.a. fbinstant.get_interstitial_ad(placement_id, callback)
    1.b. fbinstant.get_rewarded_video(placement_id, callback)
  2. Preloading the ad instance (using the ad id returned from Step 1)
    2.a. fbinstant.load_interstitial_ad(ad_id, callback)
    2.b fbinstant.load_rewarded_video(ad_id, callback)
  3. Showing the ad instance (using the ad id returned from Step 1)
    3.a. fbinstant.show_interstitial_ad(ad_id, callback)
    3.b. fbinstant.show_rewarded_video(ad_id, callback)
extension-fbinstant - FBInstant 4.3.0

Published by britzl over 5 years ago

NEW: fbinstant.switch_game(app_id, data, callback)

extension-fbinstant - FBInstant 4.2.0

Published by britzl over 5 years ago

NEW: fbinstant.get_locale()