{"id":13662047,"url":"https://github.com/cemuka/command-console","last_synced_at":"2025-08-16T08:14:47.893Z","repository":{"id":118943209,"uuid":"347707150","full_name":"cemuka/command-console","owner":"cemuka","description":"Easy to setup and use command console for unity runtime. ","archived":false,"fork":false,"pushed_at":"2022-02-18T21:55:20.000Z","size":2075,"stargazers_count":11,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-04T02:44:09.179Z","etag":null,"topics":["command-line","console-tool","tool","unity","unity-asset","unity-scripts","unity2d","unity3d","unity3d-plugin"],"latest_commit_sha":null,"homepage":"","language":"C#","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/cemuka.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}},"created_at":"2021-03-14T17:36:23.000Z","updated_at":"2024-11-01T17:15:31.000Z","dependencies_parsed_at":null,"dependency_job_id":"6accd4ad-708a-4e33-94ef-41cae46ed0e8","html_url":"https://github.com/cemuka/command-console","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/cemuka/command-console","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cemuka%2Fcommand-console","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cemuka%2Fcommand-console/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cemuka%2Fcommand-console/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cemuka%2Fcommand-console/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cemuka","download_url":"https://codeload.github.com/cemuka/command-console/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cemuka%2Fcommand-console/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270684411,"owners_count":24627793,"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","status":"online","status_checked_at":"2025-08-16T02:00:11.002Z","response_time":91,"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":["command-line","console-tool","tool","unity","unity-asset","unity-scripts","unity2d","unity3d","unity3d-plugin"],"created_at":"2024-08-02T05:01:47.784Z","updated_at":"2025-08-16T08:14:47.853Z","avatar_url":"https://github.com/cemuka.png","language":"C#","readme":"![command-console](./images/console.gif)\n### Command Console\nInspired by Quantum Console from unity asset store. It looks pretty awesome.\n\n\n#### Usage\nSimply log any string\n\n```csharp\nConsole.Log(\"This is the way\");\nConsole.Log(\"Also with text support for colors\", \"green\");\n```\n\nJust call `Initialize` to setup. It will create the command view from `Resources`.\nAdd your commands with `Register`.\n\n```csharp\nprivate void Start()\n{\n    Console.Initialize();\n    Console.Register(\"greet\", Greet);\n}\n\nprivate void Greet(string[] args)\n{\n    if (args != null \u0026\u0026 args.Length \u003e= 1)\n    {\n        var log = \"Greetings, \" + string.Join(\" \", args);\n        Console.Log(log, \"green\");\n    }\n    else\n    {\n        Console.Log(\"Err, missing argument!\");\n    }\n}\n```\n\nEasily show and hide.\n\n```csharp\nprivate void Update()\n{\n    if (Input.GetKeyDown(KeyCode.DoubleQuote))\n    {\n        if(Console.IsActive) \n        {\n            Console.Hide();\n        }\n        else\n        {\n            Console.Show();\n        }\n    }\n}\n```\n\n### LICENSE\nMIT\nCem Ugur Karacam","funding_links":[],"categories":["C\\#"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcemuka%2Fcommand-console","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcemuka%2Fcommand-console","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcemuka%2Fcommand-console/lists"}