{"id":28238636,"url":"https://github.com/gly-engine/core-native-tic","last_synced_at":"2025-10-25T18:32:26.823Z","repository":{"id":281235856,"uuid":"940207971","full_name":"gly-engine/core-native-tic","owner":"gly-engine","description":"create your own game-engine with just lua for tic80.","archived":false,"fork":false,"pushed_at":"2025-04-21T16:36:38.000Z","size":15,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-30T00:40:32.623Z","etag":null,"topics":["gameengine","tic-80","tic80"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gly-engine.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"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,"zenodo":null},"funding":{"github":"rodrigodornelles"}},"created_at":"2025-02-27T19:38:19.000Z","updated_at":"2025-04-22T13:54:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"4744ac1c-7148-471c-ac84-906e73f6161d","html_url":"https://github.com/gly-engine/core-native-tic","commit_stats":null,"previous_names":["gamelly/core-native-tic","gly-engine/core-native-tic"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gly-engine%2Fcore-native-tic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gly-engine%2Fcore-native-tic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gly-engine%2Fcore-native-tic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gly-engine%2Fcore-native-tic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gly-engine","download_url":"https://codeload.github.com/gly-engine/core-native-tic/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gly-engine%2Fcore-native-tic/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259123922,"owners_count":22808876,"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":["gameengine","tic-80","tic80"],"created_at":"2025-05-19T01:13:14.305Z","updated_at":"2025-10-25T18:32:21.790Z","avatar_url":"https://github.com/gly-engine.png","language":"Lua","readme":"# core-native-tic\ncreate your own game-engine with just lua for tic80.\n\n## How to Use\n\n### Download CLI tool\n\n```\nwget -O tic_cli.lua https://cdn.jsdelivr.net/gh/gamelly/core-native-tic/tools/build.lua\n```\n\n### Create/Download Engine\n\nYou can also create one following the specification.\n\n * **love** \u003chttps://cdn.jsdelivr.net/npm/@gamely/love-engine\u003e\u003cbr/\u003ereimplementation by gamely `~10KB` (WIP)\n * **gly engine** \u003chttps://cdn.jsdelivr.net/npm/@gamely/gly-engine\u003e\u003cbr/\u003efullset of gly engine `~60KB`\n * **gly engine lite** \u003chttps://cdn.jsdelivr.net/npm/@gamely/gly-engine-lite\u003e\u003cbr/\u003espeed version gly engine `~40KB`\n * **gly engine micro** \u003chttps://cdn.jsdelivr.net/npm/@gamely/gly-engine-micro\u003e\u003cbr/\u003esmallest version gly engine `~20KB`\n\n```\nwget -O engine.lua https://cdn.jsdelivr.net/npm/@gamely/gly-engine@0.0.20\n```\n\n### Write a simple game\n\n```lua\nlocal function init(std, game)\n    game.player = {\n        x = 60,\n        y = 60,\n        size = 30\n    }\nend\n\nlocal function loop(std, game)\n    game.player.x = game.player.x + std.key.axis.x\n    game.player.y = game.player.y + std.key.axis.y\nend\n\nlocal function draw(std, game)\n    std.draw.clear(std.color.lightgray)\n    std.draw.color(std.color.skyblue)\n    std.draw.rect(0, game.player.x, game.player.y, game.player.size, game.player.size)\nend\n\nreturn {\n    meta = {\n        title = 'TIC80 example',\n        author = 'RodrigoDornelles',\n        version = '1.0.0',\n        description = 'an game written in gly engine for tic80'\n    },\n    callbacks = {\n        init = init,\n        loop = loop,\n        draw = draw\n    }\n}\n```\n\n### Build the cartbridge\n\n```\nlua tic_cli.lua engine.lua game.lua pong.tic\n```\n","funding_links":["https://github.com/sponsors/rodrigodornelles"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgly-engine%2Fcore-native-tic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgly-engine%2Fcore-native-tic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgly-engine%2Fcore-native-tic/lists"}