KSP-Conformal-Decals/Assets/ConformalDecals/ColorPickerController.cs

17 lines
467 B
C#
Raw Permalink Normal View History

2020-07-21 07:52:23 +00:00
using System;
2020-07-23 05:37:16 +00:00
using System.Collections.Generic;
2020-07-21 07:52:23 +00:00
using UnityEngine;
using UnityEngine.Events;
using UnityEngine.UI;
namespace ConformalDecals.UI {
public class ColorPickerController : MonoBehaviour {
[SerializeField] private Color _value;
[SerializeField] private Image _previewImage;
[SerializeField] private Selectable _hexTextBox;
2020-08-22 06:45:10 +00:00
public void Close() { }
2020-07-21 07:52:23 +00:00
public void OnHexColorUpdate(string text) { }
}
}