1
0
mirror of https://github.com/soarqin/DSP_Mods.git synced 2025-12-09 08:13:35 +08:00

ui button fixes

This commit is contained in:
2025-09-21 01:36:54 +08:00
parent 31b1d90d5d
commit 5b4633e54c
2 changed files with 5 additions and 1 deletions

View File

@@ -18,6 +18,7 @@ public class MyFlatButton : MonoBehaviour
var panel = UIRoot.instance.uiGame.dysonEditor.controlPanel.hierarchy.layerPanel;
var go = Instantiate(panel.layerButtons[0].gameObject);
var btn = go.GetComponent<UIButton>();
go.GetComponent<Image>().sprite = panel.buttonDefaultSprite;
btn.gameObject.name = "my-flatbutton";
btn.highlighted = false;
var img = btn.GetComponent<Image>();