Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser
Quick Information
API Library to interact with your Supabase backend project.
👉 3.x
Godot Engine - Supabase (4.x)
A lightweight addon which integrates Supabase APIs for Godot Engine out of the box.
- Authentication (/auth)
- Database (/database)
- Realtime (/realtime)
- Storage (/storage)
UI Library
A drag&drop UI Library is available at supabase-ui.
examples and demos
A collection of examples and live demos is available at fenix-hub/godot-engine.supabase-examples, both with source code and exported binaries.
how to use
A wiki is available here.
Even though it is still not complete, Classes and APIs references are always listed and updated.
code snippet
Multiple approaches!
Asynchronous
func _ready():
Supabase.auth.signed_in.connect(_on_signed_in)
Supabase.auth.sign_in(
"[email protected]",
"userpwd"
)
func _on_signed_in(user: SupabaseUser) -> void:
print(user)
Synchronous
func _ready():
var auth_task: AuthTask = await Supabase.auth.sign_in(
"[email protected]",
"userpwd"
)
print(auth_task.user)
API Library to interact with your Supabase backend project.
Reviews
Quick Information
API Library to interact with your Supabase backend project.