Table of Contents

PicoPicoScript Home

About PicoPicoScript

PicoPicoScript (picosc) is an indie game engine fueled by your dreams!

PicoPicoScript Downloads

Live Web Demo

Script Example

func setup() {
    var config = {
        title: "My Sample Game",
        width: 640,
        height: 480
    };
    return config;
}
 
func start() {
    myTexture = Engine.loadTexture({file: "apple.png"});
}
 
func frame() {
    Engine.draw({
        texture: myTexture
        x: Engine.mousePosX,
        y: Engine.mousePosY,
    });
}