Pressed Color.
#pragma strict // Required when Using UI elements. public var button: Button; public var newColor: Color; function Start() { //Changes the button's Pressed color to the new color. var cb: ColorBlock = button.colors; cb.pressedColor = newColor; button.colors = cb; }
using UnityEngine; using System.Collections; using UnityEngine.UI; // Required when Using UI elements.
public class ExampleClass : MonoBehaviour { public Button button; public Color newColor;
void Start() { //Changes the button's Pressed color to the new color. ColorBlock cb = button.colors; cb.pressedColor = newColor; button.colors = cb; } }
Did you find this page useful? Please give it a rating: