{"id":19494836,"url":"https://github.com/felipeizolan/pico-env","last_synced_at":"2025-04-25T21:32:12.572Z","repository":{"id":165927549,"uuid":"608112587","full_name":"FelipeIzolan/pico-env","owner":"FelipeIzolan","description":"🕹️ pico-env | environment to make pico8 games.","archived":false,"fork":false,"pushed_at":"2024-01-04T07:05:41.000Z","size":57,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-04T03:33:23.508Z","etag":null,"topics":["gamedev","lua","pico-8","pico8"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FelipeIzolan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-03-01T10:50:31.000Z","updated_at":"2023-10-18T05:00:01.000Z","dependencies_parsed_at":null,"dependency_job_id":"0e8c6718-51b2-4da1-9273-4f33329e9dcd","html_url":"https://github.com/FelipeIzolan/pico-env","commit_stats":null,"previous_names":["felipeizolan/pico-env"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FelipeIzolan%2Fpico-env","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FelipeIzolan%2Fpico-env/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FelipeIzolan%2Fpico-env/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FelipeIzolan%2Fpico-env/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FelipeIzolan","download_url":"https://codeload.github.com/FelipeIzolan/pico-env/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250900044,"owners_count":21504988,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gamedev","lua","pico-8","pico8"],"created_at":"2024-11-10T21:33:48.645Z","updated_at":"2025-04-25T21:32:12.283Z","avatar_url":"https://github.com/FelipeIzolan.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pico8-setup\n\npico8-setup is a environment to develop games to [pico8](https://www.lexaloffle.com/pico-8.php).\n\n## Getting Started 🚀\n\n```\ngit clone https://github.com/FelipeIzolan/pico8-setup.git\n```\n\n- Edit PICO8 in Makefile\n- Write your game in /src\n- ```make debug```\n\n## Makefile 📜\n\n- debug - compile and run the cartridge.\n\n- compile - compile the cartridge.\n\n- load - load the cartridge.\n\n## Modules 📦\n\nbefore compiler:\n```lua\n-- math.lua\nfunction area2d(x, y)\n    return x * y\nend\n```\n\n```lua\n-- main.lua\n\nrequire (\"lib.math\")\n\nfunction _draw()\n    print(\"area(10,2): \" .. tostr(area2d(10,2)))\nend\n```\n\nafter compiler:\n\n```lua\nfunction area2d(x, y)\n    return x * y\nend\n\nfunction _draw()\n    print(\"area(10,2): \" .. tostr(area2d(10,2)))\nend\n```\n\n## Pico8 Pattern 🐱\n\nbefore compiler:\n```lua\nfunction _draw()\n    fillp(\"C\")\n    circfill(32,32,8,9)\nend\n```\n\nafter compiler:\n```lua\nfunction _draw()\n    fillp(\"🐱\")\n    circfill(32,32,8,9)\nend\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffelipeizolan%2Fpico-env","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffelipeizolan%2Fpico-env","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffelipeizolan%2Fpico-env/lists"}