Skip to content

Releases: uralys/fox

Google Play Billing API v7

14 Jul 14:06
Compare
Choose a tag to compare

1.10.0

15 Jun 08:08
Compare
Choose a tag to compare

breaking change: use title instead of applicationName in your fox.config.json

introduced title/subtitle notion to have different game names depending on bundles.

MultiTouch Area

11 Jun 10:15
Compare
Choose a tag to compare

Introducing multi-touch area, with boolean parameter fullscreen

db40df8

1.9.0

28 May 20:55
Compare
Choose a tag to compare
  • breaking change on HTTP: url is now endpoint to allow full url (e.g. discord webhooks)
  • added content type in header
  • enable body as Dictionary](c85da9c)

example:

HTTP.Post(self, {
  url = DISCORD_WEBHOOK,
  body = {content="plop"}
})

Popups

17 Dec 10:10
Compare
Choose a tag to compare

You can create Popups by creating a ReferenceRect extending components/popup:

# shop.gd
extends 'res://fox/components/popup.gd'

func _ready():
  super._ready()

then add a function somewhere to instantiate the popup, for example in your Router

var ShopPopup = preload('res://shop.tscn')

func openShop():
  var shop = ShopPopup.instantiate()
  $/root/app/popups.add_child(shop)

v1.5.1

14 Dec 22:01
Compare
Choose a tag to compare

improved Router API

func useScreenFader(duration:float = 0.75)
func showLoader()
func hideLoader()

Gesture

22 Nov 11:01
Compare
Choose a tag to compare

Handling drag and drop with a Gesture singleton
https://github.com/uralys/fox/blob/master/fox/libs/gesture.gd

Interactive Area2D

Godot 4

09 Oct 13:22
Compare
Choose a tag to compare

Migrated to be used by Godot 4 projects

v1.3.13

20 May 18:03
Compare
Choose a tag to compare

Last version working for Godot 3.5

  • used by Lockey Land
  • used Battle Squares