Build UI & 2D Scenes for Web Games
Visually

zStudio is a standalone visual layout and UI authoring tool for web game developers. It integrates seamlessly with Pixi.js and other 2D rendering engines. Designed for developers, technical artists, and animators.

✔ Used commercially in multiple real-money casino games

Download zStudio


let scene: ZScene = new ZScene("myScene");
scene.load(loadPath, () => {
    ZSceneStack.push(scene);
    scene.loadStage(this.stage);

    let sceneStage: ZContainer = scene.sceneStage;
    let myBTN: ZButton = sceneStage.get("myBTN") as ZButton;

    myBTN.setLabel("Click Me");
    myBTN.setCallback(() => {
        console.log("Button clicked!");
    });
});