{"id":50747308,"url":"https://github.com/cgsdev0/pairing-jam-game","last_synced_at":"2026-06-10T22:30:21.945Z","repository":{"id":360578273,"uuid":"1250396704","full_name":"cgsdev0/pairing-jam-game","owner":"cgsdev0","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-27T01:39:41.000Z","size":70,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-27T03:16:27.123Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"GDScript","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/cgsdev0.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-26T15:34:00.000Z","updated_at":"2026-05-27T01:39:44.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/cgsdev0/pairing-jam-game","commit_stats":null,"previous_names":["cgsdev0/pairing-jam-game"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/cgsdev0/pairing-jam-game","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cgsdev0%2Fpairing-jam-game","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cgsdev0%2Fpairing-jam-game/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cgsdev0%2Fpairing-jam-game/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cgsdev0%2Fpairing-jam-game/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cgsdev0","download_url":"https://codeload.github.com/cgsdev0/pairing-jam-game/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cgsdev0%2Fpairing-jam-game/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34174148,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-10T02:00:07.152Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2026-06-10T22:30:21.443Z","updated_at":"2026-06-10T22:30:21.939Z","avatar_url":"https://github.com/cgsdev0.png","language":"GDScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# game_1\n\nwe don\u0026#39;t know yet\n\n## About RCade\n\nThis game is built for [RCade](https://rcade.recurse.com), a custom arcade cabinet at The Recurse Center. Learn more about the project at [github.com/fcjr/RCade](https://github.com/fcjr/RCade).\n\n## Getting Started\n\nDownload the Godot game engine here: https://godotengine.org/download/\n\nMake sure you enable the controls plugin:\n\n```\nRCadeInput.enable_classic_controls()\n```\n\n## Arcade Controls\n\nYou can read the classic controls using the pre-configured actions in the InputMap:\n\n```\n# Player 1\nInput.is_action_pressed(\"p1_up\")\nInput.is_action_pressed(\"p1_down\")\nInput.is_action_pressed(\"p1_left\")\nInput.is_action_pressed(\"p1_right\")\nInput.is_action_pressed(\"p1_a\")\nInput.is_action_pressed(\"p1_b\")\n\n# Player 2\nInput.is_action_pressed(\"p2_up\")\nInput.is_action_pressed(\"p2_down\")\nInput.is_action_pressed(\"p2_left\")\nInput.is_action_pressed(\"p2_right\")\nInput.is_action_pressed(\"p2_a\")\nInput.is_action_pressed(\"p2_b\")\n```\n\n### Development Keyboard Controls\n\nWhen developing locally, keyboard inputs are mapped to arcade controls:\n\n**Classic Controls (`@rcade/plugin-input-classic`)**\n\n| Player   | Action           | Key |\n|----------|------------------|-----|\n| Player 1 | UP               | W   |\n| Player 1 | DOWN             | S   |\n| Player 1 | LEFT             | A   |\n| Player 1 | RIGHT            | D   |\n| Player 1 | A Button         | F   |\n| Player 1 | B Button         | G   |\n| Player 2 | UP               | I   |\n| Player 2 | DOWN             | K   |\n| Player 2 | LEFT             | J   |\n| Player 2 | RIGHT            | L   |\n| Player 2 | A Button         | ;   |\n| Player 2 | B Button         | '   |\n| System   | One Player Start | 1   |\n| System   | Two Player Start | 2   |\n\n\n### Spinner Support\n\nTo add spinner support, add `@rcade/plugin-input-spinners` to your manifest dependencies.\n\nMake sure you enable the spinners plugin:\n\n```\nRCadeInput.enable_spinners()\n```\n\nThen you can read the spinners like this:\n\n```\nRCadeInput.get_spinner_speed(1)\nRCadeInput.get_spinner_speed(2)\n\nRCadeInput.get_spinner_angle(1) # radians\nRCadeInput.get_spinner_angle(2)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcgsdev0%2Fpairing-jam-game","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcgsdev0%2Fpairing-jam-game","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcgsdev0%2Fpairing-jam-game/lists"}