Mp3读取,Effect Remove

Signed-off-by: TRAfoer <lhf190@outlook.com>
This commit is contained in:
2025-07-12 18:27:10 +08:00
parent 2ccac78620
commit 47ec9ddb21
164 changed files with 308674 additions and 50659 deletions

View File

@@ -30,6 +30,8 @@ public partial class HsvDrawer
public bool isEmission = false;
public GameObject emissionObj;
public InputField emissionInput;
public DynamicUIBaseColorPicker baseColorPicker;
void Start()
{
_rectTransform = _rawImage.GetComponent<RectTransform>(); // 初始化
@@ -203,6 +205,11 @@ public partial class HsvDrawer
{
previewImage.color = currentColor;
}
if (baseColorPicker != null)
{
// 同步到BaseColorPicker
baseColorPicker.SliderChangeWithoutNofication(currentColor);
}
ApplyParameters();
}