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 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>
{
}
} }

View File

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

View File

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