{"id":13660550,"url":"https://github.com/judah4/HSV-Color-Picker-Unity","last_synced_at":"2025-04-24T19:31:12.359Z","repository":{"id":20564956,"uuid":"23845144","full_name":"judah4/HSV-Color-Picker-Unity","owner":"judah4","description":"HSV color picker for Unity UI","archived":false,"fork":false,"pushed_at":"2025-04-23T04:24:37.000Z","size":2227,"stargazers_count":650,"open_issues_count":5,"forks_count":108,"subscribers_count":31,"default_branch":"master","last_synced_at":"2025-04-23T05:20:37.533Z","etag":null,"topics":["color-picker","hacktoberfest","hacktoberfest2020","ui","unity","unity-ui","unity3d"],"latest_commit_sha":null,"homepage":"","language":"ShaderLab","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/judah4.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null},"funding":{"github":"judah4","patreon":null,"open_collective":null,"ko_fi":"cookiedragon","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2014-09-09T18:19:55.000Z","updated_at":"2025-04-23T04:24:40.000Z","dependencies_parsed_at":"2023-01-11T20:53:44.952Z","dependency_job_id":"cdac645c-c2aa-4047-b4bc-5ecfcd39989d","html_url":"https://github.com/judah4/HSV-Color-Picker-Unity","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/judah4%2FHSV-Color-Picker-Unity","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/judah4%2FHSV-Color-Picker-Unity/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/judah4%2FHSV-Color-Picker-Unity/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/judah4%2FHSV-Color-Picker-Unity/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/judah4","download_url":"https://codeload.github.com/judah4/HSV-Color-Picker-Unity/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250693543,"owners_count":21472274,"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":["color-picker","hacktoberfest","hacktoberfest2020","ui","unity","unity-ui","unity3d"],"created_at":"2024-08-02T05:01:22.904Z","updated_at":"2025-04-24T19:31:10.554Z","avatar_url":"https://github.com/judah4.png","language":"ShaderLab","readme":"HSV Color Picker\n======================\n\n[![openupm](https://img.shields.io/npm/v/com.judahperez.hsvcolorpicker?label=openupm\u0026registry_uri=https://package.openupm.com)](https://openupm.com/packages/com.judahperez.hsvcolorpicker/)\n\nHSV color picker using Unity UI. [Unity Forum Thread](https://forum.unity.com/threads/color-picker.267043/)\n\n## Versions\nUnity 2020.3 LTS\n\n## Install\n\n### UPM\n\nFollow the instructions on OpenUpm\nhttps://openupm.com/packages/com.judahperez.hsvcolorpicker/\n```json\n{\n    \"scopedRegistries\": [\n        {\n            \"name\": \"package.openupm.com\",\n            \"url\": \"https://package.openupm.com\",\n            \"scopes\": []\n        }\n    ],\n    \"dependencies\": {\n        \"com.judahperez.hsvcolorpicker\": \"3.3.0\"\n    }\n}\n```\n\n### Unity Package\n\n\u003chttps://github.com/judah4/HSV-Color-Picker-Unity/releases\u003e\n\n![alt tag](https://i.imgur.com/Fn2T6Nu.png)\nShould be really easy to use. Just add the prefab to the canvas, hook up an event, and it's good to go.\n```csharp\n\nusing HSVPicker;\nusing UnityEngine;\n\npublic class SomeClass : MonoBehavior\n{\n\n\tpublic Renderer renderer;\n\tpublic ColorPicker picker;\n     \n\t// Use this for initialization\n\tvoid Start ()\n\t{\n\t\tpicker.onValueChanged.AddListener(color =\u003e\n\t\t{\n\t\t\trenderer.material.color = color;\n\t\t});\n\t\trenderer.material.color = picker.CurrentColor;\n\t}\n \n\t// Update is called once per frame\n\tvoid Update () {\n \n\t}\n\t...\n\n\n  ```\n\nif you want to assign your own color first, just do this call and it sets the slider and picker to the proper selection.\n\n```csharp\n    Color color = Color.green;\n    picker.CurrentColor = color;\n```\n\n![resizable panels](https://raw.githubusercontent.com/judah4/HSV-Color-Picker-Unity/master/Docs/MoreFeatures.PNG)\n\nCan be toggled and sized as needed in settings.\n\n# Setup Settings\n\n![settings inspector](https://raw.githubusercontent.com/judah4/HSV-Color-Picker-Unity/master/Docs/SetupSettings.PNG)\n\nOn the color picker setup section.\n\nShow Rgb: Show RGB sliders.\n\nShow Hsv: Show HSV sliders.\n\nShow Alpha: Show the alpha slider.\n\nShow Color Box: Show the larger color selection box and color column.\n\nShow Color Slider Toggle: Show the button to toggle the HSV and RGB sliders.\n\nShow Header: Options to show the top header with color preview and hex code.\n* Hide: Hide the top header.  \n* Show Color: Show only the color preview in the header.  \n* Show Color Code: Show only the color code in the header.  \n* Show All: Show the entire top header.  \n\n## Color Presets\nThe prefabs starts with 4 colors in the color presets. This can be updated in the Setup section of the picker prefab.  \nSet the Preset Colors Id for different shared list between color pickers.\n","funding_links":["https://github.com/sponsors/judah4","https://ko-fi.com/cookiedragon"],"categories":["GamePlay","ShaderLab","Color Picker"],"sub_categories":["Skill"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjudah4%2FHSV-Color-Picker-Unity","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjudah4%2FHSV-Color-Picker-Unity","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjudah4%2FHSV-Color-Picker-Unity/lists"}