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