parent
5114d0c050
commit
d64ff2d3f0
|
@ -1 +1 @@
|
||||||
Subproject commit 774bde78bf8792ad8de1c96ad7e874932fd716d7
|
Subproject commit 2b2dba57650838e285c3336b4a26847931462570
|
|
@ -1,9 +1,11 @@
|
||||||
using System;
|
using System;
|
||||||
using UnityEngine;
|
|
||||||
using UnityEngine.Events;
|
using UnityEngine.Events;
|
||||||
|
|
||||||
[Serializable]
|
namespace UnityEngine.UI.Extensions.ColorPicker
|
||||||
public class ColorChangedEvent : UnityEvent<Color>
|
|
||||||
{
|
{
|
||||||
|
[Serializable]
|
||||||
|
public class ColorChangedEvent : UnityEvent<Color>
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -1,6 +1,9 @@
|
||||||
using UnityEngine.Events;
|
using UnityEngine.Events;
|
||||||
|
|
||||||
public class HSVChangedEvent : UnityEvent<float, float, float>
|
namespace UnityEngine.UI.Extensions.ColorPicker
|
||||||
{
|
{
|
||||||
|
public class HSVChangedEvent : UnityEvent<float, float, float>
|
||||||
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
}
|
|
@ -1,14 +1,17 @@
|
||||||
using UnityEngine;
|
namespace UnityEngine.UI.Extensions
|
||||||
|
{
|
||||||
|
public class TestCompression : MonoBehaviour
|
||||||
|
{
|
||||||
|
// Use this for initialization
|
||||||
|
void Start()
|
||||||
|
{
|
||||||
|
|
||||||
public class TestCompression : MonoBehaviour {
|
}
|
||||||
|
|
||||||
// Use this for initialization
|
// Update is called once per frame
|
||||||
void Start () {
|
void Update()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
// Update is called once per frame
|
|
||||||
void Update () {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue