Update patch following Asset Store publish

release 2.3.0
Simon Jackson 2023-02-07 16:21:38 +00:00
parent 5114d0c050
commit d64ff2d3f0
4 changed files with 25 additions and 17 deletions

@ -1 +1 @@
Subproject commit 774bde78bf8792ad8de1c96ad7e874932fd716d7 Subproject commit 2b2dba57650838e285c3336b4a26847931462570

View File

@ -1,9 +1,11 @@
using System; using System;
using UnityEngine;
using UnityEngine.Events; using UnityEngine.Events;
namespace UnityEngine.UI.Extensions.ColorPicker
{
[Serializable] [Serializable]
public class ColorChangedEvent : UnityEvent<Color> public class ColorChangedEvent : UnityEvent<Color>
{ {
} }
}

View File

@ -1,6 +1,9 @@
using UnityEngine.Events; using UnityEngine.Events;
namespace UnityEngine.UI.Extensions.ColorPicker
{
public class HSVChangedEvent : UnityEvent<float, float, float> public class HSVChangedEvent : UnityEvent<float, float, float>
{ {
} }
}

View File

@ -1,14 +1,17 @@
using UnityEngine; namespace UnityEngine.UI.Extensions
{
public class TestCompression : MonoBehaviour { public class TestCompression : MonoBehaviour
{
// Use this for initialization // Use this for initialization
void Start () { void Start()
{
} }
// Update is called once per frame // Update is called once per frame
void Update () { void Update()
{
} }
} }
}