GameBro logo

๐ŸŽฎ GameBro Studio

The pixel-perfect code-first game editor made for devs who get it.

Download Now

๐Ÿ”ฅ Features

๐Ÿ“ What It Exports

# -*- coding: utf-8 -*-
from gamebro import Sprite, SpriteGroup

# Project: s
# Created by GameBro Studio
EvilBoss: Sprite = Sprite(customdata={'hp': 3000, 'attack': 'laser'}, name="EvilBoss")

๐Ÿงพ JSON Sprites

Make sprites like mods using a JSON file:

{
  "name": "EvilBoss",
  "template": "boss",
  "data": {
    "hp": 3000,
    "attack": "laser"
  },
  "display_color": [255, 0, 0]
}

Templates override values in the file (like setting the name color).

โฌ‡๏ธ Download

Visit GitHub Download ZIP