Releases: uralys/fox
Releases · uralys/fox
Google Play Billing API v7
1.10.0
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
Introducing multi-touch area, with boolean parameter fullscreen
1.9.0
Popups
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
improved Router API
func useScreenFader(duration:float = 0.75)
func showLoader()
func hideLoader()
Gesture
Handling drag and drop with a Gesture
singleton
https://github.com/uralys/fox/blob/master/fox/libs/gesture.gd
Interactive Area2D
Godot 4
Migrated to be used by Godot 4 projects
v1.3.13
Last version working for Godot 3.5
- used by Lockey Land
- used Battle Squares