com.unity.uiextensions/Scripts/HSVPicker/HSVSliderEvent.cs

21 lines
333 B
C#
Raw Normal View History

///Credit judah4
///Sourced from - http://forum.unity3d.com/threads/color-picker.267043/
using UnityEngine;
using System.Collections;
using UnityEngine.Events;
public class HSVSliderEvent : UnityEvent<Color>
{
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
}