Update patch following Asset Store publish

pull/443/head 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 UnityEngine;
using UnityEngine.Events;
namespace UnityEngine.UI.Extensions.ColorPicker
{
[Serializable]
public class ColorChangedEvent : UnityEvent<Color>
{
}
}

View File

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

View File

@ -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()
{
}
}
}