All Projects → judah4 → Hsv Color Picker Unity

judah4 / Hsv Color Picker Unity

Licence: mit
HSV color picker for Unity UI

Projects that are alternatives of or similar to Hsv Color Picker Unity

Rcam
Real time volumetric video capture for live visuals
Stars: ✭ 128 (-63.94%)
Mutual labels:  unity, unity3d, shaderlab
Shaders
A collection of shaders written in CG/ShaderLab for Unity.
Stars: ✭ 173 (-51.27%)
Mutual labels:  unity, unity3d, shaderlab
Threedscans
Scanned statue models from the Three D Scans project, optimized for real-time rendering use.
Stars: ✭ 172 (-51.55%)
Mutual labels:  unity, unity3d, shaderlab
Smo Shaders
A collection of shaders to replicate those used in Super Mario Odyssey's Snapshot Mode.
Stars: ✭ 97 (-72.68%)
Mutual labels:  unity, unity3d, shaderlab
Unity3dcrosssectionshader
CG shader for unity3D to create a cross section through meshes
Stars: ✭ 333 (-6.2%)
Mutual labels:  unity, unity3d, shaderlab
Otto
Otto sample project for the AI Planner
Stars: ✭ 113 (-68.17%)
Mutual labels:  unity, unity3d, shaderlab
Unity Dithered Transparency Shader
Unity material and shader for applying clipped, dithered transparency
Stars: ✭ 174 (-50.99%)
Mutual labels:  unity, unity3d, shaderlab
Nnao
Neural Network Ambien Occlusion based on http://theorangeduck.com/page/neural-network-ambient-occlusion
Stars: ✭ 57 (-83.94%)
Mutual labels:  unity, unity3d, shaderlab
Unity Shaders
✨ Shader demo - More than 300 examples
Stars: ✭ 198 (-44.23%)
Mutual labels:  unity, unity3d, shaderlab
Isaura
An attempt at making a aura thingie with a isoline shader.
Stars: ✭ 187 (-47.32%)
Mutual labels:  unity, unity3d, shaderlab
Iridescence
Iridescence shader
Stars: ✭ 89 (-74.93%)
Mutual labels:  unity, unity3d, shaderlab
Libplanet
Blockchain core in C#/.NET for persistent peer-to-peer online games
Stars: ✭ 293 (-17.46%)
Mutual labels:  hacktoberfest, unity, unity3d
Temporalreprojectionexample
Temporal reprojection example for Unity
Stars: ✭ 82 (-76.9%)
Mutual labels:  unity, unity3d, shaderlab
Lwrpshaders
A collection of high customizable unlit shaders for Lightweight Render Pipeline
Stars: ✭ 125 (-64.79%)
Mutual labels:  unity, unity3d, shaderlab
3dxrayshader unity
Surface shader. Clips a Model with given plane , applies fresnel on clipped part and highlights the cross section.
Stars: ✭ 73 (-79.44%)
Mutual labels:  unity, unity3d, shaderlab
Nvjob Water Shader Simple And Fast
#NVJOB Simple Water Shaders. Free Unity Asset.
Stars: ✭ 172 (-51.55%)
Mutual labels:  unity, unity3d, shaderlab
Mesh maker vr
Mesh Maker VR
Stars: ✭ 47 (-86.76%)
Mutual labels:  unity, unity3d, color-picker
X Postprocessing Library
Unity Post Processing Stack Library | Unity引擎的高品质后处理库
Stars: ✭ 1,079 (+203.94%)
Mutual labels:  unity, unity3d, shaderlab
Videolabtest
OP-Z videolab examples
Stars: ✭ 186 (-47.61%)
Mutual labels:  unity, unity3d, shaderlab
Alloy
Alloy physical shader framework for Unity.
Stars: ✭ 244 (-31.27%)
Mutual labels:  unity, unity3d, shaderlab

HSV Color Picker

ko-fi

HSV color picker using Unity UI. Unity Forum Thread

Versions

Unity 2019.4 LTS

Install

UPM

{
  "dependencies": {
    "judah4.hsvcolorpickerunity": "https://github.com/judah4/HSV-Color-Picker-Unity.git#upm",
    ...
  }
}

Unity Package

https://github.com/judah4/HSV-Color-Picker-Unity/releases

alt tag Should be really easy to use. Just add the prefab to the canvas, hook up an event, and it's good to go.

    public Renderer renderer;
	public ColorPicker picker;
     
	// Use this for initialization
	void Start ()
	{
		picker.onValueChanged.AddListener(color =>
		{
			renderer.material.color = color;
		});
		renderer.material.color = picker.CurrentColor;
	}
 
	// Update is called once per frame
	void Update () {
 
	}

if you want to assign your own color first, just do this call and it sets the slider and picker to the proper selection.

    Color color = Color.green;
    picker.CurrentColor = color;

resizable panels

Can be toggled and sized as needed in settings.

Setup Settings

settings inspector

On the color picker setup section.

Show Rgb: Show RGB sliders.

Show Hsv: Show HSV sliders.

Show Alpha: Show the alpha slider.

Show Color Box: Show the larger color selection box and color column.

Show Color Slider Toggle: Show the button to toggle the HSV and RGB sliders.

Show Header: Options to show the top header with color preview and hex code.

  • Hide: Hide the top header.
  • Show Color: Show only the color preview in the header.
  • Show Color Code: Show only the color code in the header.
  • Show All: Show the entire top header.

Color Presets

The prefabs starts with 4 colors in the color presets. This can be updated in the Setup section of the picker prefab.
Set the Preset Colors Id for different shared list between color pickers.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].