■uGUIのimageの色を変更する場合
“this.GetComponent().color = new Color(1.0f, 1.0f, 1.0f, 1.0f);”
■スプライトの色を変更する場合
this.GetComponent().color = new Color(1.0f, 1.0f, 1.0f, 1.0f);
色の指定は、new Color( R, G, B, アルファ); の順番。
数値は RGB 0-255 ではなくて、RGB 0-1.0 の値で指定。
■uGUIのimageの色を変更する場合
“this.GetComponent().color = new Color(1.0f, 1.0f, 1.0f, 1.0f);”
■スプライトの色を変更する場合
this.GetComponent().color = new Color(1.0f, 1.0f, 1.0f, 1.0f);
色の指定は、new Color( R, G, B, アルファ); の順番。
数値は RGB 0-255 ではなくて、RGB 0-1.0 の値で指定。