๐ผ๏ธ Asset Uploader
Upload images or sprites to attach them to characters, backgrounds, or tilemaps in your game. Assets will be linked to your schema or level config.
๐ค Endpoint
POST /upload/assets { "file": "base64-encoded-image", "type": "sprite" // or "tile", "background", "icon" }
๐๏ธ Storage & Access
Uploaded files will be stored securely and assigned a unique CDN URL. Youโll receive a link to use directly inside your JSON schema or level config.
๐งช Sample Response
{ "success": true, "url": "https://cdn.gameer.io/assets/user123/rock_sprite.png" }