Select a game object from the sidebar to start drawing.
Upload .wav or .mp3 files to use in your game with audio.play("name")
Import a previously exported game (.html file) directly from your computer to restore its code and sprites.
Connect your game to a REST API or Supabase backend.
Use these functions inside your game code to call backend services.
network.init('SUPABASE_URL', 'SUPABASE_KEY')
Start a Supabase presence channel and multiplayer sync.
network.connect('https://api.example.com', 'TOKEN')
Register a REST backend base URL and optional auth token.
network.get('/scores')
Fetch JSON from a backend endpoint.
network.post('/score', {'value': 10})
Send JSON payload to your backend.