2021
04-27
04-27
Unity3d 如何更改Button的背景色
我就废话不多说了,大家还是直接看代码吧~usingUnityEngine;usingSystem.Collections;publicclassButtonStyle:MonoBehaviour{publicColor_color;//在编辑环境下选择背景色,透明度不能为0publicTexture2Dtex;voidOnGUI(){GUI.Button(newRect(0,0,100,100),"tex");ColoroldColor=GUI.backgroundColor;//保存原有的背景色GUI.backgroundColor=_color;//更改背景色GUI.Button(newRect(650,20,150,120),tex...
继续阅读 >