{"id":20170037,"url":"https://github.com/diklor/advanced_radial_menu","last_synced_at":"2025-06-13T02:02:53.778Z","repository":{"id":198064261,"uuid":"700004939","full_name":"diklor/advanced_radial_menu","owner":"diklor","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-27T17:38:30.000Z","size":683,"stargazers_count":44,"open_issues_count":2,"forks_count":8,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-10T02:54:26.280Z","etag":null,"topics":["advanced","circle","godot","godot-engine","godot-plugin","godot4","godotengine","node","plugin","popup","procedural","radial"],"latest_commit_sha":null,"homepage":"","language":"GDScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/diklor.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-10-03T18:59:49.000Z","updated_at":"2025-04-08T12:41:55.000Z","dependencies_parsed_at":null,"dependency_job_id":"c2073d80-b238-4152-b7a0-e7161b6e1803","html_url":"https://github.com/diklor/advanced_radial_menu","commit_stats":null,"previous_names":["extremesphere/advanced_radial_menu","diklor/advanced_radial_menu"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/diklor/advanced_radial_menu","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diklor%2Fadvanced_radial_menu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diklor%2Fadvanced_radial_menu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diklor%2Fadvanced_radial_menu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diklor%2Fadvanced_radial_menu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/diklor","download_url":"https://codeload.github.com/diklor/advanced_radial_menu/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diklor%2Fadvanced_radial_menu/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259565528,"owners_count":22877344,"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":["advanced","circle","godot","godot-engine","godot-plugin","godot4","godotengine","node","plugin","popup","procedural","radial"],"created_at":"2024-11-14T01:16:09.143Z","updated_at":"2025-06-13T02:02:53.731Z","avatar_url":"https://github.com/diklor.png","language":"GDScript","funding_links":["https://www.buymeacoffee.com/verdicted"],"categories":[],"sub_categories":[],"readme":"# advanced_radial_menu\n\nAdvanced radial menu node\n\nUsage\nhttps://youtu.be/PgHafAvnUGw\n\n![icon](/preview.png)\n\n## 1.3 Update!\n* Temporary selections\n* Signal docs\n* .gdignore finally\n\n## 1.2 Update\n* Controller support and mouse detection fixes\n\n\n# Temporarily selection\nSet\n```gdscript\nradial_menu.set_temporary_selection(1)\n# (1 is second element, 0 is first)\n```\nRemove\n```gdscript\nradial_menu.set_temporary_selection(-2) # -2 is nothing\n```\n# Signals\nConnect slot selection\n```gdscript\n# Example how to make selected slot green\nvar _prev_slot: Control = null\n\nfunc _ready() -\u003e void:\n  radial_menu.slot_selected.connect(func(slot: Control, index: int) -\u003e void:\n    if _prev_slot != null:\n      _prev_slot.modulate = Color.WHITE\n    slot.modulate = Color.GREEN\n    _prev_slot = slot\n  )\n```\nSelection changed (hover):\n```gdscript\nradial_menu.selection_changed.connect(func(new_selection: int) -\u003e void:\n\tvar slot := radial_menu.get_selected_child()\n)\n# You can animate `slot.scale` because radial_menu is not a container\n```\nSelection canceled:\n```gdscript\nradial_menu.selection_canceled.connect(func() -\u003e void: ...\n```\n\n---\n\n\n# What the hell with indexes?\n* -2 is nothing\n* -1 is center slot (only if you have `first_in_center` variable enabled)\n* 0 is first slot\n\nIt's just ordinary indexes, but -1 became -2\n\n_If you work with a team, you should probably comment these incomprehensible -2 indexes in the code..._\n\n\n\n\nWhat is **deadzone**?\n# What is **deadzone**?\n\n![deadzone.jpg](https://i.postimg.cc/QCgLZL9k/fcc4ae0b.jpg)\n\nThe threshold of detection. For example, in the picture of the dedzone is 0.2, m\nThe values ​​below or equals 0.2 will be ignored\n\n\n| [Download `example.tscn` (downgit)](https://downgit.github.io/#/home?url=https://github.com/diklor/advanced_radial_menu/blob/main/example.tscn) |\n| - |\n\n## Support\n\n\u003ca href=\"https://www.buymeacoffee.com/verdicted\" target=\"_blank\"\u003e\u003cimg src=\"https://cdn.buymeacoffee.com/buttons/default-orange.png\" alt=\"Buy Me A Coffee\" height=\"41\" width=\"174\"\u003e\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiklor%2Fadvanced_radial_menu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdiklor%2Fadvanced_radial_menu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiklor%2Fadvanced_radial_menu/lists"}